2006-09-07 17:44:08 +00:00
|
|
|
|
/*
|
|
|
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
|
|
|
* PROJECT: FAT File System Management
|
2017-05-24 23:32:46 +00:00
|
|
|
|
* FILE: dll/win32/ufat/ufat.c
|
|
|
|
|
* PURPOSE: ufat DLL initialisation
|
2006-09-07 17:44:08 +00:00
|
|
|
|
* PROGRAMMERS: Herv<EFBFBD> Poussineau (hpoussin@reactos.org)
|
|
|
|
|
*/
|
|
|
|
|
|
2013-01-24 23:00:42 +00:00
|
|
|
|
#include <windef.h>
|
2006-09-07 17:44:08 +00:00
|
|
|
|
|
|
|
|
|
INT WINAPI
|
|
|
|
|
DllMain(
|
2017-05-24 23:32:46 +00:00
|
|
|
|
IN HINSTANCE hinstDLL,
|
|
|
|
|
IN DWORD dwReason,
|
|
|
|
|
IN LPVOID lpvReserved)
|
2006-09-07 17:44:08 +00:00
|
|
|
|
{
|
2017-05-24 23:32:46 +00:00
|
|
|
|
UNREFERENCED_PARAMETER(hinstDLL);
|
|
|
|
|
UNREFERENCED_PARAMETER(dwReason);
|
|
|
|
|
UNREFERENCED_PARAMETER(lpvReserved);
|
2006-09-07 17:44:08 +00:00
|
|
|
|
|
2017-05-24 23:32:46 +00:00
|
|
|
|
return TRUE;
|
2006-09-07 17:44:08 +00:00
|
|
|
|
}
|