msvcp71: Removed unused functions.
[wine] / dlls / msvcp71 / msvcp71.c
1 /*
2  * Copyright 2010 Piotr Caban for CodeWeavers
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17  */
18
19 #include "config.h"
20
21 #include <stdarg.h>
22
23 #include "msvcp.h"
24
25 #include "windef.h"
26 #include "winbase.h"
27 #include "wine/debug.h"
28
29 WINE_DEFAULT_DEBUG_CHANNEL(msvcp);
30
31 #ifdef __i386__
32
33 #define DEFINE_VTBL_WRAPPER(off)            \
34     __ASM_GLOBAL_FUNC(vtbl_wrapper_ ## off, \
35         "popl %eax\n\t"                     \
36         "popl %ecx\n\t"                     \
37         "pushl %eax\n\t"                    \
38         "movl 0(%ecx), %eax\n\t"            \
39         "jmp *" #off "(%eax)\n\t")
40
41 DEFINE_VTBL_WRAPPER(0);
42 DEFINE_VTBL_WRAPPER(4);
43 DEFINE_VTBL_WRAPPER(8);
44 DEFINE_VTBL_WRAPPER(12);
45 DEFINE_VTBL_WRAPPER(16);
46 DEFINE_VTBL_WRAPPER(20);
47 DEFINE_VTBL_WRAPPER(24);
48 DEFINE_VTBL_WRAPPER(28);
49 DEFINE_VTBL_WRAPPER(32);
50 DEFINE_VTBL_WRAPPER(36);
51 DEFINE_VTBL_WRAPPER(40);
52 DEFINE_VTBL_WRAPPER(44);
53 DEFINE_VTBL_WRAPPER(48);
54 DEFINE_VTBL_WRAPPER(52);
55
56 #endif
57
58 void* (__cdecl *MSVCRT_operator_new)(MSVCP_size_t);
59 void (__cdecl *MSVCRT_operator_delete)(void*);
60 void* (__cdecl *MSVCRT_set_new_handler)(void*);
61
62 static void init_cxx_funcs(void)
63 {
64     HMODULE hmod = GetModuleHandleA("msvcrt.dll");
65
66     if (sizeof(void *) > sizeof(int))  /* 64-bit has different names */
67     {
68         MSVCRT_operator_new = (void*)GetProcAddress(hmod, "??2@YAPEAX_K@Z");
69         MSVCRT_operator_delete = (void*)GetProcAddress(hmod, "??3@YAXPEAX@Z");
70         MSVCRT_set_new_handler = (void*)GetProcAddress(hmod, "?_set_new_handler@@YAP6AH_K@ZP6AH0@Z@Z");
71     }
72     else
73     {
74         MSVCRT_operator_new = (void*)GetProcAddress(hmod, "??2@YAPAXI@Z");
75         MSVCRT_operator_delete = (void*)GetProcAddress(hmod, "??3@YAXPAX@Z");
76         MSVCRT_set_new_handler = (void*)GetProcAddress(hmod, "?_set_new_handler@@YAP6AHI@ZP6AHI@Z@Z");
77     }
78 }
79
80 BOOL WINAPI DllMain(HINSTANCE hdll, DWORD reason, LPVOID reserved)
81 {
82     switch (reason)
83     {
84         case DLL_WINE_PREATTACH:
85             return FALSE;  /* prefer native version */
86         case DLL_PROCESS_ATTACH:
87             init_cxx_funcs();
88             init_lockit();
89             init_exception(hdll);
90             init_locale(hdll);
91             init_io(hdll);
92             break;
93         case DLL_PROCESS_DETACH:
94             free_io();
95             free_locale();
96             free_lockit();
97             break;
98     }
99     return TRUE;
100 }
101
102 /* ?_BADOFF@std@@3JB -> long const std::_BADOFF */
103 /* ?_BADOFF@std@@3_JB -> __int64 const std::_BADOFF */
104 const streamoff std_BADOFF = -1;
105
106 /* ?_Fpz@std@@3_JA  __int64 std::_Fpz */
107 __int64 std_Fpz = 0;