Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenuntfs.c
Go to the documentation of this file.
00001 /* 00002 * COPYRIGHT: See COPYING in the top level directory 00003 * PROJECT: NTFS File System Management 00004 * FILE: dll/win32/untfs/untfs.c 00005 * PURPOSE: untfs DLL initialisation 00006 * 00007 * PROGRAMMERS: Pierre Schweitzer 00008 */ 00009 00010 #define WIN32_NO_STATUS 00011 #include <windows.h> 00012 #define NTOS_MODE_USER 00013 #include <ndk/umtypes.h> 00014 #include <fmifs/fmifs.h> 00015 00016 INT WINAPI 00017 DllMain( 00018 IN HINSTANCE hinstDLL, 00019 IN DWORD dwReason, 00020 IN LPVOID lpvReserved) 00021 { 00022 UNREFERENCED_PARAMETER(hinstDLL); 00023 UNREFERENCED_PARAMETER(dwReason); 00024 UNREFERENCED_PARAMETER(lpvReserved); 00025 00026 return TRUE; 00027 } Generated on Sun May 27 2012 04:26:36 for ReactOS by
1.7.6.1
|