mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +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é 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;
|
|
}
|