mmdevapi: Fix small capture bugs.
[wine/multimedia.git] / dlls / msvcr90 / msvcr90.c
blob9d037670b243e2f9d4b965e2fe6eeb6d96641584
1 /*
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
21 #include <stdarg.h>
23 #include "stdlib.h"
24 #include "windef.h"
25 #include "winbase.h"
26 #include "wine/debug.h"
28 WINE_DEFAULT_DEBUG_CHANNEL(msvcr90);
30 typedef int (CDECL *_INITTERM_E_FN)(void);
32 /*********************************************************************
33 * DllMain (MSVCR90.@)
35 BOOL WINAPI DllMain(HINSTANCE hdll, DWORD reason, LPVOID reserved)
37 switch (reason)
39 case DLL_WINE_PREATTACH:
40 return FALSE; /* prefer native version */
42 case DLL_PROCESS_ATTACH:
43 DisableThreadLibraryCalls(hdll);
45 return TRUE;
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)
75 TRACE("\n");
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)
87 int res = 0;
89 TRACE("(%p, %p)\n", table, end);
91 while (!res && table < end) {
92 if (*table) {
93 res = (**table)();
94 if (res)
95 TRACE("function %p failed: 0x%x\n", *table, res);
98 table++;
100 return 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);