reactos/dll/win32/untfs/untfs.c
Amine Khaldi 0ee830d7a4 * Create a branch for USB experiments.
svn path=/branches/usb-experiments/; revision=72629
2016-09-09 15:11:19 +00:00

23 lines
488 B
C

/*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: NTFS File System Management
* FILE: dll/win32/untfs/untfs.c
* PURPOSE: untfs 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;
}