mirror of
https://github.com/reactos/reactos.git
synced 2025-08-13 04:25:39 +00:00
24 lines
492 B
C
24 lines
492 B
C
![]() |
/*
|
||
|
* COPYRIGHT: See COPYING in the top level directory
|
||
|
* PROJECT: BTRFS File System Management
|
||
|
* FILE: dll/win32/ubtrfs/ubtrfs.c
|
||
|
* PURPOSE: ubtrfs DLL initialisation
|
||
|
*
|
||
|
* PROGRAMMERS: Pierre Schweitzer
|
||
|
*/
|
||
|
|
||
|
#include <windef.h>
|
||
|
|
||
|
INT WINAPI
|
||
|
DllMain(
|
||
|
IN HINSTANCE hinstDLL,
|
||
|
IN DWORD dwReason,
|
||
|
IN LPVOID lpvReserved)
|
||
|
{
|
||
|
UNREFERENCED_PARAMETER(hinstDLL);
|
||
|
UNREFERENCED_PARAMETER(dwReason);
|
||
|
UNREFERENCED_PARAMETER(lpvReserved);
|
||
|
|
||
|
return TRUE;
|
||
|
}
|