2 * msvcr90 specific functions
4 * Copyright 2010 Detlef Riekenberg
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
26 #include "wine/debug.h"
28 WINE_DEFAULT_DEBUG_CHANNEL(msvcr90);
30 typedef int (CDECL *_INITTERM_E_FN)(void);
32 /*********************************************************************
35 BOOL WINAPI DllMain(HINSTANCE hdll, DWORD reason, LPVOID reserved)
39 case DLL_WINE_PREATTACH:
40 return FALSE; /* prefer native version */
42 case DLL_PROCESS_ATTACH:
43 DisableThreadLibraryCalls(hdll);
48 /*********************************************************************
49 * _decode_pointer (MSVCR90.@)
51 * cdecl version of DecodePointer
54 void * CDECL MSVCR90_decode_pointer(void * ptr)
56 return DecodePointer(ptr);
59 /*********************************************************************
60 * _encode_pointer (MSVCR90.@)
62 * cdecl version of EncodePointer
65 void * CDECL MSVCR90_encode_pointer(void * ptr)
67 return EncodePointer(ptr);
70 /*********************************************************************
71 * _encoded_null (MSVCR90.@)
73 void * CDECL _encoded_null(void)
77 return MSVCR90_encode_pointer(NULL);
80 /*********************************************************************
81 * _initterm_e (MSVCR90.@)
83 * call an array of application initialization functions and report the return value
85 int CDECL _initterm_e(_INITTERM_E_FN *table, _INITTERM_E_FN *end)
89 TRACE("(%p, %p)\n", table, end);
91 while (!res && table < end) {
95 TRACE("function %p failed: 0x%x\n", *table, res);
103 /*********************************************************************
104 * _invalid_parameter_noinfo (MSVCR90.@)
106 void CDECL _invalid_parameter_noinfo(void)
108 _invalid_parameter( NULL, NULL, NULL, 0, 0 );
111 /*********************************************************************
112 * __sys_nerr (MSVCR90.@)
114 int* CDECL __sys_nerr(void)
116 return (int*)GetProcAddress(GetModuleHandleA("msvcrt.dll"), "_sys_nerr");
119 /*********************************************************************
120 * __sys_errlist (MSVCR90.@)
122 char** CDECL __sys_errlist(void)
124 return (char**)GetProcAddress(GetModuleHandleA("msvcrt.dll"), "_sys_errlist");
127 /*********************************************************************
128 * __clean_type_info_names_internal (MSVCR90.@)
130 void CDECL __clean_type_info_names_internal(void *p)
132 FIXME("(%p) stub\n", p);