-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnolocale.h
182 lines (141 loc) · 4.6 KB
/
nolocale.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
/**@addtogroup Common
* @{@file
*
* Disable the VS2010 version of the C++ runtime locale support.
*
* @author Nigel Bree <[email protected]>
*
* Copyright (C) 2011-2012 Nigel Bree; All Rights Reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This exists simply to reduce the size of the monitor and hook executables,
* since the locale machines in Visual C++ is worthless and takes up about 14kb
* of space we can't normally reclaim.
*
* These are specific to VS2010; I've written more versatile versions that go
* back to very old VC editions but this VS2010-only one will do for now.
*/
#define WIN32_LEAN_AND_MEAN 1
#include <windows.h>
extern "C" {
/**@cond internal */
unsigned long __flsindex = FLS_OUT_OF_INDEXES;
void * gpFlsAlloc = 0;
void * gpFlsGetValue = 0;
void * gpFlsSetValue = 0;
void * gpFlsFree = 0;
void __cdecl _freeptd (void *) {
}
void __cdecl _initptd (void *, void *) {
}
void * __cdecl _getptd (void) {
return 0;
}
void * __cdecl _getptd_noexit (void) {
return 0;
}
#if _MSC_VER < 1700
/**
* Fake FLS allocator/set/get routines. On VS2012 with AMD64 these are in a new
* API wrapping file called winapisupp so they aren't as easy to shoot down.
*/
DWORD WINAPI __crtFlsAlloc (PFLS_CALLBACK_FUNCTION) {
return FLS_OUT_OF_INDEXES;
}
PVOID WINAPI __crtFlsGetValue (DWORD) {
return 0;
}
BOOL WINAPI __crtFlsSetValue (DWORD, PVOID) {
return TRUE;
}
BOOL WINAPI __crtFlsFree (DWORD) {
return TRUE;
}
#endif
void __cdecl _init_pointers (void);
void __cdecl _mtinitlocks (void);
void __cdecl _mtinit (void) {
_init_pointers ();
_mtinitlocks ();
HMODULE kernel = GetModuleHandleW (L"kernel32.dll");
if (kernel == 0)
return;
#if _MSC_VER < 1700
gpFlsAlloc = EncodePointer (__crtFlsAlloc);
gpFlsGetValue = EncodePointer (__crtFlsGetValue);
gpFlsSetValue = EncodePointer (__crtFlsSetValue);
gpFlsFree = EncodePointer (__crtFlsFree);
#endif
}
#if _MSC_VER > 1600 || __AMD64__
struct {
int refcount;
} __initialmbcinfo;
void * __ptmbcinfo = & __initialmbcinfo;
void * __cdecl __updatetmbcinfo (void) {
return 0;
}
#endif
#if _MSC_VER > 1600
/*
* In Visual Studio 2010 and 2012 and presumably going forward, the DinkumWare
* iostreams are all built strictly on top of classic POSIX fopen (), making
* them interoperate well but adding quite a lot to the legacy drag. We don't
* want these to exist.
*
* In VS2012 Update 1, the init function name changed from ioinit0 to ioinit.
*/
void * _stdbuf [2];
void __cdecl _ioinit (void) {
}
void __cdecl _ioinit0 (void) {
}
void __cdecl _ioterm (void) {
}
#endif
void __cdecl _mtdeletelocks (void);
void __cdecl _mtterm (void) {
_mtdeletelocks ();
}
void * __cdecl __set_flsgetvalue (void) {
return 0;
}
void * _encoded_null (void) {
return EncodePointer (0);
}
void __cdecl __initmbctable (void) {
}
void * __pPurecall = 0;
void _initp_misc_purevirt (void * encoded_null) {
__pPurecall = encoded_null;
}
int __cdecl _setargv (void) {
return 0;
}
int __cdecl _setenvp (void) {
return 0;
}
/**@endcond*/
}