msvcr90: Added implementation of __sys_nerr and __sys_errlist.
[wine] / dlls / msvcr90 / msvcr90.c
1 /*
2  * msvcr90 specific functions
3  *
4  * Copyright 2010 Detlef Riekenberg
5  *
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.
10  *
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.
15  *
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
19  */
20
21 #include <stdarg.h>
22
23 #include "windef.h"
24 #include "winbase.h"
25 #include "wine/debug.h"
26
27 WINE_DEFAULT_DEBUG_CHANNEL(msvcr90);
28
29 typedef int (CDECL *_INITTERM_E_FN)(void);
30 typedef void (__cdecl *_invalid_parameter_handler)(const wchar_t*, const wchar_t*, const wchar_t*, unsigned, unsigned*);
31
32 /*********************************************************************
33  *  DllMain (MSVCR90.@)
34  */
35 BOOL WINAPI DllMain(HINSTANCE hdll, DWORD reason, LPVOID reserved)
36 {
37     switch (reason)
38     {
39     case DLL_WINE_PREATTACH:
40         return FALSE;  /* prefer native version */
41
42     case DLL_PROCESS_ATTACH:
43         DisableThreadLibraryCalls(hdll);
44     }
45     return TRUE;
46 }
47
48 /*********************************************************************
49  *  _decode_pointer (MSVCR90.@)
50  *
51  * cdecl version of DecodePointer
52  *
53  */
54 void * CDECL MSVCR90_decode_pointer(void * ptr)
55 {
56     return DecodePointer(ptr);
57 }
58
59 /*********************************************************************
60  *  _encode_pointer (MSVCR90.@)
61  *
62  * cdecl version of EncodePointer
63  *
64  */
65 void * CDECL MSVCR90_encode_pointer(void * ptr)
66 {
67     return EncodePointer(ptr);
68 }
69
70 /*********************************************************************
71  *  _encoded_null (MSVCR90.@)
72  */
73 void * CDECL _encoded_null(void)
74 {
75     TRACE("\n");
76
77     return MSVCR90_encode_pointer(NULL);
78 }
79
80 /*********************************************************************
81  *  _get_invalid_parameter_handler (MSVCR90.@)
82  */
83 _invalid_parameter_handler CDECL _get_invalid_parameter_handler(void)
84 {
85     TRACE("\n");
86     return *((_invalid_parameter_handler*)GetProcAddress(GetModuleHandleA("msvcrt.dll"), "_invalid_parameter"));
87 }
88
89 /*********************************************************************
90  *  _set_invalid_parameter_handler (MSVCR90.@)
91  */
92 _invalid_parameter_handler CDECL _set_invalid_parameter_handler(_invalid_parameter_handler handler)
93 {
94     _invalid_parameter_handler *ptr = (_invalid_parameter_handler*)GetProcAddress(
95             GetModuleHandleA("msvcrt.dll"), "_invalid_parameter");
96     _invalid_parameter_handler old = *ptr;
97
98     TRACE("(%p)\n", handler);
99
100     *ptr = handler;
101     return old;
102 }
103
104 /*********************************************************************
105  *  _initterm_e (MSVCR90.@)
106  *
107  * call an array of application initialization functions and report the return value
108  */
109 int CDECL _initterm_e(_INITTERM_E_FN *table, _INITTERM_E_FN *end)
110 {
111     int res = 0;
112
113     TRACE("(%p, %p)\n", table, end);
114
115     while (!res && table < end) {
116         if (*table) {
117             res = (**table)();
118             if (res)
119                 TRACE("function %p failed: 0x%x\n", *table, res);
120
121         }
122         table++;
123     }
124     return res;
125 }
126
127 /*********************************************************************
128  * __sys_nerr (MSVCR90.@)
129  */
130 int* CDECL __sys_nerr(void)
131 {
132         return (int*)GetProcAddress(GetModuleHandleA("msvcrt.dll"), "_sys_nerr");
133 }
134
135 /*********************************************************************
136  *  __sys_errlist (MSVCR90.@)
137  */
138 char** CDECL __sys_errlist(void)
139 {
140     return (char**)GetProcAddress(GetModuleHandleA("msvcrt.dll"), "_sys_errlist");
141 }