msvcp90: Added basic_stringbuf<wchar> and basic_stringbuf<short> implementation.
[wine/multimedia.git] / dlls / msvcp90 / msvcp90.h
blob576e0ba32038562287178adf6185094acc8178ad
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* __thiscall MSVCP_basic_string_char_ctor(basic_string_char*);
256 basic_string_char* __stdcall MSVCP_basic_string_char_ctor_cstr(basic_string_char*, const char*);
257 basic_string_char* __thiscall MSVCP_basic_string_char_ctor_cstr_len(basic_string_char*, const char*, MSVCP_size_t);
258 basic_string_char* __stdcall MSVCP_basic_string_char_copy_ctor(basic_string_char*, const basic_string_char*);
259 void __stdcall MSVCP_basic_string_char_dtor(basic_string_char*);
260 const char* __stdcall MSVCP_basic_string_char_c_str(const basic_string_char*);
261 void __thiscall MSVCP_basic_string_char_clear(basic_string_char*);
262 basic_string_char* __thiscall MSVCP_basic_string_char_append_ch(basic_string_char*, char);
263 MSVCP_size_t __thiscall MSVCP_basic_string_char_length(const basic_string_char*);
265 #define BUF_SIZE_WCHAR 8
266 typedef struct _basic_string_wchar
268 void *allocator;
269 union {
270 wchar_t buf[BUF_SIZE_WCHAR];
271 wchar_t *ptr;
272 } data;
273 MSVCP_size_t size;
274 MSVCP_size_t res;
275 } basic_string_wchar;
277 basic_string_wchar* __thiscall MSVCP_basic_string_wchar_ctor(basic_string_wchar*);
278 basic_string_wchar* __stdcall MSVCP_basic_string_wchar_ctor_cstr(basic_string_wchar*, const wchar_t*);
279 basic_string_wchar* __thiscall MSVCP_basic_string_wchar_ctor_cstr_len(basic_string_wchar*, const wchar_t*, MSVCP_size_t);
280 void __thiscall MSVCP_basic_string_wchar_dtor(basic_string_wchar*);
281 const wchar_t* __thiscall MSVCP_basic_string_wchar_c_str(const basic_string_wchar*);
282 void __thiscall MSVCP_basic_string_wchar_clear(basic_string_wchar*);
283 basic_string_wchar* __thiscall MSVCP_basic_string_wchar_append_ch(basic_string_wchar*, wchar_t);
284 MSVCP_size_t __thiscall MSVCP_basic_string_wchar_length(const basic_string_wchar*);
286 char* __stdcall MSVCP_allocator_char_allocate(void*, MSVCP_size_t);
287 void __stdcall MSVCP_allocator_char_deallocate(void*, char*, MSVCP_size_t);
288 MSVCP_size_t __stdcall MSVCP_allocator_char_max_size(void*);
289 wchar_t* __stdcall MSVCP_allocator_wchar_allocate(void*, MSVCP_size_t);
290 void __stdcall MSVCP_allocator_wchar_deallocate(void*, wchar_t*, MSVCP_size_t);
291 MSVCP_size_t __stdcall MSVCP_allocator_wchar_max_size(void*);
293 /* class locale::facet */
294 typedef struct {
295 const vtable_ptr *vtable;
296 MSVCP_size_t refs;
297 } locale_facet;
299 typedef enum {
300 CODECVT_ok = 0,
301 CODECVT_partial = 1,
302 CODECVT_error = 2,
303 CODECVT_noconv = 3
304 } codecvt_base_result;
306 typedef struct {
307 LCID handle;
308 unsigned page;
309 const short *table;
310 int delfl;
311 } _Ctypevec;
313 /* class codecvt_base */
314 typedef struct {
315 locale_facet facet;
316 } codecvt_base;
318 /* class codecvt<char> */
319 typedef struct {
320 codecvt_base base;
321 } codecvt_char;
323 MSVCP_bool __thiscall codecvt_base_always_noconv(const codecvt_base*);
324 int __thiscall codecvt_char_unshift(const codecvt_char*, int*, char*, char*, char**);
325 int __thiscall codecvt_char_out(const codecvt_char*, int*, const char*,
326 const char*, const char**, char*, char*, char**);
327 int __thiscall codecvt_char_in(const codecvt_char*, int*, const char*,
328 const char*, const char**, char*, char*, char**);
329 int __thiscall codecvt_base_max_length(const codecvt_base*);
331 typedef struct {
332 LCID handle;
333 unsigned page;
334 } _Cvtvec;
336 /* class codecvt<wchar> */
337 typedef struct {
338 codecvt_base base;
339 _Cvtvec cvt;
340 } codecvt_wchar;
342 /* class ctype_base */
343 typedef struct {
344 locale_facet facet;
345 } ctype_base;
347 /* class ctype<char> */
348 typedef struct {
349 ctype_base base;
350 _Ctypevec ctype;
351 } ctype_char;
353 MSVCP_bool __thiscall ctype_char_is_ch(const ctype_char*, short, char);
354 char __thiscall ctype_char_narrow_ch(const ctype_char*, char, char);
355 char __thiscall ctype_char_widen_ch(const ctype_char*, char);
357 /* class ctype<wchar> */
358 typedef struct {
359 ctype_base base;
360 _Ctypevec ctype;
361 _Cvtvec cvt;
362 } ctype_wchar;
364 MSVCP_bool __thiscall ctype_wchar_is_ch(const ctype_wchar*, short, wchar_t);
365 char __thiscall ctype_wchar_narrow_ch(const ctype_wchar*, wchar_t, char);
366 wchar_t __thiscall ctype_wchar_widen_ch(const ctype_wchar*, char);
368 /* class locale */
369 typedef struct
371 struct _locale__Locimp *ptr;
372 } locale;
374 locale* __thiscall locale_ctor(locale*);
375 locale* __thiscall locale_copy_ctor(locale*, const locale*);
376 locale* __thiscall locale_operator_assign(locale*, const locale*);
377 void __thiscall locale_dtor(locale*);
378 void free_locale(void);
379 codecvt_char* codecvt_char_use_facet(const locale*);
380 codecvt_char* codecvt_char_use_facet(const locale*);
381 ctype_char* ctype_char_use_facet(const locale*);
382 ctype_wchar* ctype_wchar_use_facet(const locale*);
384 /* class _Lockit */
385 typedef struct {
386 int locktype;
387 } _Lockit;
389 #define _LOCK_LOCALE 0
390 #define _LOCK_MALLOC 1
391 #define _LOCK_STREAM 2
392 #define _LOCK_DEBUG 3
393 #define _MAX_LOCK 4
395 void init_lockit(void);
396 void free_lockit(void);
397 _Lockit* __thiscall _Lockit_ctor_locktype(_Lockit*, int);
398 void __thiscall _Lockit_dtor(_Lockit*);
400 /* class mutex */
401 typedef struct {
402 void *mutex;
403 } mutex;
405 mutex* __thiscall mutex_ctor(mutex*);
406 void __thiscall mutex_dtor(mutex*);
407 void __thiscall mutex_lock(mutex*);
408 void __thiscall mutex_unlock(mutex*);
410 typedef enum {
411 FMTFLAG_skipws = 0x0001,
412 FMTFLAG_unitbuf = 0x0002,
413 FMTFLAG_uppercase = 0x0004,
414 FMTFLAG_showbase = 0x0008,
415 FMTFLAG_showpoint = 0x0010,
416 FMTFLAG_showpos = 0x0020,
417 FMTFLAG_left = 0x0040,
418 FMTFLAG_right = 0x0080,
419 FMTFLAG_internal = 0x0100,
420 FMTFLAG_dec = 0x0200,
421 FMTFLAG_oct = 0x0400,
422 FMTFLAG_hex = 0x0800,
423 FMTFLAG_scientific = 0x1000,
424 FMTFLAG_fixed = 0x2000,
425 FMTFLAG_hexfloat = 0x3000,
426 FMTFLAG_boolalpha = 0x4000,
427 FMTFLAG_stdio = 0x8000,
428 FMTFLAG_adjustfield = FMTFLAG_left|FMTFLAG_right|FMTFLAG_internal,
429 FMTFLAG_basefield = FMTFLAG_dec|FMTFLAG_oct|FMTFLAG_hex,
430 FMTFLAG_floatfield = FMTFLAG_scientific|FMTFLAG_fixed,
431 FMTFLAG_mask = 0xffff
432 } IOSB_fmtflags;
434 typedef enum {
435 OPENMODE_in = 0x01,
436 OPENMODE_out = 0x02,
437 OPENMODE_ate = 0x04,
438 OPENMODE_app = 0x08,
439 OPENMODE_trunc = 0x10,
440 OPENMODE__Nocreate = 0x40,
441 OPENMODE__Noreplace = 0x80,
442 OPENMODE_binary = 0x20,
443 OPENMODE_mask = 0xff
444 } IOSB_openmode;
446 typedef enum {
447 SEEKDIR_beg = 0x1,
448 SEEKDIR_cur = 0x2,
449 SEEKDIR_end = 0x3,
450 SEEKDIR_mask = 0x3
451 } IOSB_seekdir;
453 typedef enum {
454 IOSTATE_goodbit = 0x00,
455 IOSTATE_eofbit = 0x01,
456 IOSTATE_failbit = 0x02,
457 IOSTATE_badbit = 0x04,
458 IOSTATE__Hardfail = 0x10,
459 IOSTATE_mask = 0x17
460 } IOSB_iostate;
462 typedef struct _iosarray {
463 struct _iosarray *next;
464 int index;
465 int long_val;
466 void *ptr_val;
467 } IOS_BASE_iosarray;
469 typedef enum {
470 EVENT_erase_event,
471 EVENT_imbue_event,
472 EVENT_copyfmt_event
473 } IOS_BASE_event;
475 struct _ios_base;
476 typedef void (CDECL *IOS_BASE_event_callback)(IOS_BASE_event, struct _ios_base*, int);
477 typedef struct _fnarray {
478 struct _fnarray *next;
479 int index;
480 IOS_BASE_event_callback event_handler;
481 } IOS_BASE_fnarray;
483 /* class ios_base */
484 typedef struct _ios_base {
485 const vtable_ptr *vtable;
486 MSVCP_size_t stdstr;
487 IOSB_iostate state;
488 IOSB_iostate except;
489 IOSB_fmtflags fmtfl;
490 streamsize prec;
491 streamsize wide;
492 IOS_BASE_iosarray *arr;
493 IOS_BASE_fnarray *calls;
494 locale *loc;
495 } ios_base;
497 /* class basic_streambuf<char> */
498 typedef struct {
499 const vtable_ptr *vtable;
500 mutex lock;
501 char *rbuf;
502 char *wbuf;
503 char **prbuf;
504 char **pwbuf;
505 char *rpos;
506 char *wpos;
507 char **prpos;
508 char **pwpos;
509 int rsize;
510 int wsize;
511 int *prsize;
512 int *pwsize;
513 locale *loc;
514 } basic_streambuf_char;
516 typedef struct {
517 basic_streambuf_char *strbuf;
518 MSVCP_bool got;
519 char val;
520 } istreambuf_iterator_char;
522 typedef struct {
523 MSVCP_bool failed;
524 basic_streambuf_char *strbuf;
525 } ostreambuf_iterator_char;
527 int __thiscall basic_streambuf_char_sgetc(basic_streambuf_char*);
528 int __thiscall basic_streambuf_char_sbumpc(basic_streambuf_char*);
529 int __thiscall basic_streambuf_char_sputc(basic_streambuf_char*, char);
531 /* class basic_streambuf<wchar> */
532 typedef struct {
533 const vtable_ptr *vtable;
534 mutex lock;
535 wchar_t *rbuf;
536 wchar_t *wbuf;
537 wchar_t **prbuf;
538 wchar_t **pwbuf;
539 wchar_t *rpos;
540 wchar_t *wpos;
541 wchar_t **prpos;
542 wchar_t **pwpos;
543 int rsize;
544 int wsize;
545 int *prsize;
546 int *pwsize;
547 locale *loc;
548 } basic_streambuf_wchar;
550 typedef struct {
551 basic_streambuf_wchar *strbuf;
552 MSVCP_bool got;
553 wchar_t val;
554 } istreambuf_iterator_wchar;
556 typedef struct {
557 MSVCP_bool failed;
558 basic_streambuf_wchar *strbuf;
559 } ostreambuf_iterator_wchar;
561 unsigned short __thiscall basic_streambuf_wchar_sgetc(basic_streambuf_wchar*);
562 unsigned short __thiscall basic_streambuf_wchar_sbumpc(basic_streambuf_wchar*);
563 unsigned short __thiscall basic_streambuf_wchar_sputc(basic_streambuf_wchar*, wchar_t);
565 /* class num_get<char> */
566 typedef struct {
567 locale_facet facet;
568 _Cvtvec cvt;
569 } num_get;
571 num_get* num_get_char_use_facet(const locale*);
572 istreambuf_iterator_char* __thiscall num_get_char_get_long(const num_get*, istreambuf_iterator_char*,
573 istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, LONG*);
574 istreambuf_iterator_char* __thiscall num_get_char_get_ushort(const num_get*, istreambuf_iterator_char*,
575 istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, unsigned short*);
576 istreambuf_iterator_char* __thiscall num_get_char_get_uint(const num_get*, istreambuf_iterator_char*,
577 istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, unsigned int*);
578 istreambuf_iterator_char* __thiscall num_get_char_get_ulong(const num_get*, istreambuf_iterator_char*,
579 istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, ULONG*);
580 istreambuf_iterator_char* __thiscall num_get_char_get_float(const num_get*, istreambuf_iterator_char*,
581 istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, float*);
582 istreambuf_iterator_char *__thiscall num_get_char_get_double(const num_get*, istreambuf_iterator_char*,
583 istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, double*);
584 istreambuf_iterator_char *__thiscall num_get_char_get_ldouble(const num_get*, istreambuf_iterator_char*,
585 istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, double*);
586 istreambuf_iterator_char *__thiscall num_get_char_get_void(const num_get*, istreambuf_iterator_char*,
587 istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, void**);
588 istreambuf_iterator_char *__thiscall num_get_char_get_int64(const num_get*, istreambuf_iterator_char*,
589 istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, LONGLONG*);
590 istreambuf_iterator_char *__thiscall num_get_char_get_uint64(const num_get*, istreambuf_iterator_char*,
591 istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, ULONGLONG*);
592 istreambuf_iterator_char *__thiscall num_get_char_get_bool(const num_get*, istreambuf_iterator_char*,
593 istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, MSVCP_bool*);
595 num_get* num_get_wchar_use_facet(const locale*);
596 istreambuf_iterator_wchar* __thiscall num_get_wchar_get_long(const num_get*, istreambuf_iterator_wchar*,
597 istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, LONG*);
598 istreambuf_iterator_wchar* __thiscall num_get_wchar_get_ushort(const num_get*, istreambuf_iterator_wchar*,
599 istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, unsigned short*);
600 istreambuf_iterator_wchar* __thiscall num_get_wchar_get_uint(const num_get*, istreambuf_iterator_wchar*,
601 istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, unsigned int*);
602 istreambuf_iterator_wchar* __thiscall num_get_wchar_get_ulong(const num_get*, istreambuf_iterator_wchar*,
603 istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, ULONG*);
604 istreambuf_iterator_wchar* __thiscall num_get_wchar_get_float(const num_get*, istreambuf_iterator_wchar*,
605 istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, float*);
606 istreambuf_iterator_wchar *__thiscall num_get_wchar_get_double(const num_get*, istreambuf_iterator_wchar*,
607 istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, double*);
608 istreambuf_iterator_wchar *__thiscall num_get_wchar_get_ldouble(const num_get*, istreambuf_iterator_wchar*,
609 istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, double*);
610 istreambuf_iterator_wchar *__thiscall num_get_wchar_get_void(const num_get*, istreambuf_iterator_wchar*,
611 istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, void**);
612 istreambuf_iterator_wchar *__thiscall num_get_wchar_get_int64(const num_get*, istreambuf_iterator_wchar*,
613 istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, LONGLONG*);
614 istreambuf_iterator_wchar *__thiscall num_get_wchar_get_uint64(const num_get*, istreambuf_iterator_wchar*,
615 istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, ULONGLONG*);
616 istreambuf_iterator_wchar *__thiscall num_get_wchar_get_bool(const num_get*, istreambuf_iterator_wchar*,
617 istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, MSVCP_bool*);
619 /* class num_put<char> */
620 /* class num_put<wchar> */
621 typedef struct {
622 locale_facet facet;
623 _Cvtvec cvt;
624 } num_put;
626 num_put* num_put_char_use_facet(const locale*);
627 ostreambuf_iterator_char* __thiscall num_put_char_put_long(const num_put*, ostreambuf_iterator_char*,
628 ostreambuf_iterator_char, ios_base*, char, LONG);
629 ostreambuf_iterator_char* __thiscall num_put_char_put_ulong(const num_put*, ostreambuf_iterator_char*,
630 ostreambuf_iterator_char, ios_base*, char, ULONG);
631 ostreambuf_iterator_char* __thiscall num_put_char_put_double(const num_put*, ostreambuf_iterator_char*,
632 ostreambuf_iterator_char, ios_base*, char, double);
633 ostreambuf_iterator_char* __thiscall num_put_char_put_ldouble(const num_put*, ostreambuf_iterator_char*,
634 ostreambuf_iterator_char, ios_base*, char, double);
635 ostreambuf_iterator_char* __thiscall num_put_char_put_ptr(const num_put*, ostreambuf_iterator_char*,
636 ostreambuf_iterator_char, ios_base*, char, const void*);
637 ostreambuf_iterator_char* __thiscall num_put_char_put_int64(const num_put*, ostreambuf_iterator_char*,
638 ostreambuf_iterator_char, ios_base*, char, __int64);
639 ostreambuf_iterator_char* __thiscall num_put_char_put_uint64(const num_put*, ostreambuf_iterator_char*,
640 ostreambuf_iterator_char, ios_base*, char, unsigned __int64);
641 ostreambuf_iterator_char* __thiscall num_put_char_put_bool(const num_put*, ostreambuf_iterator_char*,
642 ostreambuf_iterator_char, ios_base*, char, MSVCP_bool);
644 num_put* num_put_wchar_use_facet(const locale*);
645 ostreambuf_iterator_wchar* __thiscall num_put_wchar_put_long(const num_put*, ostreambuf_iterator_wchar*,
646 ostreambuf_iterator_wchar, ios_base*, wchar_t, LONG);
647 ostreambuf_iterator_wchar* __thiscall num_put_wchar_put_ulong(const num_put*, ostreambuf_iterator_wchar*,
648 ostreambuf_iterator_wchar, ios_base*, wchar_t, ULONG);
649 ostreambuf_iterator_wchar* __thiscall num_put_wchar_put_double(const num_put*, ostreambuf_iterator_wchar*,
650 ostreambuf_iterator_wchar, ios_base*, wchar_t, double);
651 ostreambuf_iterator_wchar* __thiscall num_put_wchar_put_ldouble(const num_put*, ostreambuf_iterator_wchar*,
652 ostreambuf_iterator_wchar, ios_base*, wchar_t, double);
653 ostreambuf_iterator_wchar* __thiscall num_put_wchar_put_ptr(const num_put*, ostreambuf_iterator_wchar*,
654 ostreambuf_iterator_wchar, ios_base*, wchar_t, const void*);
655 ostreambuf_iterator_wchar* __thiscall num_put_wchar_put_int64(const num_put*, ostreambuf_iterator_wchar*,
656 ostreambuf_iterator_wchar, ios_base*, wchar_t, __int64);
657 ostreambuf_iterator_wchar* __thiscall num_put_wchar_put_uint64(const num_put*, ostreambuf_iterator_wchar*,
658 ostreambuf_iterator_wchar, ios_base*, wchar_t, unsigned __int64);
659 ostreambuf_iterator_wchar* __thiscall num_put_wchar_put_bool(const num_put*, ostreambuf_iterator_wchar*,
660 ostreambuf_iterator_wchar, ios_base*, wchar_t, MSVCP_bool);
662 void init_io(void);
663 void free_io(void);