2008-04-30 21:35:23 +00:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2008-08-01 16:29:40 +00:00
|
|
|
#define WIN32_NO_STATUS
|
|
|
|
#include <windows.h>
|
|
|
|
#define NTOS_MODE_USER
|
|
|
|
#include <ndk/ntndk.h>
|
|
|
|
#include <fmifs/fmifs.h>
|
2008-04-30 21:35:23 +00:00
|
|
|
|
|
|
|
INT WINAPI
|
|
|
|
DllMain(
|
|
|
|
IN HINSTANCE hinstDLL,
|
|
|
|
IN DWORD dwReason,
|
|
|
|
IN LPVOID lpvReserved)
|
|
|
|
{
|
|
|
|
UNREFERENCED_PARAMETER(hinstDLL);
|
|
|
|
UNREFERENCED_PARAMETER(dwReason);
|
|
|
|
UNREFERENCED_PARAMETER(lpvReserved);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|