dwrite: Implement CreateFontFaceFromHdc().
[wine.git] / dlls / msvcp90 / msvcp90.h
blob0a60d469c88ef04e978a0b030c025f8675d6650b
1 /*
2 * Copyright 2010 Piotr Caban for CodeWeavers
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.
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.
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
19 #include "stdlib.h"
20 #include "windef.h"
21 #include "cxx.h"
23 #define ALIGNED_SIZE(size, alignment) (((size)+((alignment)-1))/(alignment)*(alignment))
25 typedef unsigned char MSVCP_bool;
26 typedef SIZE_T MSVCP_size_t;
28 #if _MSVCP_VER >= 100
29 typedef __int64 DECLSPEC_ALIGN(8) streamoff;
30 typedef __int64 DECLSPEC_ALIGN(8) streamsize;
31 #define STREAMOFF_BITS 64
32 #define STREAMSIZE_BITS 64
33 #else
34 typedef SSIZE_T streamoff;
35 typedef SSIZE_T streamsize;
36 #define STREAMOFF_BITS 32
37 #define STREAMSIZE_BITS 32
38 #endif
40 void __cdecl _invalid_parameter(const wchar_t*, const wchar_t*,
41 const wchar_t*, unsigned int, uintptr_t);
42 BOOL __cdecl __uncaught_exception(void);
44 extern void* (__cdecl *MSVCRT_operator_new)(MSVCP_size_t);
45 extern void (__cdecl *MSVCRT_operator_delete)(void*);
46 extern void* (__cdecl *MSVCRT_set_new_handler)(void*);
48 #if _MSVCP_VER >= 110
49 /* keep in sync with msvcrt/lock.c */
50 typedef struct cs_queue
52 struct cs_queue *next;
53 BOOL free;
54 int unknown;
55 } cs_queue;
57 typedef struct
59 ULONG_PTR unk_thread_id;
60 cs_queue unk_active;
61 void *unknown[2];
62 cs_queue *head;
63 void *tail;
64 } critical_section;
66 extern critical_section* (__thiscall *critical_section_ctor)(critical_section*);
67 extern void (__thiscall *critical_section_dtor)(critical_section*);
68 extern void (__thiscall *critical_section_lock)(critical_section*);
69 extern void (__thiscall *critical_section_unlock)(critical_section*);
70 extern MSVCP_bool (__thiscall *critical_section_trylock)(critical_section*);
71 #endif
73 /* basic_string<char, char_traits<char>, allocator<char>> */
74 #define BUF_SIZE_CHAR 16
75 typedef struct
77 #if _MSVCP_VER <= 90
78 void *allocator;
79 #endif
80 union {
81 char buf[BUF_SIZE_CHAR];
82 char *ptr;
83 } data;
84 MSVCP_size_t size;
85 MSVCP_size_t res;
86 #if _MSVCP_VER == 100
87 char allocator;
88 #endif
89 } basic_string_char;
91 basic_string_char* __thiscall MSVCP_basic_string_char_ctor(basic_string_char*);
92 basic_string_char* __thiscall MSVCP_basic_string_char_ctor_cstr(basic_string_char*, const char*);
93 basic_string_char* __thiscall MSVCP_basic_string_char_ctor_cstr_len(basic_string_char*, const char*, MSVCP_size_t);
94 basic_string_char* __thiscall MSVCP_basic_string_char_copy_ctor(basic_string_char*, const basic_string_char*);
95 void __thiscall MSVCP_basic_string_char_dtor(basic_string_char*);
96 const char* __thiscall MSVCP_basic_string_char_c_str(const basic_string_char*);
97 void __thiscall MSVCP_basic_string_char_clear(basic_string_char*);
98 basic_string_char* __thiscall MSVCP_basic_string_char_append_ch(basic_string_char*, char);
99 MSVCP_size_t __thiscall MSVCP_basic_string_char_length(const basic_string_char*);
100 basic_string_char* __thiscall MSVCP_basic_string_char_assign(basic_string_char*, const basic_string_char*);
102 #define BUF_SIZE_WCHAR 8
103 typedef struct
105 #if _MSVCP_VER <= 90
106 void *allocator;
107 #endif
108 union {
109 wchar_t buf[BUF_SIZE_WCHAR];
110 wchar_t *ptr;
111 } data;
112 MSVCP_size_t size;
113 MSVCP_size_t res;
114 #if _MSVCP_VER == 100
115 char allocator;
116 #endif
117 } basic_string_wchar;
119 basic_string_wchar* __thiscall MSVCP_basic_string_wchar_ctor(basic_string_wchar*);
120 basic_string_wchar* __thiscall MSVCP_basic_string_wchar_ctor_cstr(basic_string_wchar*, const wchar_t*);
121 basic_string_wchar* __thiscall MSVCP_basic_string_wchar_ctor_cstr_len(basic_string_wchar*, const wchar_t*, MSVCP_size_t);
122 void __thiscall MSVCP_basic_string_wchar_dtor(basic_string_wchar*);
123 const wchar_t* __thiscall MSVCP_basic_string_wchar_c_str(const basic_string_wchar*);
124 void __thiscall MSVCP_basic_string_wchar_clear(basic_string_wchar*);
125 basic_string_wchar* __thiscall MSVCP_basic_string_wchar_append_ch(basic_string_wchar*, wchar_t);
126 MSVCP_size_t __thiscall MSVCP_basic_string_wchar_length(const basic_string_wchar*);
128 char* __thiscall MSVCP_allocator_char_allocate(void*, MSVCP_size_t);
129 void __thiscall MSVCP_allocator_char_deallocate(void*, char*, MSVCP_size_t);
130 MSVCP_size_t __thiscall MSVCP_allocator_char_max_size(const void*);
131 wchar_t* __thiscall MSVCP_allocator_wchar_allocate(void*, MSVCP_size_t);
132 void __thiscall MSVCP_allocator_wchar_deallocate(void*, wchar_t*, MSVCP_size_t);
133 MSVCP_size_t __thiscall MSVCP_allocator_wchar_max_size(const void*);
135 typedef struct
137 char *str;
138 char null_str;
139 } _Yarn_char;
141 _Yarn_char* __thiscall _Yarn_char_ctor_cstr(_Yarn_char*, const char*);
142 _Yarn_char* __thiscall _Yarn_char_copy_ctor(_Yarn_char*, const _Yarn_char*);
143 const char* __thiscall _Yarn_char_c_str(const _Yarn_char*);
144 void __thiscall _Yarn_char_dtor(_Yarn_char*);
145 _Yarn_char* __thiscall _Yarn_char_op_assign(_Yarn_char*, const _Yarn_char*);
147 /* class locale::facet */
148 typedef struct {
149 const vtable_ptr *vtable;
150 MSVCP_size_t refs;
151 } locale_facet;
153 typedef enum {
154 CODECVT_ok = 0,
155 CODECVT_partial = 1,
156 CODECVT_error = 2,
157 CODECVT_noconv = 3
158 } codecvt_base_result;
160 typedef struct {
161 #if _MSVCP_VER < 110
162 LCID handle;
163 #endif
164 unsigned page;
165 const short *table;
166 int delfl;
167 #if _MSVCP_VER >= 110
168 wchar_t *name;
169 #endif
170 } _Ctypevec;
172 /* class codecvt_base */
173 typedef struct {
174 locale_facet facet;
175 } codecvt_base;
177 /* class codecvt<char> */
178 typedef struct {
179 codecvt_base base;
180 } codecvt_char;
182 MSVCP_bool __thiscall codecvt_base_always_noconv(const codecvt_base*);
183 int __thiscall codecvt_char_unshift(const codecvt_char*, int*, char*, char*, char**);
184 int __thiscall codecvt_char_out(const codecvt_char*, int*, const char*,
185 const char*, const char**, char*, char*, char**);
186 int __thiscall codecvt_char_in(const codecvt_char*, int*, const char*,
187 const char*, const char**, char*, char*, char**);
188 int __thiscall codecvt_base_max_length(const codecvt_base*);
190 typedef struct {
191 LCID handle;
192 unsigned page;
193 } _Cvtvec;
195 /* class codecvt<wchar> */
196 typedef struct {
197 codecvt_base base;
198 _Cvtvec cvt;
199 } codecvt_wchar;
201 int __thiscall codecvt_wchar_unshift(const codecvt_wchar*, int*, char*, char*, char**);
202 int __thiscall codecvt_wchar_out(const codecvt_wchar*, int*, const wchar_t*,
203 const wchar_t*, const wchar_t**, char*, char*, char**);
204 int __thiscall codecvt_wchar_in(const codecvt_wchar*, int*, const char*,
205 const char*, const char**, wchar_t*, wchar_t*, wchar_t**);
207 /* class ctype_base */
208 typedef struct {
209 locale_facet facet;
210 } ctype_base;
212 /* class ctype<char> */
213 typedef struct {
214 ctype_base base;
215 _Ctypevec ctype;
216 } ctype_char;
218 MSVCP_bool __thiscall ctype_char_is_ch(const ctype_char*, short, char);
219 char __thiscall ctype_char_narrow_ch(const ctype_char*, char, char);
220 char __thiscall ctype_char_widen_ch(const ctype_char*, char);
222 /* class ctype<wchar> */
223 typedef struct {
224 ctype_base base;
225 _Ctypevec ctype;
226 _Cvtvec cvt;
227 } ctype_wchar;
229 MSVCP_bool __thiscall ctype_wchar_is_ch(const ctype_wchar*, short, wchar_t);
230 char __thiscall ctype_wchar_narrow_ch(const ctype_wchar*, wchar_t, char);
231 wchar_t __thiscall ctype_wchar_widen_ch(const ctype_wchar*, char);
233 /* class locale */
234 typedef struct
236 struct _locale__Locimp *ptr;
237 } locale;
239 locale* __thiscall locale_ctor(locale*);
240 locale* __thiscall locale_copy_ctor(locale*, const locale*);
241 locale* __thiscall locale_operator_assign(locale*, const locale*);
242 void __thiscall locale_dtor(locale*);
243 void free_locale(void);
244 codecvt_char* codecvt_char_use_facet(const locale*);
245 codecvt_wchar* codecvt_wchar_use_facet(const locale*);
246 codecvt_wchar* codecvt_short_use_facet(const locale*);
247 ctype_char* ctype_char_use_facet(const locale*);
248 ctype_wchar* ctype_wchar_use_facet(const locale*);
249 ctype_wchar* ctype_short_use_facet(const locale*);
251 /* class _Lockit */
252 typedef struct {
253 int locktype;
254 } _Lockit;
256 #define _LOCK_LOCALE 0
257 #define _LOCK_MALLOC 1
258 #define _LOCK_STREAM 2
259 #define _LOCK_DEBUG 3
260 #define _MAX_LOCK 4
262 void init_lockit(void);
263 void free_lockit(void);
264 _Lockit* __thiscall _Lockit_ctor_locktype(_Lockit*, int);
265 void __thiscall _Lockit_dtor(_Lockit*);
267 /* class mutex */
268 typedef struct {
269 void *mutex;
270 } mutex;
272 mutex* __thiscall mutex_ctor(mutex*);
273 void __thiscall mutex_dtor(mutex*);
274 void __thiscall mutex_lock(mutex*);
275 void __thiscall mutex_unlock(mutex*);
277 typedef enum {
278 FMTFLAG_skipws = 0x0001,
279 FMTFLAG_unitbuf = 0x0002,
280 FMTFLAG_uppercase = 0x0004,
281 FMTFLAG_showbase = 0x0008,
282 FMTFLAG_showpoint = 0x0010,
283 FMTFLAG_showpos = 0x0020,
284 FMTFLAG_left = 0x0040,
285 FMTFLAG_right = 0x0080,
286 FMTFLAG_internal = 0x0100,
287 FMTFLAG_dec = 0x0200,
288 FMTFLAG_oct = 0x0400,
289 FMTFLAG_hex = 0x0800,
290 FMTFLAG_scientific = 0x1000,
291 FMTFLAG_fixed = 0x2000,
292 FMTFLAG_hexfloat = 0x3000,
293 FMTFLAG_boolalpha = 0x4000,
294 FMTFLAG_stdio = 0x8000,
295 FMTFLAG_adjustfield = FMTFLAG_left|FMTFLAG_right|FMTFLAG_internal,
296 FMTFLAG_basefield = FMTFLAG_dec|FMTFLAG_oct|FMTFLAG_hex,
297 FMTFLAG_floatfield = FMTFLAG_scientific|FMTFLAG_fixed,
298 FMTFLAG_mask = 0xffff
299 } IOSB_fmtflags;
301 typedef enum {
302 OPENMODE_in = 0x01,
303 OPENMODE_out = 0x02,
304 OPENMODE_ate = 0x04,
305 OPENMODE_app = 0x08,
306 OPENMODE_trunc = 0x10,
307 OPENMODE__Nocreate = 0x40,
308 OPENMODE__Noreplace = 0x80,
309 OPENMODE_binary = 0x20,
310 OPENMODE_mask = 0xff
311 } IOSB_openmode;
313 typedef enum {
314 SEEKDIR_beg = 0x0,
315 SEEKDIR_cur = 0x1,
316 SEEKDIR_end = 0x2,
317 SEEKDIR_mask = 0x3
318 } IOSB_seekdir;
320 typedef enum {
321 IOSTATE_goodbit = 0x00,
322 IOSTATE_eofbit = 0x01,
323 IOSTATE_failbit = 0x02,
324 IOSTATE_badbit = 0x04,
325 IOSTATE__Hardfail = 0x10,
326 IOSTATE_mask = 0x17
327 } IOSB_iostate;
329 typedef struct _iosarray {
330 struct _iosarray *next;
331 int index;
332 int long_val;
333 void *ptr_val;
334 } IOS_BASE_iosarray;
336 typedef enum {
337 EVENT_erase_event,
338 EVENT_imbue_event,
339 EVENT_copyfmt_event
340 } IOS_BASE_event;
342 struct _ios_base;
343 typedef void (CDECL *IOS_BASE_event_callback)(IOS_BASE_event, struct _ios_base*, int);
344 typedef struct _fnarray {
345 struct _fnarray *next;
346 int index;
347 IOS_BASE_event_callback event_handler;
348 } IOS_BASE_fnarray;
350 /* class ios_base */
351 typedef struct _ios_base {
352 const vtable_ptr *vtable;
353 #if _MSVCP_VER >= 100
354 MSVCP_size_t DECLSPEC_ALIGN(8) stdstr;
355 #else
356 MSVCP_size_t stdstr;
357 #endif
358 IOSB_iostate state;
359 IOSB_iostate except;
360 IOSB_fmtflags fmtfl;
361 streamsize prec;
362 streamsize wide;
363 IOS_BASE_iosarray *arr;
364 IOS_BASE_fnarray *calls;
365 locale *loc;
366 } ios_base;
368 /* class basic_streambuf<char> */
369 typedef struct {
370 const vtable_ptr *vtable;
371 #if _MSVCP_VER <= 100
372 mutex lock;
373 #endif
374 char *rbuf;
375 char *wbuf;
376 char **prbuf;
377 char **pwbuf;
378 char *rpos;
379 char *wpos;
380 char **prpos;
381 char **pwpos;
382 int rsize;
383 int wsize;
384 int *prsize;
385 int *pwsize;
386 locale *loc;
387 } basic_streambuf_char;
389 typedef struct {
390 basic_streambuf_char *strbuf;
391 MSVCP_bool got;
392 char val;
393 } istreambuf_iterator_char;
395 typedef struct {
396 #if _MSVCP_VER == 80
397 void *iter_container;
398 #endif
399 MSVCP_bool failed;
400 basic_streambuf_char *strbuf;
401 } ostreambuf_iterator_char;
403 int __thiscall basic_streambuf_char_sgetc(basic_streambuf_char*);
404 int __thiscall basic_streambuf_char_sbumpc(basic_streambuf_char*);
405 int __thiscall basic_streambuf_char_sputc(basic_streambuf_char*, char);
407 /* class basic_streambuf<wchar> */
408 typedef struct {
409 const vtable_ptr *vtable;
410 #if _MSVCP_VER <= 100
411 mutex lock;
412 #endif
413 wchar_t *rbuf;
414 wchar_t *wbuf;
415 wchar_t **prbuf;
416 wchar_t **pwbuf;
417 wchar_t *rpos;
418 wchar_t *wpos;
419 wchar_t **prpos;
420 wchar_t **pwpos;
421 int rsize;
422 int wsize;
423 int *prsize;
424 int *pwsize;
425 locale *loc;
426 } basic_streambuf_wchar;
428 typedef struct {
429 basic_streambuf_wchar *strbuf;
430 MSVCP_bool got;
431 wchar_t val;
432 } istreambuf_iterator_wchar;
434 typedef struct {
435 #if _MSVCP_VER == 80
436 void *iter_container;
437 #endif
438 MSVCP_bool failed;
439 basic_streambuf_wchar *strbuf;
440 } ostreambuf_iterator_wchar;
442 unsigned short __thiscall basic_streambuf_wchar_sgetc(basic_streambuf_wchar*);
443 unsigned short __thiscall basic_streambuf_wchar_sbumpc(basic_streambuf_wchar*);
444 unsigned short __thiscall basic_streambuf_wchar_sputc(basic_streambuf_wchar*, wchar_t);
446 /* class num_get<char> */
447 typedef struct {
448 locale_facet facet;
449 _Cvtvec cvt;
450 } num_get;
452 num_get* num_get_char_use_facet(const locale*);
453 istreambuf_iterator_char* __thiscall num_get_char_get_long(const num_get*, istreambuf_iterator_char*,
454 istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, LONG*);
455 istreambuf_iterator_char* __thiscall num_get_char_get_ushort(const num_get*, istreambuf_iterator_char*,
456 istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, unsigned short*);
457 istreambuf_iterator_char* __thiscall num_get_char_get_uint(const num_get*, istreambuf_iterator_char*,
458 istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, unsigned int*);
459 istreambuf_iterator_char* __thiscall num_get_char_get_ulong(const num_get*, istreambuf_iterator_char*,
460 istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, ULONG*);
461 istreambuf_iterator_char* __thiscall num_get_char_get_float(const num_get*, istreambuf_iterator_char*,
462 istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, float*);
463 istreambuf_iterator_char *__thiscall num_get_char_get_double(const num_get*, istreambuf_iterator_char*,
464 istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, double*);
465 istreambuf_iterator_char *__thiscall num_get_char_get_ldouble(const num_get*, istreambuf_iterator_char*,
466 istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, double*);
467 istreambuf_iterator_char *__thiscall num_get_char_get_void(const num_get*, istreambuf_iterator_char*,
468 istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, void**);
469 istreambuf_iterator_char *__thiscall num_get_char_get_int64(const num_get*, istreambuf_iterator_char*,
470 istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, LONGLONG*);
471 istreambuf_iterator_char *__thiscall num_get_char_get_uint64(const num_get*, istreambuf_iterator_char*,
472 istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, ULONGLONG*);
473 istreambuf_iterator_char *__thiscall num_get_char_get_bool(const num_get*, istreambuf_iterator_char*,
474 istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, MSVCP_bool*);
476 num_get* num_get_wchar_use_facet(const locale*);
477 num_get* num_get_short_use_facet(const locale*);
478 istreambuf_iterator_wchar* __thiscall num_get_wchar_get_long(const num_get*, istreambuf_iterator_wchar*,
479 istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, LONG*);
480 istreambuf_iterator_wchar* __thiscall num_get_wchar_get_ushort(const num_get*, istreambuf_iterator_wchar*,
481 istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, unsigned short*);
482 istreambuf_iterator_wchar* __thiscall num_get_wchar_get_uint(const num_get*, istreambuf_iterator_wchar*,
483 istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, unsigned int*);
484 istreambuf_iterator_wchar* __thiscall num_get_wchar_get_ulong(const num_get*, istreambuf_iterator_wchar*,
485 istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, ULONG*);
486 istreambuf_iterator_wchar* __thiscall num_get_wchar_get_float(const num_get*, istreambuf_iterator_wchar*,
487 istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, float*);
488 istreambuf_iterator_wchar *__thiscall num_get_wchar_get_double(const num_get*, istreambuf_iterator_wchar*,
489 istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, double*);
490 istreambuf_iterator_wchar *__thiscall num_get_wchar_get_ldouble(const num_get*, istreambuf_iterator_wchar*,
491 istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, double*);
492 istreambuf_iterator_wchar *__thiscall num_get_wchar_get_void(const num_get*, istreambuf_iterator_wchar*,
493 istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, void**);
494 istreambuf_iterator_wchar *__thiscall num_get_wchar_get_int64(const num_get*, istreambuf_iterator_wchar*,
495 istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, LONGLONG*);
496 istreambuf_iterator_wchar *__thiscall num_get_wchar_get_uint64(const num_get*, istreambuf_iterator_wchar*,
497 istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, ULONGLONG*);
498 istreambuf_iterator_wchar *__thiscall num_get_wchar_get_bool(const num_get*, istreambuf_iterator_wchar*,
499 istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, MSVCP_bool*);
501 /* class num_put<char> */
502 /* class num_put<wchar> */
503 typedef struct {
504 locale_facet facet;
505 _Cvtvec cvt;
506 } num_put;
508 num_put* num_put_char_use_facet(const locale*);
509 ostreambuf_iterator_char* __thiscall num_put_char_put_long(const num_put*, ostreambuf_iterator_char*,
510 ostreambuf_iterator_char, ios_base*, char, LONG);
511 ostreambuf_iterator_char* __thiscall num_put_char_put_ulong(const num_put*, ostreambuf_iterator_char*,
512 ostreambuf_iterator_char, ios_base*, char, ULONG);
513 ostreambuf_iterator_char* __thiscall num_put_char_put_double(const num_put*, ostreambuf_iterator_char*,
514 ostreambuf_iterator_char, ios_base*, char, double);
515 ostreambuf_iterator_char* __thiscall num_put_char_put_ldouble(const num_put*, ostreambuf_iterator_char*,
516 ostreambuf_iterator_char, ios_base*, char, double);
517 ostreambuf_iterator_char* __thiscall num_put_char_put_ptr(const num_put*, ostreambuf_iterator_char*,
518 ostreambuf_iterator_char, ios_base*, char, const void*);
519 ostreambuf_iterator_char* __thiscall num_put_char_put_int64(const num_put*, ostreambuf_iterator_char*,
520 ostreambuf_iterator_char, ios_base*, char, __int64);
521 ostreambuf_iterator_char* __thiscall num_put_char_put_uint64(const num_put*, ostreambuf_iterator_char*,
522 ostreambuf_iterator_char, ios_base*, char, unsigned __int64);
523 ostreambuf_iterator_char* __thiscall num_put_char_put_bool(const num_put*, ostreambuf_iterator_char*,
524 ostreambuf_iterator_char, ios_base*, char, MSVCP_bool);
526 num_put* num_put_wchar_use_facet(const locale*);
527 num_put* num_put_short_use_facet(const locale*);
528 ostreambuf_iterator_wchar* __thiscall num_put_wchar_put_long(const num_put*, ostreambuf_iterator_wchar*,
529 ostreambuf_iterator_wchar, ios_base*, wchar_t, LONG);
530 ostreambuf_iterator_wchar* __thiscall num_put_wchar_put_ulong(const num_put*, ostreambuf_iterator_wchar*,
531 ostreambuf_iterator_wchar, ios_base*, wchar_t, ULONG);
532 ostreambuf_iterator_wchar* __thiscall num_put_wchar_put_double(const num_put*, ostreambuf_iterator_wchar*,
533 ostreambuf_iterator_wchar, ios_base*, wchar_t, double);
534 ostreambuf_iterator_wchar* __thiscall num_put_wchar_put_ldouble(const num_put*, ostreambuf_iterator_wchar*,
535 ostreambuf_iterator_wchar, ios_base*, wchar_t, double);
536 ostreambuf_iterator_wchar* __thiscall num_put_wchar_put_ptr(const num_put*, ostreambuf_iterator_wchar*,
537 ostreambuf_iterator_wchar, ios_base*, wchar_t, const void*);
538 ostreambuf_iterator_wchar* __thiscall num_put_wchar_put_int64(const num_put*, ostreambuf_iterator_wchar*,
539 ostreambuf_iterator_wchar, ios_base*, wchar_t, __int64);
540 ostreambuf_iterator_wchar* __thiscall num_put_wchar_put_uint64(const num_put*, ostreambuf_iterator_wchar*,
541 ostreambuf_iterator_wchar, ios_base*, wchar_t, unsigned __int64);
542 ostreambuf_iterator_wchar* __thiscall num_put_wchar_put_bool(const num_put*, ostreambuf_iterator_wchar*,
543 ostreambuf_iterator_wchar, ios_base*, wchar_t, MSVCP_bool);
545 void init_exception(void*);
546 void init_locale(void*);
547 void init_io(void*);
548 void free_io(void);
549 void init_misc(void*);
551 /* class complex<float> */
552 typedef struct {
553 float real;
554 float imag;
555 } complex_float;
557 /* class complex<double> */
558 /* class complex<long double> */
559 typedef struct {
560 double real;
561 double imag;
562 } complex_double;
564 #if _MSVCP_VER < 80
565 #define memcpy_s( dst, size, src, count ) (memcpy( (dst), (src), (count) ), 0)
566 #define memmove_s( dst, size, src, count ) (memmove( (dst), (src), (count) ), 0)
567 #define mbstowcs_s( ret, wcs, size, mbs, count ) (mbstowcs( (wcs), (mbs), (count) ), 0)
568 #define hypotf( x, y ) ((float)hypot( (double)(x), (double)(y) ))
569 #endif