mirror of
https://github.com/reactos/reactos.git
synced 2024-10-31 11:56:26 +00:00
4f0b8d3db0
svn path=/branches/ntvdm/; revision=59241
25 lines
489 B
C
25 lines
489 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
|
|
*/
|
|
|
|
#include <windef.h>
|
|
|
|
|
|
INT WINAPI
|
|
DllMain(
|
|
IN HINSTANCE hinstDLL,
|
|
IN DWORD dwReason,
|
|
IN LPVOID lpvReserved)
|
|
{
|
|
UNREFERENCED_PARAMETER(hinstDLL);
|
|
UNREFERENCED_PARAMETER(dwReason);
|
|
UNREFERENCED_PARAMETER(lpvReserved);
|
|
|
|
return TRUE;
|
|
}
|