msvcp60: Fixed basic_streambuf class structure.
[wine] / dlls / msvcp60 / msvcp.h
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 "stdlib.h"
20 #include "windef.h"
21 #include "cxx.h"
22
23 typedef unsigned char MSVCP_bool;
24 typedef SIZE_T MSVCP_size_t;
25 typedef SSIZE_T streamoff;
26 typedef SSIZE_T streamsize;
27
28 void __cdecl _invalid_parameter(const wchar_t*, const wchar_t*,
29         const wchar_t*, unsigned int, uintptr_t);
30 BOOL __cdecl __uncaught_exception(void);
31
32 extern void* (__cdecl *MSVCRT_operator_new)(MSVCP_size_t);
33 extern void (__cdecl *MSVCRT_operator_delete)(void*);
34
35 /* basic_string<char, char_traits<char>, allocator<char>> */
36 typedef struct
37 {
38     void *allocator;
39     char *ptr;
40     MSVCP_size_t size;
41     MSVCP_size_t res;
42 } basic_string_char;
43
44 basic_string_char* __thiscall basic_string_char_ctor(basic_string_char*);
45 basic_string_char* basic_string_char_ctor_cstr(basic_string_char*, const char*);
46 basic_string_char* basic_string_char_ctor_cstr_len(basic_string_char*, const char*, MSVCP_size_t);
47 basic_string_char* __thiscall basic_string_char_copy_ctor(basic_string_char*, const basic_string_char*);
48 void __thiscall basic_string_char_dtor(basic_string_char*);
49 const char* __thiscall basic_string_char_c_str(const basic_string_char*);
50 void basic_string_char_clear(basic_string_char*);
51 basic_string_char* __thiscall basic_string_char_append_ch(basic_string_char*, char);
52 MSVCP_size_t __thiscall basic_string_char_length(const basic_string_char*);
53
54 typedef struct
55 {
56     void *allocator;
57     wchar_t *ptr;
58     MSVCP_size_t size;
59     MSVCP_size_t res;
60 } basic_string_wchar;
61
62 basic_string_wchar* __thiscall basic_string_wchar_ctor(basic_string_wchar*);
63 basic_string_wchar* basic_string_wchar_ctor_cstr(basic_string_wchar*, const wchar_t*);
64 basic_string_wchar* basic_string_wchar_ctor_cstr_len(basic_string_wchar*, const wchar_t*, MSVCP_size_t);
65 void __thiscall basic_string_wchar_dtor(basic_string_wchar*);
66 const wchar_t* __thiscall basic_string_wchar_c_str(const basic_string_wchar*);
67 void basic_string_wchar_clear(basic_string_wchar*);
68 basic_string_wchar* __thiscall basic_string_wchar_append_ch(basic_string_wchar*, wchar_t);
69 MSVCP_size_t __thiscall basic_string_wchar_length(const basic_string_wchar*);
70
71 char* MSVCP_allocator_char_allocate(void*, MSVCP_size_t);
72 void MSVCP_allocator_char_deallocate(void*, char*, MSVCP_size_t);
73 MSVCP_size_t MSVCP_allocator_char_max_size(void*);
74 wchar_t* MSVCP_allocator_wchar_allocate(void*, MSVCP_size_t);
75 void MSVCP_allocator_wchar_deallocate(void*, wchar_t*, MSVCP_size_t);
76 MSVCP_size_t MSVCP_allocator_wchar_max_size(void*);
77
78 /* class locale::facet */
79 typedef struct {
80     const vtable_ptr *vtable;
81     MSVCP_size_t refs;
82 } locale_facet;
83
84 typedef enum {
85     CODECVT_ok      = 0,
86     CODECVT_partial = 1,
87     CODECVT_error   = 2,
88     CODECVT_noconv  = 3
89 } codecvt_base_result;
90
91 typedef struct {
92     LCID handle;
93     unsigned page;
94     const short *table;
95     int delfl;
96 } _Ctypevec;
97
98 /* class codecvt_base */
99 typedef struct {
100     locale_facet facet;
101 } codecvt_base;
102
103 /* class codecvt<char> */
104 typedef struct {
105     codecvt_base base;
106 } codecvt_char;
107
108 MSVCP_bool __thiscall codecvt_base_always_noconv(const codecvt_base*);
109 int codecvt_char_unshift(const codecvt_char*, int*, char*, char*, char**);
110 int __thiscall codecvt_char_out(const codecvt_char*, int*, const char*,
111         const char*, const char**, char*, char*, char**);
112 int __thiscall codecvt_char_in(const codecvt_char*, int*, const char*,
113         const char*, const char**, char*, char*, char**);
114 int __thiscall codecvt_base_max_length(const codecvt_base*);
115
116 typedef struct {
117     LCID handle;
118     unsigned page;
119 } _Cvtvec;
120
121 /* class codecvt<wchar> */
122 typedef struct {
123     codecvt_base base;
124     _Cvtvec cvt;
125 } codecvt_wchar;
126
127 int codecvt_wchar_unshift(const codecvt_wchar*, int*, char*, char*, char**);
128 int __thiscall codecvt_wchar_out(const codecvt_wchar*, int*, const wchar_t*,
129         const wchar_t*, const wchar_t**, char*, char*, char**);
130 int __thiscall codecvt_wchar_in(const codecvt_wchar*, int*, const char*,
131         const char*, const char**, wchar_t*, wchar_t*, wchar_t**);
132
133 /* class ctype_base */
134 typedef struct {
135     locale_facet facet;
136 } ctype_base;
137
138 /* class ctype<char> */
139 typedef struct {
140     ctype_base base;
141     _Ctypevec ctype;
142 } ctype_char;
143
144 MSVCP_bool __thiscall ctype_char_is_ch(const ctype_char*, short, char);
145 char __thiscall ctype_char_narrow_ch(const ctype_char*, char, char);
146 char __thiscall ctype_char_widen_ch(const ctype_char*, char);
147
148 /* class ctype<wchar> */
149 typedef struct {
150     ctype_base base;
151     _Ctypevec ctype;
152     _Cvtvec cvt;
153 } ctype_wchar;
154
155 MSVCP_bool __thiscall ctype_wchar_is_ch(const ctype_wchar*, short, wchar_t);
156 char __thiscall ctype_wchar_narrow_ch(const ctype_wchar*, wchar_t, char);
157 wchar_t __thiscall ctype_wchar_widen_ch(const ctype_wchar*, char);
158
159 /* class locale */
160 typedef struct
161 {
162     struct _locale__Locimp *ptr;
163 } locale;
164
165 locale* __thiscall locale_ctor(locale*);
166 locale* __thiscall locale_copy_ctor(locale*, const locale*);
167 locale* __thiscall locale_operator_assign(locale*, const locale*);
168 void __thiscall locale_dtor(locale*);
169 void free_locale(void);
170 codecvt_char* codecvt_char_use_facet(const locale*);
171 codecvt_wchar* codecvt_wchar_use_facet(const locale*);
172 codecvt_wchar* codecvt_short_use_facet(const locale*);
173 ctype_char* ctype_char_use_facet(const locale*);
174 ctype_wchar* ctype_wchar_use_facet(const locale*);
175 ctype_wchar* ctype_short_use_facet(const locale*);
176
177 /* class _Lockit */
178 typedef struct {
179     char empty_struct;
180 } _Lockit;
181
182 #define _LOCK_LOCALE 0
183 #define _LOCK_MALLOC 1
184 #define _LOCK_STREAM 2
185 #define _LOCK_DEBUG 3
186 #define _MAX_LOCK 4
187
188 void init_lockit(void);
189 void free_lockit(void);
190 _Lockit* __thiscall _Lockit_ctor_locktype(_Lockit*, int);
191 void __thiscall _Lockit_dtor(_Lockit*);
192
193 /* class mutex */
194 typedef struct {
195     void *mutex;
196 } mutex;
197
198 mutex* mutex_ctor(mutex*);
199 void mutex_dtor(mutex*);
200 void mutex_lock(mutex*);
201 void mutex_unlock(mutex*);
202
203 typedef enum {
204     FMTFLAG_skipws      = 0x0001,
205     FMTFLAG_unitbuf     = 0x0002,
206     FMTFLAG_uppercase   = 0x0004,
207     FMTFLAG_showbase    = 0x0008,
208     FMTFLAG_showpoint   = 0x0010,
209     FMTFLAG_showpos     = 0x0020,
210     FMTFLAG_left        = 0x0040,
211     FMTFLAG_right       = 0x0080,
212     FMTFLAG_internal    = 0x0100,
213     FMTFLAG_dec         = 0x0200,
214     FMTFLAG_oct         = 0x0400,
215     FMTFLAG_hex         = 0x0800,
216     FMTFLAG_scientific  = 0x1000,
217     FMTFLAG_fixed       = 0x2000,
218     FMTFLAG_hexfloat    = 0x3000,
219     FMTFLAG_boolalpha   = 0x4000,
220     FMTFLAG_stdio       = 0x8000,
221     FMTFLAG_adjustfield = FMTFLAG_left|FMTFLAG_right|FMTFLAG_internal,
222     FMTFLAG_basefield   = FMTFLAG_dec|FMTFLAG_oct|FMTFLAG_hex,
223     FMTFLAG_floatfield  = FMTFLAG_scientific|FMTFLAG_fixed,
224     FMTFLAG_mask        = 0xffff
225 } IOSB_fmtflags;
226
227 typedef enum {
228     OPENMODE_in         = 0x01,
229     OPENMODE_out        = 0x02,
230     OPENMODE_ate        = 0x04,
231     OPENMODE_app        = 0x08,
232     OPENMODE_trunc      = 0x10,
233     OPENMODE__Nocreate  = 0x40,
234     OPENMODE__Noreplace = 0x80,
235     OPENMODE_binary     = 0x20,
236     OPENMODE_mask       = 0xff
237 } IOSB_openmode;
238
239 typedef enum {
240     SEEKDIR_beg  = 0x0,
241     SEEKDIR_cur  = 0x1,
242     SEEKDIR_end  = 0x2,
243     SEEKDIR_mask = 0x3
244 } IOSB_seekdir;
245
246 typedef enum {
247     IOSTATE_goodbit   = 0x00,
248     IOSTATE_eofbit    = 0x01,
249     IOSTATE_failbit   = 0x02,
250     IOSTATE_badbit    = 0x04,
251     IOSTATE__Hardfail = 0x10,
252     IOSTATE_mask      = 0x17
253 } IOSB_iostate;
254
255 typedef struct _iosarray {
256     struct _iosarray *next;
257     int index;
258     int long_val;
259     void *ptr_val;
260 } IOS_BASE_iosarray;
261
262 typedef enum {
263     EVENT_erase_event,
264     EVENT_imbue_event,
265     EVENT_copyfmt_event
266 } IOS_BASE_event;
267
268 struct _ios_base;
269 typedef void (CDECL *IOS_BASE_event_callback)(IOS_BASE_event, struct _ios_base*, int);
270 typedef struct _fnarray {
271     struct _fnarray *next;
272     int index;
273     IOS_BASE_event_callback event_handler;
274 } IOS_BASE_fnarray;
275
276 /* class ios_base */
277 typedef struct _ios_base {
278     const vtable_ptr *vtable;
279     MSVCP_size_t stdstr;
280     IOSB_iostate state;
281     IOSB_iostate except;
282     IOSB_fmtflags fmtfl;
283     streamsize prec;
284     streamsize wide;
285     IOS_BASE_iosarray *arr;
286     IOS_BASE_fnarray *calls;
287     locale *loc;
288 } ios_base;
289
290 /* class basic_streambuf<char> */
291 typedef struct {
292     const vtable_ptr *vtable;
293     char *rbuf;
294     char *wbuf;
295     char **prbuf;
296     char **pwbuf;
297     char *rpos;
298     char *wpos;
299     char **prpos;
300     char **pwpos;
301     int rsize;
302     int wsize;
303     int *prsize;
304     int *pwsize;
305     locale loc;
306 } basic_streambuf_char;
307
308 typedef struct {
309     basic_streambuf_char *strbuf;
310     MSVCP_bool      got;
311     char            val;
312 } istreambuf_iterator_char;
313
314 typedef struct {
315     MSVCP_bool failed;
316     basic_streambuf_char *strbuf;
317 } ostreambuf_iterator_char;
318
319 int __thiscall basic_streambuf_char_sgetc(basic_streambuf_char*);
320 int __thiscall basic_streambuf_char_sbumpc(basic_streambuf_char*);
321 int __thiscall basic_streambuf_char_sputc(basic_streambuf_char*, char);
322
323 /* class basic_streambuf<wchar> */
324 typedef struct {
325     const vtable_ptr *vtable;
326     mutex lock;
327     wchar_t *rbuf;
328     wchar_t *wbuf;
329     wchar_t **prbuf;
330     wchar_t **pwbuf;
331     wchar_t *rpos;
332     wchar_t *wpos;
333     wchar_t **prpos;
334     wchar_t **pwpos;
335     int rsize;
336     int wsize;
337     int *prsize;
338     int *pwsize;
339     locale loc;
340 } basic_streambuf_wchar;
341
342 typedef struct {
343     basic_streambuf_wchar *strbuf;
344     MSVCP_bool got;
345     wchar_t val;
346 } istreambuf_iterator_wchar;
347
348 typedef struct {
349     MSVCP_bool failed;
350     basic_streambuf_wchar *strbuf;
351 } ostreambuf_iterator_wchar;
352
353 unsigned short __thiscall basic_streambuf_wchar_sgetc(basic_streambuf_wchar*);
354 unsigned short __thiscall basic_streambuf_wchar_sbumpc(basic_streambuf_wchar*);
355 unsigned short __thiscall basic_streambuf_wchar_sputc(basic_streambuf_wchar*, wchar_t);
356
357 /* class num_get<char> */
358 typedef struct {
359     locale_facet facet;
360     _Cvtvec cvt;
361 } num_get;
362
363 num_get* num_get_char_use_facet(const locale*);
364 istreambuf_iterator_char* __thiscall num_get_char_get_long(const num_get*, istreambuf_iterator_char*,
365         istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, LONG*);
366 istreambuf_iterator_char* __thiscall num_get_char_get_ushort(const num_get*, istreambuf_iterator_char*,
367         istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, unsigned short*);
368 istreambuf_iterator_char* __thiscall num_get_char_get_uint(const num_get*, istreambuf_iterator_char*,
369         istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, unsigned int*);
370 istreambuf_iterator_char* __thiscall num_get_char_get_ulong(const num_get*, istreambuf_iterator_char*,
371         istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, ULONG*);
372 istreambuf_iterator_char* __thiscall num_get_char_get_float(const num_get*, istreambuf_iterator_char*,
373         istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, float*);
374 istreambuf_iterator_char *__thiscall num_get_char_get_double(const num_get*, istreambuf_iterator_char*,
375         istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, double*);
376 istreambuf_iterator_char *__thiscall num_get_char_get_ldouble(const num_get*, istreambuf_iterator_char*,
377         istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, double*);
378 istreambuf_iterator_char *__thiscall num_get_char_get_void(const num_get*, istreambuf_iterator_char*,
379         istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, void**);
380 istreambuf_iterator_char *__thiscall num_get_char_get_int64(const num_get*, istreambuf_iterator_char*,
381         istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, LONGLONG*);
382 istreambuf_iterator_char *__thiscall num_get_char_get_uint64(const num_get*, istreambuf_iterator_char*,
383         istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, ULONGLONG*);
384 istreambuf_iterator_char *__thiscall num_get_char_get_bool(const num_get*, istreambuf_iterator_char*,
385         istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, MSVCP_bool*);
386
387 num_get* num_get_short_use_facet(const locale*);
388 istreambuf_iterator_wchar* __thiscall num_get_wchar_get_long(const num_get*, istreambuf_iterator_wchar*,
389         istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, LONG*);
390 istreambuf_iterator_wchar* __thiscall num_get_wchar_get_ushort(const num_get*, istreambuf_iterator_wchar*,
391         istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, unsigned short*);
392 istreambuf_iterator_wchar* __thiscall num_get_wchar_get_uint(const num_get*, istreambuf_iterator_wchar*,
393         istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, unsigned int*);
394 istreambuf_iterator_wchar* __thiscall num_get_wchar_get_ulong(const num_get*, istreambuf_iterator_wchar*,
395         istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, ULONG*);
396 istreambuf_iterator_wchar* __thiscall num_get_wchar_get_float(const num_get*, istreambuf_iterator_wchar*,
397         istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, float*);
398 istreambuf_iterator_wchar *__thiscall num_get_wchar_get_double(const num_get*, istreambuf_iterator_wchar*,
399         istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, double*);
400 istreambuf_iterator_wchar *__thiscall num_get_wchar_get_ldouble(const num_get*, istreambuf_iterator_wchar*,
401         istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, double*);
402 istreambuf_iterator_wchar *__thiscall num_get_wchar_get_void(const num_get*, istreambuf_iterator_wchar*,
403         istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, void**);
404 istreambuf_iterator_wchar *__thiscall num_get_wchar_get_int64(const num_get*, istreambuf_iterator_wchar*,
405         istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, LONGLONG*);
406 istreambuf_iterator_wchar *__thiscall num_get_wchar_get_uint64(const num_get*, istreambuf_iterator_wchar*,
407         istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, ULONGLONG*);
408 istreambuf_iterator_wchar *__thiscall num_get_wchar_get_bool(const num_get*, istreambuf_iterator_wchar*,
409         istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, MSVCP_bool*);
410
411 /* class num_put<char> */
412 /* class num_put<wchar> */
413 typedef struct {
414     locale_facet facet;
415     _Cvtvec cvt;
416 } num_put;
417
418 num_put* num_put_char_use_facet(const locale*);
419 ostreambuf_iterator_char* __thiscall num_put_char_put_long(const num_put*, ostreambuf_iterator_char*,
420         ostreambuf_iterator_char, ios_base*, char, LONG);
421 ostreambuf_iterator_char* __thiscall num_put_char_put_ulong(const num_put*, ostreambuf_iterator_char*,
422         ostreambuf_iterator_char, ios_base*, char, ULONG);
423 ostreambuf_iterator_char* __thiscall num_put_char_put_double(const num_put*, ostreambuf_iterator_char*,
424         ostreambuf_iterator_char, ios_base*, char, double);
425 ostreambuf_iterator_char* __thiscall num_put_char_put_ldouble(const num_put*, ostreambuf_iterator_char*,
426         ostreambuf_iterator_char, ios_base*, char, double);
427 ostreambuf_iterator_char* __thiscall num_put_char_put_ptr(const num_put*, ostreambuf_iterator_char*,
428         ostreambuf_iterator_char, ios_base*, char, const void*);
429 ostreambuf_iterator_char* __thiscall num_put_char_put_int64(const num_put*, ostreambuf_iterator_char*,
430         ostreambuf_iterator_char, ios_base*, char, __int64);
431 ostreambuf_iterator_char* __thiscall num_put_char_put_uint64(const num_put*, ostreambuf_iterator_char*,
432         ostreambuf_iterator_char, ios_base*, char, unsigned __int64);
433 ostreambuf_iterator_char* __thiscall num_put_char_put_bool(const num_put*, ostreambuf_iterator_char*,
434         ostreambuf_iterator_char, ios_base*, char, MSVCP_bool);
435
436 num_put* num_put_short_use_facet(const locale*);
437 ostreambuf_iterator_wchar* __thiscall num_put_wchar_put_long(const num_put*, ostreambuf_iterator_wchar*,
438         ostreambuf_iterator_wchar, ios_base*, wchar_t, LONG);
439 ostreambuf_iterator_wchar* __thiscall num_put_wchar_put_ulong(const num_put*, ostreambuf_iterator_wchar*,
440         ostreambuf_iterator_wchar, ios_base*, wchar_t, ULONG);
441 ostreambuf_iterator_wchar* __thiscall num_put_wchar_put_double(const num_put*, ostreambuf_iterator_wchar*,
442         ostreambuf_iterator_wchar, ios_base*, wchar_t, double);
443 ostreambuf_iterator_wchar* __thiscall num_put_wchar_put_ldouble(const num_put*, ostreambuf_iterator_wchar*,
444         ostreambuf_iterator_wchar, ios_base*, wchar_t, double);
445 ostreambuf_iterator_wchar* __thiscall num_put_wchar_put_ptr(const num_put*, ostreambuf_iterator_wchar*,
446         ostreambuf_iterator_wchar, ios_base*, wchar_t, const void*);
447 ostreambuf_iterator_wchar* __thiscall num_put_wchar_put_int64(const num_put*, ostreambuf_iterator_wchar*,
448         ostreambuf_iterator_wchar, ios_base*, wchar_t, __int64);
449 ostreambuf_iterator_wchar* __thiscall num_put_wchar_put_uint64(const num_put*, ostreambuf_iterator_wchar*,
450         ostreambuf_iterator_wchar, ios_base*, wchar_t, unsigned __int64);
451 ostreambuf_iterator_wchar* __thiscall num_put_wchar_put_bool(const num_put*, ostreambuf_iterator_wchar*,
452         ostreambuf_iterator_wchar, ios_base*, wchar_t, MSVCP_bool);
453
454 void init_exception(void*);
455 void init_locale(void*);
456 void init_io(void*);
457 void free_io(void);