- Revert 44301
[reactos.git] / dll / win32 / ufat / ufat.c
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: FAT File System Management
4 * FILE: reactos/dll/win32/fmifs/init.c
5 * PURPOSE: Initialisation
6 *
7 * PROGRAMMERS: Hervé Poussineau (hpoussin@reactos.org)
8 */
9
10 #define WIN32_NO_STATUS
11 #include <windows.h>
12 #define NTOS_MODE_USER
13 #include <ndk/ntndk.h>
14 #include <fmifs/fmifs.h>
15
16 INT WINAPI
17 DllMain(
18 IN HINSTANCE hinstDLL,
19 IN DWORD dwReason,
20 IN LPVOID lpvReserved)
21 {
22 UNREFERENCED_PARAMETER(hinstDLL);
23 UNREFERENCED_PARAMETER(dwReason);
24 UNREFERENCED_PARAMETER(lpvReserved);
25
26 return TRUE;
27 }