Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenmsnet_main.c
Go to the documentation of this file.
00001 /* 00002 * Microsoft Network API implementation 00003 * 00004 * Copyright 2003 Rein Klazes 00005 * Copyright 2006 Alexandre Julliard 00006 * 00007 * This library is free software; you can redistribute it and/or 00008 * modify it under the terms of the GNU Lesser General Public 00009 * License as published by the Free Software Foundation; either 00010 * version 2.1 of the License, or (at your option) any later version. 00011 * 00012 * This library is distributed in the hope that it will be useful, 00013 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00015 * Lesser General Public License for more details. 00016 * 00017 * You should have received a copy of the GNU Lesser General Public 00018 * License along with this library; if not, write to the Free Software 00019 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 00020 */ 00021 00022 #include "config.h" 00023 00024 #include <stdarg.h> 00025 00026 #include "windef.h" 00027 #include "winbase.h" 00028 #include "wine/debug.h" 00029 00030 WINE_DEFAULT_DEBUG_CHANNEL(msnet); 00031 00032 00033 /*********************************************************************** 00034 * DllMain (MSNET32.@) 00035 */ 00036 BOOL WINAPI DllMain( HINSTANCE inst, DWORD reason, LPVOID reserved ) 00037 { 00038 switch(reason) 00039 { 00040 case DLL_WINE_PREATTACH: 00041 return FALSE; /* prefer native version */ 00042 case DLL_PROCESS_ATTACH: 00043 DisableThreadLibraryCalls( inst ); 00044 break; 00045 } 00046 return TRUE; 00047 } 00048 00049 /*********************************************************************** 00050 * @ (MSNET32.57) 00051 */ 00052 LONG WINAPI MSNET32_57( LONG a1, LONG a2, LPVOID a3, LONG a4, LPVOID a5 ) 00053 { 00054 FIXME("(0x%04x 0x%04x %p 0x%04x %p): stub\n", a1, a2, a3, a4, a5); 00055 return -1; /* FAILURE */ 00056 } Generated on Fri May 25 2012 04:23:23 for ReactOS by
1.7.6.1
|