mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 13:52:30 +00:00
22 lines
522 B
C
22 lines
522 B
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReiserFS File System Management
|
|
* FILE: dll/win32/ureiserfs/ureiserfs.c
|
|
* PURPOSE: ureiserfs 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;
|
|
}
|