Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenmain.c
Go to the documentation of this file.
00001 /* 00002 * Copyright 2008 Maarten Lankhorst 00003 * 00004 * This library is free software; you can redistribute it and/or 00005 * modify it under the terms of the GNU Lesser General Public 00006 * License as published by the Free Software Foundation; either 00007 * version 2.1 of the License, or (at your option) any later version. 00008 * 00009 * This library is distributed in the hope that it will be useful, 00010 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00012 * Lesser General Public License for more details. 00013 * 00014 * You should have received a copy of the GNU Lesser General Public 00015 * License along with this library; if not, write to the Free Software 00016 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 00017 */ 00018 00019 #include "config.h" 00020 00021 #include <stdarg.h> 00022 00023 #include "windef.h" 00024 #include "winbase.h" 00025 #include "wine/debug.h" 00026 00027 WINE_DEFAULT_DEBUG_CHANNEL(initpki); 00028 00029 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) 00030 { 00031 TRACE("(0x%p, %d, %p)\n", hinstDLL, fdwReason, lpvReserved); 00032 00033 switch (fdwReason) 00034 { 00035 case DLL_WINE_PREATTACH: 00036 return FALSE; /* prefer native version */ 00037 case DLL_PROCESS_ATTACH: 00038 DisableThreadLibraryCalls(hinstDLL); 00039 break; 00040 case DLL_PROCESS_DETACH: 00041 break; 00042 default: 00043 break; 00044 } 00045 return TRUE; 00046 } 00047 00048 /***************************************************** 00049 * DllRegisterServer (INITPKI.@) 00050 */ 00051 HRESULT WINAPI DllRegisterServer(void) 00052 { 00053 FIXME("Not implemented.\n"); 00054 return E_UNEXPECTED; 00055 } 00056 00057 /***************************************************** 00058 * DllUnregisterServer (INITPKI.@) 00059 */ 00060 HRESULT WINAPI DllUnregisterServer(void) 00061 { 00062 FIXME("Not implemented.\n"); 00063 return E_UNEXPECTED; 00064 } Generated on Sat May 26 2012 04:15:43 for ReactOS by
1.7.6.1
|