reactos/dll/win32/uext2/uext2.c
Amine Khaldi 178300c8a6 * Sync to trunk HEAD (r53318).
* Fix PCH use in shell32.

svn path=/branches/shell32_new-bringup/; revision=53319
2011-08-19 17:45:34 +00:00

28 lines
586 B
C

/*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: Ext2 File System Management
* FILE: dll/win32/uext2/uext2.c
* PURPOSE: uext2 DLL initialisation
*
* PROGRAMMERS: Pierre Schweitzer
*/
#define WIN32_NO_STATUS
#include <windows.h>
#define NTOS_MODE_USER
#include <ndk/umtypes.h>
#include <fmifs/fmifs.h>
INT WINAPI
DllMain(
IN HINSTANCE hinstDLL,
IN DWORD dwReason,
IN LPVOID lpvReserved)
{
UNREFERENCED_PARAMETER(hinstDLL);
UNREFERENCED_PARAMETER(dwReason);
UNREFERENCED_PARAMETER(lpvReserved);
return TRUE;
}