Reactos
1/*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: Ext2 File System Management
4 * FILE: dll/win32/uext2/uext2.c
5 * PURPOSE: uext2 DLL initialisation
6 * PROGRAMMERS: Pierre Schweitzer
7 */
8
9#include <windef.h>
10
11INT WINAPI
12DllMain(
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}