msvcp90: Added basic_istream<wchar> implementation.
[wine/multimedia.git] / dlls / msvcp90 / msvcp90.h
blob80d4acf5461df55adc5a900f5fcd40e9126a876a
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"
22 typedef unsigned char MSVCP_bool;
23 typedef SIZE_T MSVCP_size_t;
24 typedef SSIZE_T streamoff;
25 typedef SSIZE_T streamsize;
27 void __cdecl _invalid_parameter(const wchar_t*, const wchar_t*,
28 const wchar_t*, unsigned int, uintptr_t);
29 BOOL __cdecl __uncaught_exception(void);
31 extern void* (__cdecl *MSVCRT_operator_new)(MSVCP_size_t);
32 extern void (__cdecl *MSVCRT_operator_delete)(void*);
33 extern void* (__cdecl *MSVCRT_set_new_handler)(void*);
35 /* Copied from dlls/msvcrt/cpp.c */
36 #ifdef __i386__ /* thiscall functions are i386-specific */
38 #define THISCALL(func) __thiscall_ ## func
39 #define THISCALL_NAME(func) __ASM_NAME("__thiscall_" #func)
40 #define __thiscall __stdcall
41 #define DEFINE_THISCALL_WRAPPER(func,args) \
42 extern void THISCALL(func)(void); \
43 __ASM_GLOBAL_FUNC(__thiscall_ ## func, \
44 "popl %eax\n\t" \
45 "pushl %ecx\n\t" \
46 "pushl %eax\n\t" \
47 "jmp " __ASM_NAME(#func) __ASM_STDCALL(args) )
48 #else /* __i386__ */
50 #define THISCALL(func) func
51 #define THISCALL_NAME(func) __ASM_NAME(#func)
52 #define __thiscall __cdecl
53 #define DEFINE_THISCALL_WRAPPER(func,args) /* nothing */
55 #endif /* __i386__ */
57 #ifdef _WIN64
59 #define VTABLE_ADD_FUNC(name) "\t.quad " THISCALL_NAME(name) "\n"
61 #define __ASM_VTABLE(name,funcs) \
62 __asm__(".data\n" \
63 "\t.align 8\n" \
64 "\t.quad " __ASM_NAME(#name "_rtti") "\n" \
65 "\t.globl " __ASM_NAME("MSVCP_" #name "_vtable") "\n" \
66 __ASM_NAME("MSVCP_" #name "_vtable") ":\n" \
67 "\t.quad " THISCALL_NAME(MSVCP_ ## name ## _vector_dtor) "\n" \
68 funcs "\n\t.text")
70 #else
72 #define VTABLE_ADD_FUNC(name) "\t.long " THISCALL_NAME(name) "\n"
74 #define __ASM_VTABLE(name,funcs) \
75 __asm__(".data\n" \
76 "\t.align 4\n" \
77 "\t.long " __ASM_NAME(#name "_rtti") "\n" \
78 "\t.globl " __ASM_NAME("MSVCP_" #name "_vtable") "\n" \
79 __ASM_NAME("MSVCP_" #name "_vtable") ":\n" \
80 "\t.long " THISCALL_NAME(MSVCP_ ## name ## _vector_dtor) "\n" \
81 funcs "\n\t.text")
83 #endif /* _WIN64 */
85 #define DEFINE_RTTI_DATA(name, off, base_classes, cl1, cl2, cl3, cl4, cl5, cl6, cl7, cl8, cl9, mangled_name) \
86 static const type_info name ## _type_info = { \
87 &MSVCP_type_info_vtable, \
88 NULL, \
89 mangled_name \
90 }; \
92 static const rtti_base_descriptor name ## _rtti_base_descriptor = { \
93 &name ##_type_info, \
94 base_classes, \
95 { 0, -1, 0}, \
96 64 \
97 }; \
99 static const rtti_base_array name ## _rtti_base_array = { \
101 &name ## _rtti_base_descriptor, \
102 cl1, \
103 cl2, \
104 cl3, \
105 cl4, \
106 cl5, \
107 cl6, \
108 cl7, \
109 cl8, \
110 cl9, \
112 }; \
114 static const rtti_object_hierarchy name ## _hierarchy = { \
115 0, \
116 0, \
117 base_classes+1, \
118 &name ## _rtti_base_array \
119 }; \
121 const rtti_object_locator name ## _rtti = { \
122 0, \
123 off, \
124 0, \
125 &name ## _type_info, \
126 &name ## _hierarchy \
129 #define DEFINE_RTTI_DATA0(name, off, mangled_name) \
130 DEFINE_RTTI_DATA(name, off, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, mangled_name)
131 #define DEFINE_RTTI_DATA1(name, off, cl1, mangled_name) \
132 DEFINE_RTTI_DATA(name, off, 1, cl1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, mangled_name)
133 #define DEFINE_RTTI_DATA2(name, off, cl1, cl2, mangled_name) \
134 DEFINE_RTTI_DATA(name, off, 2, cl1, cl2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, mangled_name)
135 #define DEFINE_RTTI_DATA3(name, off, cl1, cl2, cl3, mangled_name) \
136 DEFINE_RTTI_DATA(name, off, 3, cl1, cl2, cl3, NULL, NULL, NULL, NULL, NULL, NULL, mangled_name)
137 #define DEFINE_RTTI_DATA4(name, off, cl1, cl2, cl3, cl4, mangled_name) \
138 DEFINE_RTTI_DATA(name, off, 4, cl1, cl2, cl3, cl4, NULL, NULL, NULL, NULL, NULL, mangled_name)
139 #define DEFINE_RTTI_DATA8(name, off, cl1, cl2, cl3, cl4, cl5, cl6, cl7, cl8, mangled_name) \
140 DEFINE_RTTI_DATA(name, off, 8, cl1, cl2, cl3, cl4, cl5, cl6, cl7, cl8, NULL, mangled_name)
141 #define DEFINE_RTTI_DATA9(name, off, cl1, cl2, cl3, cl4, cl5, cl6, cl7, cl8, cl9, mangled_name) \
142 DEFINE_RTTI_DATA(name, off, 9, cl1, cl2, cl3, cl4, cl5, cl6, cl7, cl8, cl9, mangled_name)
144 #ifdef __i386__
146 #define CALL_VTBL_FUNC(this, off, ret, type, args) ((ret (WINAPI*)type)&vtbl_wrapper_##off)args
148 extern void *vtbl_wrapper_0;
149 extern void *vtbl_wrapper_4;
150 extern void *vtbl_wrapper_8;
151 extern void *vtbl_wrapper_12;
152 extern void *vtbl_wrapper_16;
153 extern void *vtbl_wrapper_20;
154 extern void *vtbl_wrapper_24;
155 extern void *vtbl_wrapper_28;
156 extern void *vtbl_wrapper_32;
157 extern void *vtbl_wrapper_36;
158 extern void *vtbl_wrapper_40;
159 extern void *vtbl_wrapper_44;
160 extern void *vtbl_wrapper_48;
161 extern void *vtbl_wrapper_52;
162 extern void *vtbl_wrapper_56;
163 extern void *vtbl_wrapper_60;
165 #else
167 #define CALL_VTBL_FUNC(this, off, ret, type, args) ((ret (__cdecl***)type)this)[0][off/4]args
169 #endif
171 /* exception object */
172 typedef void (*vtable_ptr)(void);
173 typedef struct __exception
175 const vtable_ptr *vtable;
176 char *name; /* Name of this exception, always a new copy for each object */
177 int do_free; /* Whether to free 'name' in our dtor */
178 } exception;
180 /* Internal: throws selected exception */
181 typedef enum __exception_type {
182 EXCEPTION_RERAISE,
183 EXCEPTION,
184 EXCEPTION_BAD_ALLOC,
185 EXCEPTION_LOGIC_ERROR,
186 EXCEPTION_LENGTH_ERROR,
187 EXCEPTION_OUT_OF_RANGE,
188 EXCEPTION_INVALID_ARGUMENT,
189 EXCEPTION_RUNTIME_ERROR,
190 EXCEPTION_FAILURE,
191 } exception_type;
192 void throw_exception(exception_type, const char *);
194 /* rtti */
195 typedef struct __type_info
197 const vtable_ptr *vtable;
198 char *name; /* Unmangled name, allocated lazily */
199 char mangled[128]; /* Variable length, but we declare it large enough for static RTTI */
200 } type_info;
202 extern const vtable_ptr MSVCP_type_info_vtable;
204 /* offsets for computing the this pointer */
205 typedef struct
207 int this_offset; /* offset of base class this pointer from start of object */
208 int vbase_descr; /* offset of virtual base class descriptor */
209 int vbase_offset; /* offset of this pointer offset in virtual base class descriptor */
210 } this_ptr_offsets;
212 typedef struct _rtti_base_descriptor
214 const type_info *type_descriptor;
215 int num_base_classes;
216 this_ptr_offsets offsets; /* offsets for computing the this pointer */
217 unsigned int attributes;
218 } rtti_base_descriptor;
220 typedef struct _rtti_base_array
222 const rtti_base_descriptor *bases[10]; /* First element is the class itself */
223 } rtti_base_array;
225 typedef struct _rtti_object_hierarchy
227 unsigned int signature;
228 unsigned int attributes;
229 int array_len; /* Size of the array pointed to by 'base_classes' */
230 const rtti_base_array *base_classes;
231 } rtti_object_hierarchy;
233 typedef struct _rtti_object_locator
235 unsigned int signature;
236 int base_class_offset;
237 unsigned int flags;
238 const type_info *type_descriptor;
239 const rtti_object_hierarchy *type_hierarchy;
240 } rtti_object_locator;
242 /* basic_string<char, char_traits<char>, allocator<char>> */
243 #define BUF_SIZE_CHAR 16
244 typedef struct _basic_string_char
246 void *allocator;
247 union {
248 char buf[BUF_SIZE_CHAR];
249 char *ptr;
250 } data;
251 MSVCP_size_t size;
252 MSVCP_size_t res;
253 } basic_string_char;
255 basic_string_char* __stdcall MSVCP_basic_string_char_ctor_cstr(basic_string_char*, const char*);
256 basic_string_char* __stdcall MSVCP_basic_string_char_copy_ctor(basic_string_char*, const basic_string_char*);
257 void __stdcall MSVCP_basic_string_char_dtor(basic_string_char*);
258 const char* __stdcall MSVCP_basic_string_char_c_str(const basic_string_char*);
259 void __thiscall MSVCP_basic_string_char_clear(basic_string_char*);
260 basic_string_char* __thiscall MSVCP_basic_string_char_append_ch(basic_string_char*, char);
261 MSVCP_size_t __thiscall MSVCP_basic_string_char_length(const basic_string_char*);
263 #define BUF_SIZE_WCHAR 8
264 typedef struct _basic_string_wchar
266 void *allocator;
267 union {
268 wchar_t buf[BUF_SIZE_WCHAR];
269 wchar_t *ptr;
270 } data;
271 MSVCP_size_t size;
272 MSVCP_size_t res;
273 } basic_string_wchar;
275 basic_string_wchar* __thiscall MSVCP_basic_string_wchar_ctor_cstr(basic_string_wchar*, const wchar_t*);
276 void __thiscall MSVCP_basic_string_wchar_dtor(basic_string_wchar*);
277 const wchar_t* __thiscall MSVCP_basic_string_wchar_c_str(const basic_string_wchar*);
278 void __thiscall MSVCP_basic_string_wchar_clear(basic_string_wchar*);
279 basic_string_wchar* __thiscall MSVCP_basic_string_wchar_append_ch(basic_string_wchar*, wchar_t);
280 MSVCP_size_t __thiscall MSVCP_basic_string_wchar_length(const basic_string_wchar*);
282 char* __stdcall MSVCP_allocator_char_allocate(void*, MSVCP_size_t);
283 void __stdcall MSVCP_allocator_char_deallocate(void*, char*, MSVCP_size_t);
284 MSVCP_size_t __stdcall MSVCP_allocator_char_max_size(void*);
285 wchar_t* __stdcall MSVCP_allocator_wchar_allocate(void*, MSVCP_size_t);
286 void __stdcall MSVCP_allocator_wchar_deallocate(void*, wchar_t*, MSVCP_size_t);
287 MSVCP_size_t __stdcall MSVCP_allocator_wchar_max_size(void*);
289 /* class locale::facet */
290 typedef struct {
291 const vtable_ptr *vtable;
292 MSVCP_size_t refs;
293 } locale_facet;
295 typedef enum {
296 CODECVT_ok = 0,
297 CODECVT_partial = 1,
298 CODECVT_error = 2,
299 CODECVT_noconv = 3
300 } codecvt_base_result;
302 typedef struct {
303 LCID handle;
304 unsigned page;
305 const short *table;
306 int delfl;
307 } _Ctypevec;
309 /* class codecvt_base */
310 typedef struct {
311 locale_facet facet;
312 } codecvt_base;
314 /* class codecvt<char> */
315 typedef struct {
316 codecvt_base base;
317 } codecvt_char;
319 MSVCP_bool __thiscall codecvt_base_always_noconv(const codecvt_base*);
320 int __thiscall codecvt_char_unshift(const codecvt_char*, int*, char*, char*, char**);
321 int __thiscall codecvt_char_out(const codecvt_char*, int*, const char*,
322 const char*, const char**, char*, char*, char**);
323 int __thiscall codecvt_char_in(const codecvt_char*, int*, const char*,
324 const char*, const char**, char*, char*, char**);
325 int __thiscall codecvt_base_max_length(const codecvt_base*);
327 typedef struct {
328 LCID handle;
329 unsigned page;
330 } _Cvtvec;
332 /* class codecvt<wchar> */
333 typedef struct {
334 codecvt_base base;
335 _Cvtvec cvt;
336 } codecvt_wchar;
338 /* class ctype_base */
339 typedef struct {
340 locale_facet facet;
341 } ctype_base;
343 /* class ctype<char> */
344 typedef struct {
345 ctype_base base;
346 _Ctypevec ctype;
347 } ctype_char;
349 MSVCP_bool __thiscall ctype_char_is_ch(const ctype_char*, short, char);
350 char __thiscall ctype_char_narrow_ch(const ctype_char*, char, char);
351 char __thiscall ctype_char_widen_ch(const ctype_char*, char);
353 /* class ctype<wchar> */
354 typedef struct {
355 ctype_base base;
356 _Ctypevec ctype;
357 _Cvtvec cvt;
358 } ctype_wchar;
360 MSVCP_bool __thiscall ctype_wchar_is_ch(const ctype_wchar*, short, wchar_t);
361 char __thiscall ctype_wchar_narrow_ch(const ctype_wchar*, wchar_t, char);
362 wchar_t __thiscall ctype_wchar_widen_ch(const ctype_wchar*, char);
364 /* class locale */
365 typedef struct
367 struct _locale__Locimp *ptr;
368 } locale;
370 locale* __thiscall locale_ctor(locale*);
371 locale* __thiscall locale_copy_ctor(locale*, const locale*);
372 locale* __thiscall locale_operator_assign(locale*, const locale*);
373 void __thiscall locale_dtor(locale*);
374 void free_locale(void);
375 codecvt_char* codecvt_char_use_facet(const locale*);
376 codecvt_char* codecvt_char_use_facet(const locale*);
377 ctype_char* ctype_char_use_facet(const locale*);
378 ctype_wchar* ctype_wchar_use_facet(const locale*);
380 /* class _Lockit */
381 typedef struct {
382 int locktype;
383 } _Lockit;
385 #define _LOCK_LOCALE 0
386 #define _LOCK_MALLOC 1
387 #define _LOCK_STREAM 2
388 #define _LOCK_DEBUG 3
389 #define _MAX_LOCK 4
391 void init_lockit(void);
392 void free_lockit(void);
393 _Lockit* __thiscall _Lockit_ctor_locktype(_Lockit*, int);
394 void __thiscall _Lockit_dtor(_Lockit*);
396 /* class mutex */
397 typedef struct {
398 void *mutex;
399 } mutex;
401 mutex* __thiscall mutex_ctor(mutex*);
402 void __thiscall mutex_dtor(mutex*);
403 void __thiscall mutex_lock(mutex*);
404 void __thiscall mutex_unlock(mutex*);
406 typedef enum {
407 FMTFLAG_skipws = 0x0001,
408 FMTFLAG_unitbuf = 0x0002,
409 FMTFLAG_uppercase = 0x0004,
410 FMTFLAG_showbase = 0x0008,
411 FMTFLAG_showpoint = 0x0010,
412 FMTFLAG_showpos = 0x0020,
413 FMTFLAG_left = 0x0040,
414 FMTFLAG_right = 0x0080,
415 FMTFLAG_internal = 0x0100,
416 FMTFLAG_dec = 0x0200,
417 FMTFLAG_oct = 0x0400,
418 FMTFLAG_hex = 0x0800,
419 FMTFLAG_scientific = 0x1000,
420 FMTFLAG_fixed = 0x2000,
421 FMTFLAG_hexfloat = 0x3000,
422 FMTFLAG_boolalpha = 0x4000,
423 FMTFLAG_stdio = 0x8000,
424 FMTFLAG_adjustfield = FMTFLAG_left|FMTFLAG_right|FMTFLAG_internal,
425 FMTFLAG_basefield = FMTFLAG_dec|FMTFLAG_oct|FMTFLAG_hex,
426 FMTFLAG_floatfield = FMTFLAG_scientific|FMTFLAG_fixed,
427 FMTFLAG_mask = 0xffff
428 } IOSB_fmtflags;
430 typedef enum {
431 OPENMODE_in = 0x01,
432 OPENMODE_out = 0x02,
433 OPENMODE_ate = 0x04,
434 OPENMODE_app = 0x08,
435 OPENMODE_trunc = 0x10,
436 OPENMODE__Nocreate = 0x40,
437 OPENMODE__Noreplace = 0x80,
438 OPENMODE_binary = 0x20,
439 OPENMODE_mask = 0xff
440 } IOSB_openmode;
442 typedef enum {
443 SEEKDIR_beg = 0x1,
444 SEEKDIR_cur = 0x2,
445 SEEKDIR_end = 0x3,
446 SEEKDIR_mask = 0x3
447 } IOSB_seekdir;
449 typedef enum {
450 IOSTATE_goodbit = 0x00,
451 IOSTATE_eofbit = 0x01,
452 IOSTATE_failbit = 0x02,
453 IOSTATE_badbit = 0x04,
454 IOSTATE__Hardfail = 0x10,
455 IOSTATE_mask = 0x17
456 } IOSB_iostate;
458 typedef struct _iosarray {
459 struct _iosarray *next;
460 int index;
461 int long_val;
462 void *ptr_val;
463 } IOS_BASE_iosarray;
465 typedef enum {
466 EVENT_erase_event,
467 EVENT_imbue_event,
468 EVENT_copyfmt_event
469 } IOS_BASE_event;
471 struct _ios_base;
472 typedef void (CDECL *IOS_BASE_event_callback)(IOS_BASE_event, struct _ios_base*, int);
473 typedef struct _fnarray {
474 struct _fnarray *next;
475 int index;
476 IOS_BASE_event_callback event_handler;
477 } IOS_BASE_fnarray;
479 /* class ios_base */
480 typedef struct _ios_base {
481 const vtable_ptr *vtable;
482 MSVCP_size_t stdstr;
483 IOSB_iostate state;
484 IOSB_iostate except;
485 IOSB_fmtflags fmtfl;
486 streamsize prec;
487 streamsize wide;
488 IOS_BASE_iosarray *arr;
489 IOS_BASE_fnarray *calls;
490 locale *loc;
491 } ios_base;
493 /* class basic_streambuf<char> */
494 typedef struct {
495 const vtable_ptr *vtable;
496 mutex lock;
497 char *rbuf;
498 char *wbuf;
499 char **prbuf;
500 char **pwbuf;
501 char *rpos;
502 char *wpos;
503 char **prpos;
504 char **pwpos;
505 int rsize;
506 int wsize;
507 int *prsize;
508 int *pwsize;
509 locale *loc;
510 } basic_streambuf_char;
512 typedef struct {
513 basic_streambuf_char *strbuf;
514 MSVCP_bool got;
515 char val;
516 } istreambuf_iterator_char;
518 typedef struct {
519 MSVCP_bool failed;
520 basic_streambuf_char *strbuf;
521 } ostreambuf_iterator_char;
523 int __thiscall basic_streambuf_char_sgetc(basic_streambuf_char*);
524 int __thiscall basic_streambuf_char_sbumpc(basic_streambuf_char*);
525 int __thiscall basic_streambuf_char_sputc(basic_streambuf_char*, char);
527 /* class basic_streambuf<wchar> */
528 typedef struct {
529 const vtable_ptr *vtable;
530 mutex lock;
531 wchar_t *rbuf;
532 wchar_t *wbuf;
533 wchar_t **prbuf;
534 wchar_t **pwbuf;
535 wchar_t *rpos;
536 wchar_t *wpos;
537 wchar_t **prpos;
538 wchar_t **pwpos;
539 int rsize;
540 int wsize;
541 int *prsize;
542 int *pwsize;
543 locale *loc;
544 } basic_streambuf_wchar;
546 typedef struct {
547 basic_streambuf_wchar *strbuf;
548 MSVCP_bool got;
549 wchar_t val;
550 } istreambuf_iterator_wchar;
552 typedef struct {
553 MSVCP_bool failed;
554 basic_streambuf_wchar *strbuf;
555 } ostreambuf_iterator_wchar;
557 unsigned short __thiscall basic_streambuf_wchar_sgetc(basic_streambuf_wchar*);
558 unsigned short __thiscall basic_streambuf_wchar_sbumpc(basic_streambuf_wchar*);
559 unsigned short __thiscall basic_streambuf_wchar_sputc(basic_streambuf_wchar*, wchar_t);
561 /* class num_get<char> */
562 typedef struct {
563 locale_facet facet;
564 _Cvtvec cvt;
565 } num_get;
567 num_get* num_get_char_use_facet(const locale*);
568 istreambuf_iterator_char* __thiscall num_get_char_get_long(const num_get*, istreambuf_iterator_char*,
569 istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, LONG*);
570 istreambuf_iterator_char* __thiscall num_get_char_get_ushort(const num_get*, istreambuf_iterator_char*,
571 istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, unsigned short*);
572 istreambuf_iterator_char* __thiscall num_get_char_get_uint(const num_get*, istreambuf_iterator_char*,
573 istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, unsigned int*);
574 istreambuf_iterator_char* __thiscall num_get_char_get_ulong(const num_get*, istreambuf_iterator_char*,
575 istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, ULONG*);
576 istreambuf_iterator_char* __thiscall num_get_char_get_float(const num_get*, istreambuf_iterator_char*,
577 istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, float*);
578 istreambuf_iterator_char *__thiscall num_get_char_get_double(const num_get*, istreambuf_iterator_char*,
579 istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, double*);
580 istreambuf_iterator_char *__thiscall num_get_char_get_ldouble(const num_get*, istreambuf_iterator_char*,
581 istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, double*);
582 istreambuf_iterator_char *__thiscall num_get_char_get_void(const num_get*, istreambuf_iterator_char*,
583 istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, void**);
584 istreambuf_iterator_char *__thiscall num_get_char_get_int64(const num_get*, istreambuf_iterator_char*,
585 istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, LONGLONG*);
586 istreambuf_iterator_char *__thiscall num_get_char_get_uint64(const num_get*, istreambuf_iterator_char*,
587 istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, ULONGLONG*);
588 istreambuf_iterator_char *__thiscall num_get_char_get_bool(const num_get*, istreambuf_iterator_char*,
589 istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, MSVCP_bool*);
591 num_get* num_get_wchar_use_facet(const locale*);
592 istreambuf_iterator_wchar* __thiscall num_get_wchar_get_long(const num_get*, istreambuf_iterator_wchar*,
593 istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, LONG*);
594 istreambuf_iterator_wchar* __thiscall num_get_wchar_get_ushort(const num_get*, istreambuf_iterator_wchar*,
595 istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, unsigned short*);
596 istreambuf_iterator_wchar* __thiscall num_get_wchar_get_uint(const num_get*, istreambuf_iterator_wchar*,
597 istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, unsigned int*);
598 istreambuf_iterator_wchar* __thiscall num_get_wchar_get_ulong(const num_get*, istreambuf_iterator_wchar*,
599 istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, ULONG*);
600 istreambuf_iterator_wchar* __thiscall num_get_wchar_get_float(const num_get*, istreambuf_iterator_wchar*,
601 istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, float*);
602 istreambuf_iterator_wchar *__thiscall num_get_wchar_get_double(const num_get*, istreambuf_iterator_wchar*,
603 istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, double*);
604 istreambuf_iterator_wchar *__thiscall num_get_wchar_get_ldouble(const num_get*, istreambuf_iterator_wchar*,
605 istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, double*);
606 istreambuf_iterator_wchar *__thiscall num_get_wchar_get_void(const num_get*, istreambuf_iterator_wchar*,
607 istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, void**);
608 istreambuf_iterator_wchar *__thiscall num_get_wchar_get_int64(const num_get*, istreambuf_iterator_wchar*,
609 istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, LONGLONG*);
610 istreambuf_iterator_wchar *__thiscall num_get_wchar_get_uint64(const num_get*, istreambuf_iterator_wchar*,
611 istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, ULONGLONG*);
612 istreambuf_iterator_wchar *__thiscall num_get_wchar_get_bool(const num_get*, istreambuf_iterator_wchar*,
613 istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, MSVCP_bool*);
615 /* class num_put<char> */
616 /* class num_put<wchar> */
617 typedef struct {
618 locale_facet facet;
619 _Cvtvec cvt;
620 } num_put;
622 num_put* num_put_char_use_facet(const locale*);
623 ostreambuf_iterator_char* __thiscall num_put_char_put_long(const num_put*, ostreambuf_iterator_char*,
624 ostreambuf_iterator_char, ios_base*, char, LONG);
625 ostreambuf_iterator_char* __thiscall num_put_char_put_ulong(const num_put*, ostreambuf_iterator_char*,
626 ostreambuf_iterator_char, ios_base*, char, ULONG);
627 ostreambuf_iterator_char* __thiscall num_put_char_put_double(const num_put*, ostreambuf_iterator_char*,
628 ostreambuf_iterator_char, ios_base*, char, double);
629 ostreambuf_iterator_char* __thiscall num_put_char_put_ldouble(const num_put*, ostreambuf_iterator_char*,
630 ostreambuf_iterator_char, ios_base*, char, double);
631 ostreambuf_iterator_char* __thiscall num_put_char_put_ptr(const num_put*, ostreambuf_iterator_char*,
632 ostreambuf_iterator_char, ios_base*, char, const void*);
633 ostreambuf_iterator_char* __thiscall num_put_char_put_int64(const num_put*, ostreambuf_iterator_char*,
634 ostreambuf_iterator_char, ios_base*, char, __int64);
635 ostreambuf_iterator_char* __thiscall num_put_char_put_uint64(const num_put*, ostreambuf_iterator_char*,
636 ostreambuf_iterator_char, ios_base*, char, unsigned __int64);
637 ostreambuf_iterator_char* __thiscall num_put_char_put_bool(const num_put*, ostreambuf_iterator_char*,
638 ostreambuf_iterator_char, ios_base*, char, MSVCP_bool);
640 num_put* num_put_wchar_use_facet(const locale*);
641 ostreambuf_iterator_wchar* __thiscall num_put_wchar_put_long(const num_put*, ostreambuf_iterator_wchar*,
642 ostreambuf_iterator_wchar, ios_base*, wchar_t, LONG);
643 ostreambuf_iterator_wchar* __thiscall num_put_wchar_put_ulong(const num_put*, ostreambuf_iterator_wchar*,
644 ostreambuf_iterator_wchar, ios_base*, wchar_t, ULONG);
645 ostreambuf_iterator_wchar* __thiscall num_put_wchar_put_double(const num_put*, ostreambuf_iterator_wchar*,
646 ostreambuf_iterator_wchar, ios_base*, wchar_t, double);
647 ostreambuf_iterator_wchar* __thiscall num_put_wchar_put_ldouble(const num_put*, ostreambuf_iterator_wchar*,
648 ostreambuf_iterator_wchar, ios_base*, wchar_t, double);
649 ostreambuf_iterator_wchar* __thiscall num_put_wchar_put_ptr(const num_put*, ostreambuf_iterator_wchar*,
650 ostreambuf_iterator_wchar, ios_base*, wchar_t, const void*);
651 ostreambuf_iterator_wchar* __thiscall num_put_wchar_put_int64(const num_put*, ostreambuf_iterator_wchar*,
652 ostreambuf_iterator_wchar, ios_base*, wchar_t, __int64);
653 ostreambuf_iterator_wchar* __thiscall num_put_wchar_put_uint64(const num_put*, ostreambuf_iterator_wchar*,
654 ostreambuf_iterator_wchar, ios_base*, wchar_t, unsigned __int64);
655 ostreambuf_iterator_wchar* __thiscall num_put_wchar_put_bool(const num_put*, ostreambuf_iterator_wchar*,
656 ostreambuf_iterator_wchar, ios_base*, wchar_t, MSVCP_bool);
658 void init_io(void);
659 void free_io(void);