mirror of
https://github.com/reactos/reactos.git
synced 2024-11-19 05:22:59 +00:00
23 lines
528 B
C
23 lines
528 B
C
|
/*
|
|||
|
* COPYRIGHT: See COPYING in the top level directory
|
|||
|
* PROJECT: FATX File System Management
|
|||
|
* FILE: dll/win32/ufatx/ufatx.c
|
|||
|
* PURPOSE: ufatx DLL initialisation
|
|||
|
* PROGRAMMERS: Herv<EFBFBD> Poussineau (hpoussin@reactos.org)
|
|||
|
*/
|
|||
|
|
|||
|
#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;
|
|||
|
}
|