xref: /reactos/dll/win32/untfs/untfs.c (revision 4561998a)
1 /*
2  * COPYRIGHT:       See COPYING in the top level directory
3  * PROJECT:         NTFS File System Management
4  * FILE:            dll/win32/untfs/untfs.c
5  * PURPOSE:         untfs DLL initialisation
6  * PROGRAMMERS:     Pierre Schweitzer
7  */
8 
9 #include <windef.h>
10 
11 INT WINAPI
12 DllMain(
13     IN HINSTANCE hinstDLL,
14     IN DWORD     dwReason,
15     IN LPVOID    lpvReserved)
16 {
17     UNREFERENCED_PARAMETER(hinstDLL);
18     UNREFERENCED_PARAMETER(dwReason);
19     UNREFERENCED_PARAMETER(lpvReserved);
20 
21     return TRUE;
22 }
23