2011-05-27 12:34:27 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2011 Piotr Caban for CodeWeavers
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
2011-08-23 09:50:56 +00:00
|
|
|
#include <stdio.h>
|
2012-06-06 12:50:59 +00:00
|
|
|
#include <limits.h>
|
2012-06-12 16:13:06 +00:00
|
|
|
#include <share.h>
|
2011-05-27 12:34:27 +00:00
|
|
|
|
|
|
|
#include "msvcp90.h"
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "wine/debug.h"
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(msvcp90);
|
|
|
|
|
|
|
|
/* ?_Index@ios_base@std@@0HA */
|
|
|
|
int ios_base_Index = 0;
|
|
|
|
/* ?_Sync@ios_base@std@@0_NA */
|
|
|
|
MSVCP_bool ios_base_Sync = FALSE;
|
|
|
|
|
2011-08-23 09:50:56 +00:00
|
|
|
typedef struct {
|
|
|
|
streamoff off;
|
|
|
|
__int64 DECLSPEC_ALIGN(8) pos;
|
|
|
|
int state;
|
|
|
|
} fpos_int;
|
|
|
|
|
|
|
|
static inline const char* debugstr_fpos_int(fpos_int *fpos)
|
|
|
|
{
|
2012-06-06 12:49:05 +00:00
|
|
|
return wine_dbg_sprintf("fpos(%ld %s %d)", fpos->off, wine_dbgstr_longlong(fpos->pos), fpos->state);
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-06-15 09:08:31 +00:00
|
|
|
typedef struct {
|
|
|
|
void (__cdecl *pfunc)(ios_base*, streamsize);
|
|
|
|
streamsize arg;
|
|
|
|
} manip_streamsize;
|
|
|
|
|
2012-06-12 16:13:06 +00:00
|
|
|
typedef enum {
|
|
|
|
INITFL_new = 0,
|
|
|
|
INITFL_open = 1,
|
|
|
|
INITFL_close = 2
|
|
|
|
} basic_filebuf__Initfl;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
basic_streambuf_char base;
|
|
|
|
codecvt_char *cvt;
|
|
|
|
char putback;
|
|
|
|
MSVCP_bool wrotesome;
|
|
|
|
int state;
|
|
|
|
MSVCP_bool close;
|
|
|
|
FILE *file;
|
|
|
|
} basic_filebuf_char;
|
|
|
|
|
2011-05-27 12:35:40 +00:00
|
|
|
typedef struct {
|
2012-03-30 08:35:20 +00:00
|
|
|
ios_base base;
|
2011-08-23 09:50:56 +00:00
|
|
|
basic_streambuf_char *strbuf;
|
2012-03-30 08:35:20 +00:00
|
|
|
struct _basic_ostream_char *stream;
|
2011-05-27 12:35:40 +00:00
|
|
|
char fillch;
|
|
|
|
} basic_ios_char;
|
|
|
|
|
2012-01-05 20:22:54 +00:00
|
|
|
typedef struct {
|
2012-03-30 08:35:33 +00:00
|
|
|
ios_base base;
|
|
|
|
basic_streambuf_wchar *strbuf;
|
|
|
|
struct _basic_ostream_wchar *stream;
|
|
|
|
wchar_t fillch;
|
2012-01-05 20:22:54 +00:00
|
|
|
} basic_ios_wchar;
|
|
|
|
|
2012-03-30 08:35:20 +00:00
|
|
|
typedef struct _basic_ostream_char {
|
|
|
|
const int *vbtable;
|
2012-06-01 15:03:36 +00:00
|
|
|
/* virtual inheritance
|
2012-06-13 13:22:29 +00:00
|
|
|
* basic_ios_char basic_ios;
|
2012-06-01 15:03:36 +00:00
|
|
|
*/
|
2011-08-24 12:38:11 +00:00
|
|
|
} basic_ostream_char;
|
|
|
|
|
2012-03-30 08:35:33 +00:00
|
|
|
typedef struct _basic_ostream_wchar {
|
|
|
|
const int *vbtable;
|
2012-06-01 15:03:36 +00:00
|
|
|
/* virtual inheritance
|
2012-06-13 13:22:29 +00:00
|
|
|
* basic_ios_char basic_ios;
|
2012-06-01 15:03:36 +00:00
|
|
|
*/
|
2012-03-30 08:35:33 +00:00
|
|
|
} basic_ostream_wchar;
|
|
|
|
|
2012-06-06 12:50:59 +00:00
|
|
|
typedef struct {
|
|
|
|
const int *vbtable;
|
|
|
|
streamsize count;
|
|
|
|
/* virtual inheritance
|
2012-06-13 13:22:29 +00:00
|
|
|
* basic_ios_char basic_ios;
|
2012-06-06 12:50:59 +00:00
|
|
|
*/
|
|
|
|
} basic_istream_char;
|
|
|
|
|
2012-06-13 13:22:13 +00:00
|
|
|
typedef struct {
|
|
|
|
basic_istream_char base1;
|
|
|
|
basic_ostream_char base2;
|
|
|
|
/* virtual inheritance
|
|
|
|
* basic_ios_char basic_ios;
|
|
|
|
*/
|
|
|
|
} basic_iostream_char;
|
|
|
|
|
2012-06-13 13:22:29 +00:00
|
|
|
typedef struct {
|
|
|
|
basic_ostream_char base;
|
|
|
|
basic_filebuf_char filebuf;
|
|
|
|
/* virtual inheritance
|
|
|
|
* basic_ios_char basic_ios;
|
|
|
|
*/
|
|
|
|
} basic_ofstream_char;
|
|
|
|
|
2012-06-12 16:13:50 +00:00
|
|
|
typedef struct {
|
|
|
|
basic_istream_char base;
|
|
|
|
basic_filebuf_char filebuf;
|
|
|
|
/* virtual inheritance
|
2012-06-13 13:22:29 +00:00
|
|
|
* basic_ios_char basic_ios;
|
2012-06-12 16:13:50 +00:00
|
|
|
*/
|
|
|
|
} basic_ifstream_char;
|
|
|
|
|
2012-06-14 13:35:45 +00:00
|
|
|
typedef struct {
|
|
|
|
basic_iostream_char base;
|
|
|
|
basic_filebuf_char filebuf;
|
|
|
|
/* virtual inheritance
|
|
|
|
* basic_ios_char basic_ios;
|
|
|
|
*/
|
|
|
|
} basic_fstream_char;
|
|
|
|
|
2012-03-27 10:40:47 +00:00
|
|
|
extern const vtable_ptr MSVCP_iosb_vtable;
|
|
|
|
|
2011-05-27 12:34:27 +00:00
|
|
|
/* ??_7ios_base@std@@6B@ */
|
|
|
|
extern const vtable_ptr MSVCP_ios_base_vtable;
|
|
|
|
|
2011-05-27 12:35:40 +00:00
|
|
|
/* ??_7?$basic_ios@DU?$char_traits@D@std@@@std@@6B@ */
|
|
|
|
extern const vtable_ptr MSVCP_basic_ios_char_vtable;
|
|
|
|
|
2012-01-05 20:22:54 +00:00
|
|
|
/* ??_7?$basic_ios@_WU?$char_traits@_W@std@@@std@@6B@ */
|
|
|
|
extern const vtable_ptr MSVCP_basic_ios_wchar_vtable;
|
|
|
|
|
2012-03-30 08:35:49 +00:00
|
|
|
/* ??_7?$basic_ios@GU?$char_traits@G@std@@@std@@6B@ */
|
|
|
|
extern const vtable_ptr MSVCP_basic_ios_short_vtable;
|
|
|
|
|
2011-08-23 09:50:56 +00:00
|
|
|
/* ??_7?$basic_streambuf@DU?$char_traits@D@std@@@std@@6B@ */
|
|
|
|
extern const vtable_ptr MSVCP_basic_streambuf_char_vtable;
|
|
|
|
|
2012-03-28 09:21:26 +00:00
|
|
|
/* ??_7?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@6B@ */
|
|
|
|
extern const vtable_ptr MSVCP_basic_streambuf_wchar_vtable;
|
|
|
|
|
|
|
|
/* ??_7?$basic_streambuf@GU?$char_traits@G@std@@@std@@6B@ */
|
|
|
|
extern const vtable_ptr MSVCP_basic_streambuf_short_vtable;
|
|
|
|
|
2012-06-12 16:13:06 +00:00
|
|
|
/* ??_7?$basic_filebuf@DU?$char_traits@D@std@@@std@@6B@ */
|
|
|
|
extern const vtable_ptr MSVCP_basic_filebuf_char_vtable;
|
|
|
|
|
2012-06-06 12:50:59 +00:00
|
|
|
/* ??_8?$basic_ostream@DU?$char_traits@D@std@@@std@@7B@ */
|
|
|
|
const int basic_ostream_char_vbtable[] = {0, sizeof(basic_ostream_char)};
|
2011-08-24 12:38:11 +00:00
|
|
|
/* ??_7?$basic_ostream@DU?$char_traits@D@std@@@std@@6B@ */
|
|
|
|
extern const vtable_ptr MSVCP_basic_ostream_char_vtable;
|
|
|
|
|
2012-06-06 12:50:59 +00:00
|
|
|
/* ??_8?$basic_istream@DU?$char_traits@D@std@@@std@@7B@ */
|
|
|
|
const int basic_istream_char_vbtable[] = {0, sizeof(basic_istream_char)};
|
|
|
|
/* ??_7?$basic_istream@DU?$char_traits@D@std@@@std@@6B@ */
|
|
|
|
extern const vtable_ptr MSVCP_basic_istream_char_vtable;
|
|
|
|
|
2012-06-13 13:22:13 +00:00
|
|
|
/* ??_8?$basic_iostream@DU?$char_traits@D@std@@@std@@7B?$basic_istream@DU?$char_traits@D@std@@@1@@ */
|
|
|
|
const int basic_iostream_char_vbtable1[] = {0, sizeof(basic_iostream_char)};
|
|
|
|
/* ??_8?$basic_iostream@DU?$char_traits@D@std@@@std@@7B?$basic_ostream@DU?$char_traits@D@std@@@1@@ */
|
|
|
|
const int basic_iostream_char_vbtable2[] = {0, sizeof(basic_iostream_char)-FIELD_OFFSET(basic_iostream_char, base2)};
|
|
|
|
/* ??_7?$basic_iostream@DU?$char_traits@D@std@@@std@@6B@ */
|
|
|
|
extern const vtable_ptr MSVCP_basic_iostream_char_vtable;
|
|
|
|
|
2012-06-13 13:22:29 +00:00
|
|
|
/* ??_8?$basic_ofstream@DU?$char_traits@D@std@@@std@@7B@ */
|
|
|
|
const int basic_ofstream_char_vbtable[] = {0, sizeof(basic_ofstream_char)};
|
|
|
|
/* ??_7?$basic_ofstream@DU?$char_traits@D@std@@@std@@6B@ */
|
|
|
|
extern const vtable_ptr MSVCP_basic_ofstream_char_vtable;
|
|
|
|
|
2012-06-12 16:13:50 +00:00
|
|
|
/*??_8?$basic_ifstream@DU?$char_traits@D@std@@@std@@7B@ */
|
|
|
|
const int basic_ifstream_char_vbtable[] = {0, sizeof(basic_ifstream_char)};
|
|
|
|
/* ??_7?$basic_ifstream@DU?$char_traits@D@std@@@std@@6B@ */
|
|
|
|
extern const vtable_ptr MSVCP_basic_ifstream_char_vtable;
|
|
|
|
|
2012-06-14 13:35:45 +00:00
|
|
|
/* ??_8?$basic_fstream@DU?$char_traits@D@std@@@std@@7B?$basic_istream@DU?$char_traits@D@std@@@1@@ */
|
|
|
|
const int basic_fstream_char_vbtable1[] = {0, sizeof(basic_fstream_char)};
|
|
|
|
/* ??_8?$basic_fstream@DU?$char_traits@D@std@@@std@@7B?$basic_ostream@DU?$char_traits@D@std@@@1@@ */
|
|
|
|
const int basic_fstream_char_vbtable2[] = {0, sizeof(basic_fstream_char)-FIELD_OFFSET(basic_fstream_char, base.base2)};
|
|
|
|
/* ??_7?$basic_fstream@DU?$char_traits@D@std@@@std@@6B@ */
|
|
|
|
extern const vtable_ptr MSVCP_basic_fstream_char_vtable;
|
|
|
|
|
2012-06-12 16:13:27 +00:00
|
|
|
DEFINE_RTTI_DATA0(iosb, 0, ".?AV?$_Iosb@H@std@@");
|
|
|
|
DEFINE_RTTI_DATA1(ios_base, 0, &iosb_rtti_base_descriptor, ".?AV?$_Iosb@H@std@@");
|
|
|
|
DEFINE_RTTI_DATA2(basic_ios_char, 0, &ios_base_rtti_base_descriptor, &iosb_rtti_base_descriptor,
|
|
|
|
".?AV?$basic_ios@DU?$char_traits@D@std@@@std@@");
|
|
|
|
DEFINE_RTTI_DATA2(basic_ios_wchar, 0, &ios_base_rtti_base_descriptor, &iosb_rtti_base_descriptor,
|
|
|
|
".?AV?$basic_ios@_WU?$char_traits@_W@std@@@std@@");
|
|
|
|
DEFINE_RTTI_DATA2(basic_ios_short, 0, &ios_base_rtti_base_descriptor, &iosb_rtti_base_descriptor,
|
|
|
|
".?AV?$basic_ios@GU?$char_traits@G@std@@@std@@");
|
|
|
|
DEFINE_RTTI_DATA0(basic_streambuf_char, 0,
|
2011-12-19 14:55:16 +00:00
|
|
|
".?AV?$basic_streambuf@DU?$char_traits@D@std@@@std@@");
|
2012-06-12 16:13:27 +00:00
|
|
|
DEFINE_RTTI_DATA0(basic_streambuf_wchar, 0,
|
2012-03-28 09:21:26 +00:00
|
|
|
".?AV?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@");
|
2012-06-12 16:13:27 +00:00
|
|
|
DEFINE_RTTI_DATA0(basic_streambuf_short, 0,
|
2012-03-28 09:21:26 +00:00
|
|
|
".?AV?$basic_streambuf@GU?$char_traits@G@std@@@std@@");
|
2012-06-12 16:13:27 +00:00
|
|
|
DEFINE_RTTI_DATA1(basic_filebuf_char, 0, &basic_streambuf_char_rtti_base_descriptor,
|
|
|
|
".?AV?$basic_filebuf@DU?$char_traits@D@std@@@std@@");
|
|
|
|
DEFINE_RTTI_DATA3(basic_ostream_char, sizeof(basic_ostream_char), &basic_ios_char_rtti_base_descriptor,
|
2012-06-01 15:03:36 +00:00
|
|
|
&ios_base_rtti_base_descriptor, &iosb_rtti_base_descriptor,
|
|
|
|
".?AV?$basic_ostream@DU?$char_traits@D@std@@@std@@");
|
2012-06-12 16:13:27 +00:00
|
|
|
DEFINE_RTTI_DATA3(basic_istream_char, sizeof(basic_istream_char), &basic_ios_char_rtti_base_descriptor,
|
2012-06-06 12:50:59 +00:00
|
|
|
&ios_base_rtti_base_descriptor, &iosb_rtti_base_descriptor,
|
|
|
|
".?AV?$basic_istream@DU?$char_traits@D@std@@@std@@");
|
2012-06-13 13:22:13 +00:00
|
|
|
DEFINE_RTTI_DATA8(basic_iostream_char, sizeof(basic_iostream_char),
|
|
|
|
&basic_istream_char_rtti_base_descriptor, &basic_ios_char_rtti_base_descriptor,
|
|
|
|
&ios_base_rtti_base_descriptor, &iosb_rtti_base_descriptor,
|
|
|
|
&basic_ostream_char_rtti_base_descriptor, &basic_ios_char_rtti_base_descriptor,
|
|
|
|
&ios_base_rtti_base_descriptor, &iosb_rtti_base_descriptor,
|
|
|
|
".?AV?$basic_iostream@DU?$char_traits@D@std@@@std@@");
|
2012-06-13 13:22:29 +00:00
|
|
|
DEFINE_RTTI_DATA4(basic_ofstream_char, sizeof(basic_ofstream_char),
|
|
|
|
&basic_ostream_char_rtti_base_descriptor, &basic_ios_char_rtti_base_descriptor,
|
|
|
|
&ios_base_rtti_base_descriptor, &iosb_rtti_base_descriptor,
|
|
|
|
".?AV?$basic_ofstream@DU?$char_traits@D@std@@@std@@");
|
2012-06-12 16:13:50 +00:00
|
|
|
DEFINE_RTTI_DATA4(basic_ifstream_char, sizeof(basic_ifstream_char),
|
|
|
|
&basic_istream_char_rtti_base_descriptor, &basic_ios_char_rtti_base_descriptor,
|
|
|
|
&ios_base_rtti_base_descriptor, &iosb_rtti_base_descriptor,
|
|
|
|
".?AV?$basic_ifstream@DU?$char_traits@D@std@@@std@@");
|
2012-06-14 13:35:45 +00:00
|
|
|
DEFINE_RTTI_DATA9(basic_fstream_char, sizeof(basic_fstream_char), &basic_istream_char_rtti_base_descriptor,
|
|
|
|
&basic_istream_char_rtti_base_descriptor, &basic_ios_char_rtti_base_descriptor,
|
|
|
|
&ios_base_rtti_base_descriptor, &iosb_rtti_base_descriptor,
|
|
|
|
&basic_ostream_char_rtti_base_descriptor, &basic_ios_char_rtti_base_descriptor,
|
|
|
|
&ios_base_rtti_base_descriptor, &iosb_rtti_base_descriptor,
|
|
|
|
".?AV?$basic_fstream@DU?$char_traits@D@std@@@std@@");
|
2011-08-24 12:38:11 +00:00
|
|
|
|
2011-05-27 12:34:27 +00:00
|
|
|
#ifndef __GNUC__
|
|
|
|
void __asm_dummy_vtables(void) {
|
|
|
|
#endif
|
2012-03-27 10:40:47 +00:00
|
|
|
__ASM_VTABLE(iosb, "");
|
2011-05-27 12:34:27 +00:00
|
|
|
__ASM_VTABLE(ios_base, "");
|
2011-05-27 12:35:40 +00:00
|
|
|
__ASM_VTABLE(basic_ios_char, "");
|
2012-01-05 20:22:54 +00:00
|
|
|
__ASM_VTABLE(basic_ios_wchar, "");
|
2012-03-30 08:35:49 +00:00
|
|
|
__ASM_VTABLE(basic_ios_short, "");
|
2011-08-23 09:50:56 +00:00
|
|
|
__ASM_VTABLE(basic_streambuf_char,
|
2011-12-15 09:16:27 +00:00
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_char_overflow)
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_char_pbackfail)
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_char_showmanyc)
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_char_underflow)
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_char_uflow)
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_char_xsgetn)
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_char__Xsgetn_s)
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_char_xsputn)
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_char_seekoff)
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_char_seekpos)
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_char_setbuf)
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_char_sync)
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_char_imbue));
|
2012-03-28 09:21:26 +00:00
|
|
|
__ASM_VTABLE(basic_streambuf_wchar,
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_wchar_overflow)
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_wchar_pbackfail)
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_wchar_showmanyc)
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_wchar_underflow)
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_wchar_uflow)
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_wchar_xsgetn)
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_wchar__Xsgetn_s)
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_wchar_xsputn)
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_wchar_seekoff)
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_wchar_seekpos)
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_wchar_setbuf)
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_wchar_sync)
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_wchar_imbue));
|
|
|
|
__ASM_VTABLE(basic_streambuf_short,
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_wchar_overflow)
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_wchar_pbackfail)
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_wchar_showmanyc)
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_wchar_underflow)
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_wchar_uflow)
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_wchar_xsgetn)
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_wchar__Xsgetn_s)
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_wchar_xsputn)
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_wchar_seekoff)
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_wchar_seekpos)
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_wchar_setbuf)
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_wchar_sync)
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_wchar_imbue));
|
2012-06-12 16:13:06 +00:00
|
|
|
__ASM_VTABLE(basic_filebuf_char,
|
|
|
|
VTABLE_ADD_FUNC(basic_filebuf_char_overflow)
|
|
|
|
VTABLE_ADD_FUNC(basic_filebuf_char_pbackfail)
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_char_showmanyc)
|
|
|
|
VTABLE_ADD_FUNC(basic_filebuf_char_underflow)
|
|
|
|
VTABLE_ADD_FUNC(basic_filebuf_char_uflow)
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_char_xsgetn)
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_char__Xsgetn_s)
|
|
|
|
VTABLE_ADD_FUNC(basic_streambuf_char_xsputn)
|
|
|
|
VTABLE_ADD_FUNC(basic_filebuf_char_seekoff)
|
|
|
|
VTABLE_ADD_FUNC(basic_filebuf_char_seekpos)
|
|
|
|
VTABLE_ADD_FUNC(basic_filebuf_char_setbuf)
|
|
|
|
VTABLE_ADD_FUNC(basic_filebuf_char_sync)
|
|
|
|
VTABLE_ADD_FUNC(basic_filebuf_char_imbue));
|
2011-08-24 12:38:11 +00:00
|
|
|
__ASM_VTABLE(basic_ostream_char, "");
|
2012-06-06 12:50:59 +00:00
|
|
|
__ASM_VTABLE(basic_istream_char, "");
|
2012-06-13 13:22:13 +00:00
|
|
|
__ASM_VTABLE(basic_iostream_char, "");
|
2012-06-13 13:22:29 +00:00
|
|
|
__ASM_VTABLE(basic_ofstream_char, "");
|
2012-06-12 16:13:50 +00:00
|
|
|
__ASM_VTABLE(basic_ifstream_char, "");
|
2012-06-14 13:35:45 +00:00
|
|
|
__ASM_VTABLE(basic_fstream_char, "");
|
2011-05-27 12:34:27 +00:00
|
|
|
#ifndef __GNUC__
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?setp@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEXPAD00@Z */
|
|
|
|
/* ?setp@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IEAAXPEAD00@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_setp_next, 16)
|
|
|
|
void __thiscall basic_streambuf_char_setp_next(basic_streambuf_char *this, char *first, char *next, char *last)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
TRACE("(%p %p %p %p)\n", this, first, next, last);
|
2011-05-27 12:34:27 +00:00
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
this->wbuf = first;
|
|
|
|
this->wpos = next;
|
|
|
|
this->wsize = last-next;
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?setp@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEXPAD0@Z */
|
|
|
|
/* ?setp@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IEAAXPEAD0@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_setp, 12)
|
|
|
|
void __thiscall basic_streambuf_char_setp(basic_streambuf_char *this, char *first, char *last)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
basic_streambuf_char_setp_next(this, first, first, last);
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?setg@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEXPAD00@Z */
|
|
|
|
/* ?setg@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IEAAXPEAD00@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_setg, 16)
|
|
|
|
void __thiscall basic_streambuf_char_setg(basic_streambuf_char *this, char *first, char *next, char *last)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
TRACE("(%p %p %p %p)\n", this, first, next, last);
|
|
|
|
|
|
|
|
this->rbuf = first;
|
|
|
|
this->rpos = next;
|
|
|
|
this->rsize = last-next;
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?_Init@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEXXZ */
|
2012-03-28 09:21:26 +00:00
|
|
|
/* ?_Init@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IEAAXXZ */
|
2012-03-28 09:20:56 +00:00
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char__Init_empty, 4)
|
|
|
|
void __thiscall basic_streambuf_char__Init_empty(basic_streambuf_char *this)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
|
|
|
|
this->prbuf = &this->rbuf;
|
|
|
|
this->pwbuf = &this->wbuf;
|
|
|
|
this->prpos = &this->rpos;
|
|
|
|
this->pwpos = &this->wpos;
|
|
|
|
this->prsize = &this->rsize;
|
|
|
|
this->pwsize = &this->wsize;
|
|
|
|
|
|
|
|
basic_streambuf_char_setp(this, NULL, NULL);
|
|
|
|
basic_streambuf_char_setg(this, NULL, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??0?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAE@W4_Uninitialized@1@@Z */
|
|
|
|
/* ??0?$basic_streambuf@DU?$char_traits@D@std@@@std@@IEAA@W4_Uninitialized@1@@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_ctor_uninitialized, 8)
|
|
|
|
basic_streambuf_char* __thiscall basic_streambuf_char_ctor_uninitialized(basic_streambuf_char *this, int uninitialized)
|
|
|
|
{
|
|
|
|
TRACE("(%p %d)\n", this, uninitialized);
|
|
|
|
this->vtable = &MSVCP_basic_streambuf_char_vtable;
|
|
|
|
mutex_ctor(&this->lock);
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??0?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAE@XZ */
|
|
|
|
/* ??0?$basic_streambuf@DU?$char_traits@D@std@@@std@@IEAA@XZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_ctor, 4)
|
|
|
|
basic_streambuf_char* __thiscall basic_streambuf_char_ctor(basic_streambuf_char *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
|
|
|
|
this->vtable = &MSVCP_basic_streambuf_char_vtable;
|
|
|
|
mutex_ctor(&this->lock);
|
|
|
|
this->loc = MSVCRT_operator_new(sizeof(locale));
|
|
|
|
locale_ctor(this->loc);
|
|
|
|
basic_streambuf_char__Init_empty(this);
|
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??1?$basic_streambuf@DU?$char_traits@D@std@@@std@@UAE@XZ */
|
|
|
|
/* ??1?$basic_streambuf@DU?$char_traits@D@std@@@std@@UEAA@XZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_dtor, 4)
|
|
|
|
void __thiscall basic_streambuf_char_dtor(basic_streambuf_char *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
|
|
|
|
mutex_dtor(&this->lock);
|
|
|
|
locale_dtor(this->loc);
|
|
|
|
MSVCRT_operator_delete(this->loc);
|
|
|
|
}
|
|
|
|
|
|
|
|
DEFINE_THISCALL_WRAPPER(MSVCP_basic_streambuf_char_vector_dtor, 8)
|
|
|
|
basic_streambuf_char* __thiscall MSVCP_basic_streambuf_char_vector_dtor(basic_streambuf_char *this, unsigned int flags)
|
|
|
|
{
|
|
|
|
TRACE("(%p %x)\n", this, flags);
|
2011-05-27 12:34:27 +00:00
|
|
|
if(flags & 2) {
|
|
|
|
/* we have an array, with the number of elements stored before the first object */
|
|
|
|
int i, *ptr = (int *)this-1;
|
|
|
|
|
|
|
|
for(i=*ptr-1; i>=0; i--)
|
2012-03-28 09:20:56 +00:00
|
|
|
basic_streambuf_char_dtor(this+i);
|
2011-05-27 12:34:27 +00:00
|
|
|
MSVCRT_operator_delete(ptr);
|
|
|
|
} else {
|
2012-03-28 09:20:56 +00:00
|
|
|
basic_streambuf_char_dtor(this);
|
2011-05-27 12:34:27 +00:00
|
|
|
if(flags & 1)
|
|
|
|
MSVCRT_operator_delete(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?_Gnavail@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IBEHXZ */
|
|
|
|
/* ?_Gnavail@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IEBA_JXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char__Gnavail, 4)
|
|
|
|
streamsize __thiscall basic_streambuf_char__Gnavail(const basic_streambuf_char *this)
|
2012-03-27 10:40:47 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return *this->prpos ? *this->prsize : 0;
|
2012-03-27 10:40:47 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?_Gndec@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEPADXZ */
|
|
|
|
/* ?_Gndec@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IEAAPEADXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char__Gndec, 4)
|
|
|
|
char* __thiscall basic_streambuf_char__Gndec(basic_streambuf_char *this)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
(*this->prsize)++;
|
|
|
|
(*this->prpos)--;
|
|
|
|
return *this->prpos;
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?_Gninc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEPADXZ */
|
|
|
|
/* ?_Gninc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IEAAPEADXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char__Gninc, 4)
|
|
|
|
char* __thiscall basic_streambuf_char__Gninc(basic_streambuf_char *this)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
(*this->prsize)--;
|
|
|
|
return (*this->prpos)++;
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?_Gnpreinc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEPADXZ */
|
|
|
|
/* ?_Gnpreinc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IEAAPEADXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char__Gnpreinc, 4)
|
|
|
|
char* __thiscall basic_streambuf_char__Gnpreinc(basic_streambuf_char *this)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
(*this->prsize)--;
|
|
|
|
(*this->prpos)++;
|
|
|
|
return *this->prpos;
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?_Init@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEXPAPAD0PAH001@Z */
|
|
|
|
/* ?_Init@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IEAAXPEAPEAD0PEAH001@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char__Init, 28)
|
|
|
|
void __thiscall basic_streambuf_char__Init(basic_streambuf_char *this, char **gf, char **gn, int *gc, char **pf, char **pn, int *pc)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
TRACE("(%p %p %p %p %p %p %p)\n", this, gf, gn, gc, pf, pn, pc);
|
|
|
|
|
|
|
|
this->prbuf = gf;
|
|
|
|
this->pwbuf = pf;
|
|
|
|
this->prpos = gn;
|
|
|
|
this->pwpos = pn;
|
|
|
|
this->prsize = gc;
|
|
|
|
this->pwsize = pc;
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?_Lock@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEXXZ */
|
|
|
|
/* ?_Lock@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QEAAXXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char__Lock, 4)
|
|
|
|
void __thiscall basic_streambuf_char__Lock(basic_streambuf_char *this)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
mutex_lock(&this->lock);
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?_Pnavail@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IBEHXZ */
|
|
|
|
/* ?_Pnavail@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IEBA_JXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char__Pnavail, 4)
|
|
|
|
streamsize __thiscall basic_streambuf_char__Pnavail(const basic_streambuf_char *this)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return *this->pwpos ? *this->pwsize : 0;
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?_Pninc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEPADXZ */
|
|
|
|
/* ?_Pninc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IEAAPEADXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char__Pninc, 4)
|
|
|
|
char* __thiscall basic_streambuf_char__Pninc(basic_streambuf_char *this)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
(*this->pwsize)--;
|
|
|
|
return (*this->pwpos)++;
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?underflow@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEHXZ */
|
|
|
|
/* ?underflow@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MEAAHXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_underflow, 4)
|
|
|
|
#define call_basic_streambuf_char_underflow(this) CALL_VTBL_FUNC(this, 16, \
|
|
|
|
int, (basic_streambuf_char*), (this))
|
|
|
|
int __thiscall basic_streambuf_char_underflow(basic_streambuf_char *this)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return EOF;
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?uflow@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEHXZ */
|
|
|
|
/* ?uflow@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MEAAHXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_uflow, 4)
|
|
|
|
#define call_basic_streambuf_char_uflow(this) CALL_VTBL_FUNC(this, 20, \
|
|
|
|
int, (basic_streambuf_char*), (this))
|
|
|
|
int __thiscall basic_streambuf_char_uflow(basic_streambuf_char *this)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
|
|
|
|
if(call_basic_streambuf_char_underflow(this)==EOF)
|
|
|
|
return EOF;
|
|
|
|
|
|
|
|
ret = **this->prpos;
|
|
|
|
(*this->prsize)--;
|
|
|
|
(*this->prpos)++;
|
|
|
|
return ret;
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?_Xsgetn_s@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEHPADIH@Z */
|
|
|
|
/* ?_Xsgetn_s@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MEAA_JPEAD_K_J@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char__Xsgetn_s, 16)
|
|
|
|
#define call_basic_streambuf_char__Xsgetn_s(this, ptr, size, count) CALL_VTBL_FUNC(this, 28, \
|
|
|
|
streamsize, (basic_streambuf_char*, char*, MSVCP_size_t, streamsize), (this, ptr, size, count))
|
|
|
|
streamsize __thiscall basic_streambuf_char__Xsgetn_s(basic_streambuf_char *this, char *ptr, MSVCP_size_t size, streamsize count)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
streamsize copied, chunk;
|
|
|
|
|
2012-06-06 12:49:05 +00:00
|
|
|
TRACE("(%p %p %lu %ld)\n", this, ptr, size, count);
|
2012-03-28 09:20:56 +00:00
|
|
|
|
|
|
|
for(copied=0; copied<count && size;) {
|
|
|
|
chunk = basic_streambuf_char__Gnavail(this);
|
|
|
|
if(chunk > count-copied)
|
|
|
|
chunk = count-copied;
|
|
|
|
|
|
|
|
if(chunk) {
|
|
|
|
memcpy_s(ptr+copied, size, *this->prpos, chunk);
|
|
|
|
*this->prpos += chunk;
|
|
|
|
*this->prsize -= chunk;
|
|
|
|
copied += chunk;
|
|
|
|
size -= chunk;
|
|
|
|
}else if((ptr[copied] = call_basic_streambuf_char_uflow(this)) != EOF) {
|
|
|
|
copied++;
|
|
|
|
size--;
|
|
|
|
}else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return copied;
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?_Sgetn_s@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHPADIH@Z */
|
|
|
|
/* ?_Sgetn_s@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QEAA_JPEAD_K_J@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char__Sgetn_s, 16)
|
|
|
|
streamsize __thiscall basic_streambuf_char__Sgetn_s(basic_streambuf_char *this, char *ptr, MSVCP_size_t size, streamsize count)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-06-06 12:49:05 +00:00
|
|
|
TRACE("(%p %p %lu %ld)\n", this, ptr, size, count);
|
2012-03-28 09:20:56 +00:00
|
|
|
return call_basic_streambuf_char__Xsgetn_s(this, ptr, size, count);
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?_Unlock@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEXXZ */
|
|
|
|
/* ?_Unlock@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QEAAXXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char__Unlock, 4)
|
|
|
|
void __thiscall basic_streambuf_char__Unlock(basic_streambuf_char *this)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
mutex_unlock(&this->lock);
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?eback@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IBEPADXZ */
|
|
|
|
/* ?eback@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IEBAPEADXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_eback, 4)
|
|
|
|
char* __thiscall basic_streambuf_char_eback(const basic_streambuf_char *this)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return *this->prbuf;
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?gptr@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IBEPADXZ */
|
|
|
|
/* ?gptr@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IEBAPEADXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_gptr, 4)
|
|
|
|
char* __thiscall basic_streambuf_char_gptr(const basic_streambuf_char *this)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return *this->prpos;
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?egptr@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IBEPADXZ */
|
|
|
|
/* ?egptr@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IEBAPEADXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_egptr, 4)
|
|
|
|
char* __thiscall basic_streambuf_char_egptr(const basic_streambuf_char *this)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return *this->prpos+*this->prsize;
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?epptr@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IBEPADXZ */
|
|
|
|
/* ?epptr@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IEBAPEADXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_epptr, 4)
|
|
|
|
char* __thiscall basic_streambuf_char_epptr(const basic_streambuf_char *this)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return *this->pwpos+*this->pwsize;
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?gbump@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEXH@Z */
|
|
|
|
/* ?gbump@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IEAAXH@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_gbump, 8)
|
|
|
|
void __thiscall basic_streambuf_char_gbump(basic_streambuf_char *this, int off)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
TRACE("(%p %d)\n", this, off);
|
|
|
|
*this->prpos += off;
|
|
|
|
*this->prsize -= off;
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?getloc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QBE?AVlocale@2@XZ */
|
|
|
|
/* ?getloc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QEBA?AVlocale@2@XZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_getloc, 8)
|
|
|
|
locale* __thiscall basic_streambuf_char_getloc(const basic_streambuf_char *this, locale *ret)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return locale_copy_ctor(ret, this->loc);
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?imbue@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEXABVlocale@2@@Z */
|
|
|
|
/* ?imbue@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MEAAXAEBVlocale@2@@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_imbue, 8)
|
|
|
|
#define call_basic_streambuf_char_imbue(this, loc) CALL_VTBL_FUNC(this, 52, \
|
|
|
|
void, (basic_streambuf_char*, const locale*), (this, loc))
|
|
|
|
void __thiscall basic_streambuf_char_imbue(basic_streambuf_char *this, const locale *loc)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
TRACE("(%p %p)\n", this, loc);
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?overflow@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEHH@Z */
|
|
|
|
/* ?overflow@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MEAAHH@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_overflow, 8)
|
|
|
|
#define call_basic_streambuf_char_overflow(this, ch) CALL_VTBL_FUNC(this, 4, \
|
|
|
|
int, (basic_streambuf_char*, int), (this, ch))
|
|
|
|
int __thiscall basic_streambuf_char_overflow(basic_streambuf_char *this, int ch)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
TRACE("(%p %d)\n", this, ch);
|
|
|
|
return EOF;
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?pbackfail@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEHH@Z */
|
|
|
|
/* ?pbackfail@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MEAAHH@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_pbackfail, 8)
|
|
|
|
#define call_basic_streambuf_char_pbackfail(this, ch) CALL_VTBL_FUNC(this, 8, \
|
|
|
|
int, (basic_streambuf_char*, int), (this, ch))
|
|
|
|
int __thiscall basic_streambuf_char_pbackfail(basic_streambuf_char *this, int ch)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
TRACE("(%p %d)\n", this, ch);
|
|
|
|
return EOF;
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?pbase@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IBEPADXZ */
|
|
|
|
/* ?pbase@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IEBAPEADXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_pbase, 4)
|
|
|
|
char* __thiscall basic_streambuf_char_pbase(const basic_streambuf_char *this)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return *this->pwbuf;
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?pbump@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEXH@Z */
|
|
|
|
/* ?pbump@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IEAAXH@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_pbump, 8)
|
|
|
|
void __thiscall basic_streambuf_char_pbump(basic_streambuf_char *this, int off)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
TRACE("(%p %d)\n", this, off);
|
|
|
|
*this->pwpos += off;
|
|
|
|
*this->pwsize -= off;
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?pptr@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IBEPADXZ */
|
|
|
|
/* ?pptr@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IEBAPEADXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_pptr, 4)
|
|
|
|
char* __thiscall basic_streambuf_char_pptr(const basic_streambuf_char *this)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return *this->pwpos;
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?pubimbue@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAE?AVlocale@2@ABV32@@Z */
|
|
|
|
/* ?pubimbue@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QEAA?AVlocale@2@AEBV32@@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_pubimbue, 12)
|
|
|
|
locale* __thiscall basic_streambuf_char_pubimbue(basic_streambuf_char *this, locale *ret, const locale *loc)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
TRACE("(%p %p)\n", this, loc);
|
|
|
|
memcpy(ret, this->loc, sizeof(locale));
|
|
|
|
call_basic_streambuf_char_imbue(this, loc);
|
|
|
|
locale_copy_ctor(this->loc, loc);
|
|
|
|
return ret;
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?seekoff@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAE?AV?$fpos@H@2@JHH@Z */
|
|
|
|
/* ?seekoff@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MEAA?AV?$fpos@H@2@_JHH@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_seekoff, 20)
|
|
|
|
#define call_basic_streambuf_char_seekoff(this, ret, off, way, mode) CALL_VTBL_FUNC(this, 36, \
|
|
|
|
fpos_int*, (basic_streambuf_char*, fpos_int*, streamoff, int, int), (this, ret, off, way, mode))
|
|
|
|
fpos_int* __thiscall basic_streambuf_char_seekoff(basic_streambuf_char *this,
|
|
|
|
fpos_int *ret, streamoff off, int way, int mode)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-06-06 12:49:05 +00:00
|
|
|
TRACE("(%p %ld %d %d)\n", this, off, way, mode);
|
2012-03-28 09:20:56 +00:00
|
|
|
ret->off = 0;
|
|
|
|
ret->pos = -1;
|
|
|
|
ret->state = 0;
|
2011-05-27 12:34:27 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?pubseekoff@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAE?AV?$fpos@H@2@JHH@Z */
|
|
|
|
/* ?pubseekoff@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QEAA?AV?$fpos@H@2@_JHH@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_pubseekoff, 20)
|
|
|
|
fpos_int* __thiscall basic_streambuf_char_pubseekoff(basic_streambuf_char *this,
|
|
|
|
fpos_int *ret, streamoff off, int way, int mode)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-06-06 12:49:05 +00:00
|
|
|
TRACE("(%p %ld %d %d)\n", this, off, way, mode);
|
2012-03-28 09:20:56 +00:00
|
|
|
return call_basic_streambuf_char_seekoff(this, ret, off, way, mode);
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?pubseekoff@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAE?AV?$fpos@H@2@JII@Z */
|
|
|
|
/* ?pubseekoff@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QEAA?AV?$fpos@H@2@_JII@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_pubseekoff_old, 20)
|
|
|
|
fpos_int* __thiscall basic_streambuf_char_pubseekoff_old(basic_streambuf_char *this,
|
|
|
|
fpos_int *ret, streamoff off, unsigned int way, unsigned int mode)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-06-06 12:49:05 +00:00
|
|
|
TRACE("(%p %ld %d %d)\n", this, off, way, mode);
|
2012-03-28 09:20:56 +00:00
|
|
|
return basic_streambuf_char_pubseekoff(this, ret, off, way, mode);
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?seekpos@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAE?AV?$fpos@H@2@V32@H@Z */
|
|
|
|
/* ?seekpos@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MEAA?AV?$fpos@H@2@V32@H@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_seekpos, 36)
|
|
|
|
#define call_basic_streambuf_char_seekpos(this, ret, pos, mode) CALL_VTBL_FUNC(this, 40, \
|
|
|
|
fpos_int*, (basic_streambuf_char*, fpos_int*, fpos_int, int), (this, ret, pos, mode))
|
|
|
|
fpos_int* __thiscall basic_streambuf_char_seekpos(basic_streambuf_char *this,
|
|
|
|
fpos_int *ret, fpos_int pos, int mode)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
TRACE("(%p %s %d)\n", this, debugstr_fpos_int(&pos), mode);
|
|
|
|
ret->off = 0;
|
|
|
|
ret->pos = -1;
|
|
|
|
ret->state = 0;
|
|
|
|
return ret;
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?pubseekpos@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAE?AV?$fpos@H@2@V32@H@Z */
|
|
|
|
/* ?pubseekpos@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QEAA?AV?$fpos@H@2@V32@H@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_pubseekpos, 36)
|
|
|
|
fpos_int* __thiscall basic_streambuf_char_pubseekpos(basic_streambuf_char *this,
|
|
|
|
fpos_int *ret, fpos_int pos, int mode)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
TRACE("(%p %s %d)\n", this, debugstr_fpos_int(&pos), mode);
|
|
|
|
return call_basic_streambuf_char_seekpos(this, ret, pos, mode);
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?pubseekpos@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAE?AV?$fpos@H@2@V32@I@Z */
|
|
|
|
/* ?pubseekpos@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QEAA?AV?$fpos@H@2@V32@I@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_pubseekpos_old, 36)
|
|
|
|
fpos_int* __thiscall basic_streambuf_char_pubseekpos_old(basic_streambuf_char *this,
|
|
|
|
fpos_int *ret, fpos_int pos, unsigned int mode)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
TRACE("(%p %s %d)\n", this, debugstr_fpos_int(&pos), mode);
|
|
|
|
return basic_streambuf_char_pubseekpos(this, ret, pos, mode);
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?setbuf@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEPAV12@PADH@Z */
|
|
|
|
/* ?setbuf@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MEAAPEAV12@PEAD_J@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_setbuf, 12)
|
|
|
|
#define call_basic_streambuf_char_setbuf(this, buf, count) CALL_VTBL_FUNC(this, 44, \
|
|
|
|
basic_streambuf_char*, (basic_streambuf_char*, char*, streamsize), (this, buf, count))
|
|
|
|
basic_streambuf_char* __thiscall basic_streambuf_char_setbuf(basic_streambuf_char *this, char *buf, streamsize count)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-06-06 12:49:05 +00:00
|
|
|
TRACE("(%p %p %ld)\n", this, buf, count);
|
2012-03-28 09:20:56 +00:00
|
|
|
return this;
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?pubsetbuf@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEPAV12@PADH@Z */
|
|
|
|
/* ?pubsetbuf@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QEAAPEAV12@PEAD_J@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_pubsetbuf, 12)
|
|
|
|
basic_streambuf_char* __thiscall basic_streambuf_char_pubsetbuf(basic_streambuf_char *this, char *buf, streamsize count)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-06-06 12:49:05 +00:00
|
|
|
TRACE("(%p %p %ld)\n", this, buf, count);
|
2012-03-28 09:20:56 +00:00
|
|
|
return call_basic_streambuf_char_setbuf(this, buf, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?sync@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEHXZ */
|
|
|
|
/* ?sync@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MEAAHXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_sync, 4)
|
|
|
|
#define call_basic_streambuf_char_sync(this) CALL_VTBL_FUNC(this, 48, \
|
|
|
|
int, (basic_streambuf_char*), (this))
|
|
|
|
int __thiscall basic_streambuf_char_sync(basic_streambuf_char *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
2011-05-27 12:34:27 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?pubsync@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHXZ */
|
|
|
|
/* ?pubsync@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QEAAHXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_pubsync, 4)
|
|
|
|
int __thiscall basic_streambuf_char_pubsync(basic_streambuf_char *this)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return call_basic_streambuf_char_sync(this);
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?sgetn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHPADH@Z */
|
|
|
|
/* ?sgetn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QEAA_JPEAD_J@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_sgetn, 12)
|
|
|
|
streamsize __thiscall basic_streambuf_char_sgetn(basic_streambuf_char *this, char *ptr, streamsize count)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-06-06 12:49:05 +00:00
|
|
|
TRACE("(%p %p %ld)\n", this, ptr, count);
|
2012-03-28 09:20:56 +00:00
|
|
|
return call_basic_streambuf_char__Xsgetn_s(this, ptr, -1, count);
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?showmanyc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEHXZ */
|
|
|
|
/* ?showmanyc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MEAA_JXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_showmanyc, 4)
|
|
|
|
#define call_basic_streambuf_char_showmanyc(this) CALL_VTBL_FUNC(this, 12, \
|
|
|
|
streamsize, (basic_streambuf_char*), (this))
|
|
|
|
streamsize __thiscall basic_streambuf_char_showmanyc(basic_streambuf_char *this)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return 0;
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?in_avail@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHXZ */
|
|
|
|
/* ?in_avail@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QEAA_JXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_in_avail, 4)
|
|
|
|
streamsize __thiscall basic_streambuf_char_in_avail(basic_streambuf_char *this)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
streamsize ret;
|
|
|
|
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
|
|
|
|
ret = basic_streambuf_char__Gnavail(this);
|
|
|
|
return ret ? ret : call_basic_streambuf_char_showmanyc(this);
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?sputbackc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHD@Z */
|
|
|
|
/* ?sputbackc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QEAAHD@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_sputbackc, 8)
|
|
|
|
int __thiscall basic_streambuf_char_sputbackc(basic_streambuf_char *this, char ch)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
TRACE("(%p %d)\n", this, ch);
|
|
|
|
if(*this->prpos && *this->prpos>*this->prbuf && (*this->prpos)[-1]==ch) {
|
|
|
|
(*this->prsize)++;
|
|
|
|
(*this->prpos)--;
|
|
|
|
return ch;
|
|
|
|
}
|
|
|
|
|
|
|
|
return call_basic_streambuf_char_pbackfail(this, ch);
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?sputc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHD@Z */
|
|
|
|
/* ?sputc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QEAAHD@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_sputc, 8)
|
|
|
|
int __thiscall basic_streambuf_char_sputc(basic_streambuf_char *this, char ch)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
TRACE("(%p %d)\n", this, ch);
|
|
|
|
return basic_streambuf_char__Pnavail(this) ?
|
|
|
|
(*basic_streambuf_char__Pninc(this) = ch) :
|
|
|
|
call_basic_streambuf_char_overflow(this, ch);
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?sungetc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHXZ */
|
|
|
|
/* ?sungetc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QEAAHXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_sungetc, 4)
|
|
|
|
int __thiscall basic_streambuf_char_sungetc(basic_streambuf_char *this)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
if(*this->prpos && *this->prpos>*this->prbuf) {
|
|
|
|
(*this->prsize)++;
|
|
|
|
(*this->prpos)--;
|
|
|
|
return **this->prpos;
|
|
|
|
}
|
|
|
|
|
|
|
|
return call_basic_streambuf_char_pbackfail(this, EOF);
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?stossc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEXXZ */
|
|
|
|
/* ?stossc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QEAAXXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_stossc, 4)
|
|
|
|
void __thiscall basic_streambuf_char_stossc(basic_streambuf_char *this)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
if(basic_streambuf_char__Gnavail(this))
|
|
|
|
basic_streambuf_char__Gninc(this);
|
|
|
|
else
|
|
|
|
call_basic_streambuf_char_uflow(this);
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?sbumpc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHXZ */
|
|
|
|
/* ?sbumpc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QEAAHXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_sbumpc, 4)
|
|
|
|
int __thiscall basic_streambuf_char_sbumpc(basic_streambuf_char *this)
|
2011-05-27 12:34:27 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return basic_streambuf_char__Gnavail(this) ?
|
|
|
|
*basic_streambuf_char__Gninc(this) : call_basic_streambuf_char_uflow(this);
|
2011-05-27 12:34:27 +00:00
|
|
|
}
|
2011-05-27 12:35:40 +00:00
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?sgetc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHXZ */
|
|
|
|
/* ?sgetc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QEAAHXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_sgetc, 4)
|
|
|
|
int __thiscall basic_streambuf_char_sgetc(basic_streambuf_char *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return basic_streambuf_char__Gnavail(this) ?
|
|
|
|
*basic_streambuf_char_gptr(this) : call_basic_streambuf_char_underflow(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?snextc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHXZ */
|
|
|
|
/* ?snextc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QEAAHXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_snextc, 4)
|
|
|
|
int __thiscall basic_streambuf_char_snextc(basic_streambuf_char *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
|
|
|
|
if(basic_streambuf_char__Gnavail(this) > 1)
|
|
|
|
return *basic_streambuf_char__Gnpreinc(this);
|
|
|
|
return basic_streambuf_char_sbumpc(this)==EOF ?
|
|
|
|
EOF : basic_streambuf_char_sgetc(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?xsgetn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEHPADH@Z */
|
|
|
|
/* ?xsgetn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MEAA_JPEAD_J@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_xsgetn, 12)
|
|
|
|
#define call_basic_streambuf_char_xsgetn(this, ptr, count) CALL_VTBL_FUNC(this, 24, \
|
|
|
|
streamsize, (basic_streambuf_char*, char*, streamsize), (this, ptr, count))
|
|
|
|
streamsize __thiscall basic_streambuf_char_xsgetn(basic_streambuf_char *this, char *ptr, streamsize count)
|
|
|
|
{
|
2012-06-06 12:49:05 +00:00
|
|
|
TRACE("(%p %p %ld)\n", this, ptr, count);
|
2012-03-28 09:20:56 +00:00
|
|
|
return call_basic_streambuf_char__Xsgetn_s(this, ptr, -1, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?xsputn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MAEHPBDH@Z */
|
|
|
|
/* ?xsputn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@MEAA_JPEBD_J@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_xsputn, 12)
|
|
|
|
#define call_basic_streambuf_char_xsputn(this, ptr, count) CALL_VTBL_FUNC(this, 32, \
|
|
|
|
streamsize, (basic_streambuf_char*, const char*, streamsize), (this, ptr, count))
|
|
|
|
streamsize __thiscall basic_streambuf_char_xsputn(basic_streambuf_char *this, const char *ptr, streamsize count)
|
|
|
|
{
|
|
|
|
streamsize copied, chunk;
|
|
|
|
|
2012-06-06 12:49:05 +00:00
|
|
|
TRACE("(%p %p %ld)\n", this, ptr, count);
|
2012-03-28 09:20:56 +00:00
|
|
|
|
|
|
|
for(copied=0; copied<count;) {
|
|
|
|
chunk = basic_streambuf_char__Pnavail(this);
|
|
|
|
if(chunk > count-copied)
|
|
|
|
chunk = count-copied;
|
|
|
|
|
|
|
|
if(chunk) {
|
|
|
|
memcpy(*this->pwpos, ptr+copied, chunk);
|
|
|
|
*this->pwpos += chunk;
|
|
|
|
*this->pwsize -= chunk;
|
|
|
|
copied += chunk;
|
|
|
|
}else if(call_basic_streambuf_char_overflow(this, ptr[copied]) != EOF) {
|
|
|
|
copied++;
|
|
|
|
}else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return copied;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?sputn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHPBDH@Z */
|
|
|
|
/* ?sputn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QEAA_JPEBD_J@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_char_sputn, 12)
|
|
|
|
streamsize __thiscall basic_streambuf_char_sputn(basic_streambuf_char *this, const char *ptr, streamsize count)
|
|
|
|
{
|
2012-06-06 12:49:05 +00:00
|
|
|
TRACE("(%p %p %ld)\n", this, ptr, count);
|
2012-03-28 09:20:56 +00:00
|
|
|
return call_basic_streambuf_char_xsputn(this, ptr, count);
|
|
|
|
}
|
|
|
|
|
2012-03-28 09:21:26 +00:00
|
|
|
/* ?setp@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IAEXPA_W00@Z */
|
|
|
|
/* ?setp@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IEAAXPEA_W00@Z */
|
|
|
|
/* ?setp@?$basic_streambuf@GU?$char_traits@G@std@@@std@@IAEXPAG00@Z */
|
|
|
|
/* ?setp@?$basic_streambuf@GU?$char_traits@G@std@@@std@@IEAAXPEAG00@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_setp_next, 16)
|
|
|
|
void __thiscall basic_streambuf_wchar_setp_next(basic_streambuf_wchar *this, wchar_t *first, wchar_t *next, wchar_t *last)
|
|
|
|
{
|
|
|
|
TRACE("(%p %p %p %p)\n", this, first, next, last);
|
|
|
|
|
|
|
|
this->wbuf = first;
|
|
|
|
this->wpos = next;
|
|
|
|
this->wsize = last-next;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?setp@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IAEXPA_W0@Z */
|
|
|
|
/* ?setp@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IEAAXPEA_W0@Z */
|
|
|
|
/* ?setp@?$basic_streambuf@GU?$char_traits@G@std@@@std@@IAEXPAG0@Z */
|
|
|
|
/* ?setp@?$basic_streambuf@GU?$char_traits@G@std@@@std@@IEAAXPEAG0@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_setp, 12)
|
|
|
|
void __thiscall basic_streambuf_wchar_setp(basic_streambuf_wchar *this, wchar_t *first, wchar_t *last)
|
|
|
|
{
|
|
|
|
basic_streambuf_wchar_setp_next(this, first, first, last);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?setg@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IAEXPA_W00@Z */
|
|
|
|
/* ?setg@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IEAAXPEA_W00@Z */
|
|
|
|
/* ?setg@?$basic_streambuf@GU?$char_traits@G@std@@@std@@IAEXPAG00@Z */
|
|
|
|
/* ?setg@?$basic_streambuf@GU?$char_traits@G@std@@@std@@IEAAXPEAG00@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_setg, 16)
|
|
|
|
void __thiscall basic_streambuf_wchar_setg(basic_streambuf_wchar *this, wchar_t *first, wchar_t *next, wchar_t *last)
|
|
|
|
{
|
|
|
|
TRACE("(%p %p %p %p)\n", this, first, next, last);
|
|
|
|
|
|
|
|
this->rbuf = first;
|
|
|
|
this->rpos = next;
|
|
|
|
this->rsize = last-next;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?_Init@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IAEXXZ */
|
|
|
|
/* ?_Init@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IEAAXXZ */
|
|
|
|
/* ?_Init@?$basic_streambuf@GU?$char_traits@G@std@@@std@@IAEXXZ */
|
|
|
|
/* ?_Init@?$basic_streambuf@GU?$char_traits@G@std@@@std@@IEAAXXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar__Init_empty, 4)
|
|
|
|
void __thiscall basic_streambuf_wchar__Init_empty(basic_streambuf_wchar *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
|
|
|
|
this->prbuf = &this->rbuf;
|
|
|
|
this->pwbuf = &this->wbuf;
|
|
|
|
this->prpos = &this->rpos;
|
|
|
|
this->pwpos = &this->wpos;
|
|
|
|
this->prsize = &this->rsize;
|
|
|
|
this->pwsize = &this->wsize;
|
|
|
|
|
|
|
|
basic_streambuf_wchar_setp(this, NULL, NULL);
|
|
|
|
basic_streambuf_wchar_setg(this, NULL, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??0?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IAE@W4_Uninitialized@1@@Z */
|
|
|
|
/* ??0?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IEAA@W4_Uninitialized@1@@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_ctor_uninitialized, 8)
|
|
|
|
basic_streambuf_wchar* __thiscall basic_streambuf_wchar_ctor_uninitialized(basic_streambuf_wchar *this, int uninitialized)
|
|
|
|
{
|
|
|
|
TRACE("(%p %d)\n", this, uninitialized);
|
|
|
|
this->vtable = &MSVCP_basic_streambuf_wchar_vtable;
|
|
|
|
mutex_ctor(&this->lock);
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??0?$basic_streambuf@GU?$char_traits@G@std@@@std@@IAE@W4_Uninitialized@1@@Z */
|
|
|
|
/* ??0?$basic_streambuf@GU?$char_traits@G@std@@@std@@IEAA@W4_Uninitialized@1@@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_short_ctor_uninitialized, 8)
|
|
|
|
basic_streambuf_wchar* __thiscall basic_streambuf_short_ctor_uninitialized(basic_streambuf_wchar *this, int uninitialized)
|
|
|
|
{
|
|
|
|
TRACE("(%p %d)\n", this, uninitialized);
|
|
|
|
basic_streambuf_wchar_ctor_uninitialized(this, uninitialized);
|
|
|
|
this->vtable = &MSVCP_basic_streambuf_short_vtable;
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??0?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IAE@XZ */
|
|
|
|
/* ??0?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IEAA@XZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_ctor, 4)
|
|
|
|
basic_streambuf_wchar* __thiscall basic_streambuf_wchar_ctor(basic_streambuf_wchar *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
|
|
|
|
this->vtable = &MSVCP_basic_streambuf_wchar_vtable;
|
|
|
|
mutex_ctor(&this->lock);
|
|
|
|
this->loc = MSVCRT_operator_new(sizeof(locale));
|
|
|
|
locale_ctor(this->loc);
|
|
|
|
basic_streambuf_wchar__Init_empty(this);
|
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??0?$basic_streambuf@GU?$char_traits@G@std@@@std@@IAE@XZ */
|
|
|
|
/* ??0?$basic_streambuf@GU?$char_traits@G@std@@@std@@IEAA@XZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_short_ctor, 4)
|
|
|
|
basic_streambuf_wchar* __thiscall basic_streambuf_short_ctor(basic_streambuf_wchar *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
basic_streambuf_wchar_ctor(this);
|
|
|
|
this->vtable = &MSVCP_basic_streambuf_short_vtable;
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??1?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@UAE@XZ */
|
|
|
|
/* ??1?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@UEAA@XZ */
|
|
|
|
/* ??1?$basic_streambuf@GU?$char_traits@G@std@@@std@@UAE@XZ */
|
|
|
|
/* ??1?$basic_streambuf@GU?$char_traits@G@std@@@std@@UEAA@XZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_dtor, 4)
|
|
|
|
void __thiscall basic_streambuf_wchar_dtor(basic_streambuf_wchar *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
|
|
|
|
mutex_dtor(&this->lock);
|
|
|
|
locale_dtor(this->loc);
|
|
|
|
MSVCRT_operator_delete(this->loc);
|
|
|
|
}
|
|
|
|
|
|
|
|
DEFINE_THISCALL_WRAPPER(MSVCP_basic_streambuf_wchar_vector_dtor, 8)
|
|
|
|
basic_streambuf_wchar* __thiscall MSVCP_basic_streambuf_wchar_vector_dtor(basic_streambuf_wchar *this, unsigned int flags)
|
|
|
|
{
|
|
|
|
TRACE("(%p %x)\n", this, flags);
|
|
|
|
if(flags & 2) {
|
|
|
|
/* we have an array, with the number of elements stored before the first object */
|
|
|
|
int i, *ptr = (int *)this-1;
|
|
|
|
|
|
|
|
for(i=*ptr-1; i>=0; i--)
|
|
|
|
basic_streambuf_wchar_dtor(this+i);
|
|
|
|
MSVCRT_operator_delete(ptr);
|
|
|
|
} else {
|
|
|
|
basic_streambuf_wchar_dtor(this);
|
|
|
|
if(flags & 1)
|
|
|
|
MSVCRT_operator_delete(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
DEFINE_THISCALL_WRAPPER(MSVCP_basic_streambuf_short_vector_dtor, 8)
|
|
|
|
basic_streambuf_wchar* __thiscall MSVCP_basic_streambuf_short_vector_dtor(basic_streambuf_wchar *this, unsigned int flags)
|
|
|
|
{
|
|
|
|
TRACE("(%p %x)\n", this, flags);
|
|
|
|
return MSVCP_basic_streambuf_wchar_vector_dtor(this, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?_Gnavail@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IBEHXZ */
|
|
|
|
/* ?_Gnavail@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IEBA_JXZ */
|
|
|
|
/* ?_Gnavail@?$basic_streambuf@GU?$char_traits@G@std@@@std@@IBEHXZ */
|
|
|
|
/* ?_Gnavail@?$basic_streambuf@GU?$char_traits@G@std@@@std@@IEBA_JXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar__Gnavail, 4)
|
|
|
|
streamsize __thiscall basic_streambuf_wchar__Gnavail(const basic_streambuf_wchar *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return *this->prpos ? *this->prsize : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?_Gndec@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IAEPA_WXZ */
|
|
|
|
/* ?_Gndec@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IEAAPEA_WXZ */
|
|
|
|
/* ?_Gndec@?$basic_streambuf@GU?$char_traits@G@std@@@std@@IAEPAGXZ */
|
|
|
|
/* ?_Gndec@?$basic_streambuf@GU?$char_traits@G@std@@@std@@IEAAPEAGXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar__Gndec, 4)
|
|
|
|
wchar_t* __thiscall basic_streambuf_wchar__Gndec(basic_streambuf_wchar *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
(*this->prsize)++;
|
|
|
|
(*this->prpos)--;
|
|
|
|
return *this->prpos;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?_Gninc@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IAEPA_WXZ */
|
|
|
|
/* ?_Gninc@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IEAAPEA_WXZ */
|
|
|
|
/* ?_Gninc@?$basic_streambuf@GU?$char_traits@G@std@@@std@@IAEPAGXZ */
|
|
|
|
/* ?_Gninc@?$basic_streambuf@GU?$char_traits@G@std@@@std@@IEAAPEAGXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar__Gninc, 4)
|
|
|
|
wchar_t* __thiscall basic_streambuf_wchar__Gninc(basic_streambuf_wchar *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
(*this->prsize)--;
|
|
|
|
return (*this->prpos)++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?_Gnpreinc@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IAEPA_WXZ */
|
|
|
|
/* ?_Gnpreinc@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IEAAPEA_WXZ */
|
|
|
|
/* ?_Gnpreinc@?$basic_streambuf@GU?$char_traits@G@std@@@std@@IAEPAGXZ */
|
|
|
|
/* ?_Gnpreinc@?$basic_streambuf@GU?$char_traits@G@std@@@std@@IEAAPEAGXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar__Gnpreinc, 4)
|
|
|
|
wchar_t* __thiscall basic_streambuf_wchar__Gnpreinc(basic_streambuf_wchar *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
(*this->prsize)--;
|
|
|
|
(*this->prpos)++;
|
|
|
|
return *this->prpos;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?_Init@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IAEXPAPA_W0PAH001@Z */
|
|
|
|
/* ?_Init@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IEAAXPEAPEA_W0PEAH001@Z */
|
|
|
|
/* ?_Init@?$basic_streambuf@GU?$char_traits@G@std@@@std@@IAEXPAPAG0PAH001@Z */
|
|
|
|
/* ?_Init@?$basic_streambuf@GU?$char_traits@G@std@@@std@@IEAAXPEAPEAG0PEAH001@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar__Init, 28)
|
|
|
|
void __thiscall basic_streambuf_wchar__Init(basic_streambuf_wchar *this, wchar_t **gf, wchar_t **gn, int *gc, wchar_t **pf, wchar_t **pn, int *pc)
|
|
|
|
{
|
|
|
|
TRACE("(%p %p %p %p %p %p %p)\n", this, gf, gn, gc, pf, pn, pc);
|
|
|
|
|
|
|
|
this->prbuf = gf;
|
|
|
|
this->pwbuf = pf;
|
|
|
|
this->prpos = gn;
|
|
|
|
this->pwpos = pn;
|
|
|
|
this->prsize = gc;
|
|
|
|
this->pwsize = pc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?_Lock@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QAEXXZ */
|
|
|
|
/* ?_Lock@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QEAAXXZ */
|
|
|
|
/* ?_Lock@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QAEXXZ */
|
|
|
|
/* ?_Lock@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QEAAXXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar__Lock, 4)
|
|
|
|
void __thiscall basic_streambuf_wchar__Lock(basic_streambuf_wchar *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
mutex_lock(&this->lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?_Pnavail@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IBEHXZ */
|
|
|
|
/* ?_Pnavail@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IEBA_JXZ */
|
|
|
|
/* ?_Pnavail@?$basic_streambuf@GU?$char_traits@G@std@@@std@@IBEHXZ */
|
|
|
|
/* ?_Pnavail@?$basic_streambuf@GU?$char_traits@G@std@@@std@@IEBA_JXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar__Pnavail, 4)
|
|
|
|
streamsize __thiscall basic_streambuf_wchar__Pnavail(const basic_streambuf_wchar *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return *this->pwpos ? *this->pwsize : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?_Pninc@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IAEPA_WXZ */
|
|
|
|
/* ?_Pninc@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IEAAPEA_WXZ */
|
|
|
|
/* ?_Pninc@?$basic_streambuf@GU?$char_traits@G@std@@@std@@IAEPAGXZ */
|
|
|
|
/* ?_Pninc@?$basic_streambuf@GU?$char_traits@G@std@@@std@@IEAAPEAGXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar__Pninc, 4)
|
|
|
|
wchar_t* __thiscall basic_streambuf_wchar__Pninc(basic_streambuf_wchar *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
(*this->pwsize)--;
|
|
|
|
return (*this->pwpos)++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?underflow@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MAEGXZ */
|
|
|
|
/* ?underflow@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MEAAGXZ */
|
|
|
|
/* ?underflow@?$basic_streambuf@GU?$char_traits@G@std@@@std@@MAEGXZ */
|
|
|
|
/* ?underflow@?$basic_streambuf@GU?$char_traits@G@std@@@std@@MEAAGXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_underflow, 4)
|
|
|
|
#define call_basic_streambuf_wchar_underflow(this) CALL_VTBL_FUNC(this, 16, \
|
|
|
|
unsigned short, (basic_streambuf_wchar*), (this))
|
|
|
|
unsigned short __thiscall basic_streambuf_wchar_underflow(basic_streambuf_wchar *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return WEOF;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?uflow@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MAEGXZ */
|
|
|
|
/* ?uflow@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MEAAGXZ */
|
|
|
|
/* ?uflow@?$basic_streambuf@GU?$char_traits@G@std@@@std@@MAEGXZ */
|
|
|
|
/* ?uflow@?$basic_streambuf@GU?$char_traits@G@std@@@std@@MEAAGXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_uflow, 4)
|
|
|
|
#define call_basic_streambuf_wchar_uflow(this) CALL_VTBL_FUNC(this, 20, \
|
|
|
|
unsigned short, (basic_streambuf_wchar*), (this))
|
|
|
|
unsigned short __thiscall basic_streambuf_wchar_uflow(basic_streambuf_wchar *this)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
|
|
|
|
if(call_basic_streambuf_wchar_underflow(this)==WEOF)
|
|
|
|
return WEOF;
|
|
|
|
|
|
|
|
ret = **this->prpos;
|
|
|
|
(*this->prsize)--;
|
|
|
|
(*this->prpos)++;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?_Xsgetn_s@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MAEHPA_WIH@Z */
|
|
|
|
/* ?_Xsgetn_s@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MEAA_JPEA_W_K_J@Z */
|
|
|
|
/* ?_Xsgetn_s@?$basic_streambuf@GU?$char_traits@G@std@@@std@@MAEHPAGIH@Z */
|
|
|
|
/* ?_Xsgetn_s@?$basic_streambuf@GU?$char_traits@G@std@@@std@@MEAA_JPEAG_K_J@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar__Xsgetn_s, 16)
|
|
|
|
#define call_basic_streambuf_wchar__Xsgetn_s(this, ptr, size, count) CALL_VTBL_FUNC(this, 28, \
|
|
|
|
streamsize, (basic_streambuf_wchar*, wchar_t*, MSVCP_size_t, streamsize), (this, ptr, size, count))
|
|
|
|
streamsize __thiscall basic_streambuf_wchar__Xsgetn_s(basic_streambuf_wchar *this, wchar_t *ptr, MSVCP_size_t size, streamsize count)
|
|
|
|
{
|
|
|
|
streamsize copied, chunk;
|
|
|
|
|
2012-06-06 12:49:05 +00:00
|
|
|
TRACE("(%p %p %lu %ld)\n", this, ptr, size, count);
|
2012-03-28 09:21:26 +00:00
|
|
|
|
|
|
|
for(copied=0; copied<count && size;) {
|
|
|
|
chunk = basic_streambuf_wchar__Gnavail(this);
|
|
|
|
if(chunk > count-copied)
|
|
|
|
chunk = count-copied;
|
|
|
|
|
|
|
|
if(chunk) {
|
|
|
|
memcpy_s(ptr+copied, size, *this->prpos, chunk);
|
|
|
|
*this->prpos += chunk;
|
|
|
|
*this->prsize -= chunk;
|
|
|
|
copied += chunk;
|
|
|
|
size -= chunk;
|
|
|
|
}else if((ptr[copied] = call_basic_streambuf_wchar_uflow(this)) != WEOF) {
|
|
|
|
copied++;
|
|
|
|
size--;
|
|
|
|
}else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return copied;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?_Sgetn_s@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QAEHPA_WIH@Z */
|
|
|
|
/* ?_Sgetn_s@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QEAA_JPEA_W_K_J@Z */
|
|
|
|
/* ?_Sgetn_s@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QAEHPAGIH@Z */
|
|
|
|
/* ?_Sgetn_s@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QEAA_JPEAG_K_J@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar__Sgetn_s, 16)
|
|
|
|
streamsize __thiscall basic_streambuf_wchar__Sgetn_s(basic_streambuf_wchar *this, wchar_t *ptr, MSVCP_size_t size, streamsize count)
|
|
|
|
{
|
2012-06-06 12:49:05 +00:00
|
|
|
TRACE("(%p %p %lu %ld)\n", this, ptr, size, count);
|
2012-03-28 09:21:26 +00:00
|
|
|
return call_basic_streambuf_wchar__Xsgetn_s(this, ptr, size, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?_Unlock@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QAEXXZ */
|
|
|
|
/* ?_Unlock@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QEAAXXZ */
|
|
|
|
/* ?_Unlock@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QAEXXZ */
|
|
|
|
/* ?_Unlock@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QEAAXXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar__Unlock, 4)
|
|
|
|
void __thiscall basic_streambuf_wchar__Unlock(basic_streambuf_wchar *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
mutex_unlock(&this->lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?eback@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IBEPA_WXZ */
|
|
|
|
/* ?eback@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IEBAPEA_WXZ */
|
|
|
|
/* ?eback@?$basic_streambuf@GU?$char_traits@G@std@@@std@@IBEPAGXZ */
|
|
|
|
/* ?eback@?$basic_streambuf@GU?$char_traits@G@std@@@std@@IEBAPEAGXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_eback, 4)
|
|
|
|
wchar_t* __thiscall basic_streambuf_wchar_eback(const basic_streambuf_wchar *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return *this->prbuf;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?gptr@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IBEPA_WXZ */
|
|
|
|
/* ?gptr@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IEBAPEA_WXZ */
|
|
|
|
/* ?gptr@?$basic_streambuf@GU?$char_traits@G@std@@@std@@IBEPAGXZ */
|
|
|
|
/* ?gptr@?$basic_streambuf@GU?$char_traits@G@std@@@std@@IEBAPEAGXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_gptr, 4)
|
|
|
|
wchar_t* __thiscall basic_streambuf_wchar_gptr(const basic_streambuf_wchar *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return *this->prpos;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?egptr@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IBEPA_WXZ */
|
|
|
|
/* ?egptr@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IEBAPEA_WXZ */
|
|
|
|
/* ?egptr@?$basic_streambuf@GU?$char_traits@G@std@@@std@@IBEPAGXZ */
|
|
|
|
/* ?egptr@?$basic_streambuf@GU?$char_traits@G@std@@@std@@IEBAPEAGXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_egptr, 4)
|
|
|
|
wchar_t* __thiscall basic_streambuf_wchar_egptr(const basic_streambuf_wchar *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return *this->prpos+*this->prsize;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?epptr@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IBEPA_WXZ */
|
|
|
|
/* ?epptr@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IEBAPEA_WXZ */
|
|
|
|
/* ?epptr@?$basic_streambuf@GU?$char_traits@G@std@@@std@@IBEPAGXZ */
|
|
|
|
/* ?epptr@?$basic_streambuf@GU?$char_traits@G@std@@@std@@IEBAPEAGXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_epptr, 4)
|
|
|
|
wchar_t* __thiscall basic_streambuf_wchar_epptr(const basic_streambuf_wchar *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return *this->pwpos+*this->pwsize;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?gbump@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IAEXH@Z */
|
|
|
|
/* ?gbump@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IEAAXH@Z */
|
|
|
|
/* ?gbump@?$basic_streambuf@GU?$char_traits@G@std@@@std@@IAEXH@Z */
|
|
|
|
/* ?gbump@?$basic_streambuf@GU?$char_traits@G@std@@@std@@IEAAXH@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_gbump, 8)
|
|
|
|
void __thiscall basic_streambuf_wchar_gbump(basic_streambuf_wchar *this, int off)
|
|
|
|
{
|
|
|
|
TRACE("(%p %d)\n", this, off);
|
|
|
|
*this->prpos += off;
|
|
|
|
*this->prsize -= off;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?getloc@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QBE?AVlocale@2@XZ */
|
|
|
|
/* ?getloc@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QEBA?AVlocale@2@XZ */
|
|
|
|
/* ?getloc@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QBE?AVlocale@2@XZ */
|
|
|
|
/* ?getloc@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QEBA?AVlocale@2@XZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_getloc, 8)
|
|
|
|
locale* __thiscall basic_streambuf_wchar_getloc(const basic_streambuf_wchar *this, locale *ret)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return locale_copy_ctor(ret, this->loc);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?imbue@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MAEXABVlocale@2@@Z */
|
|
|
|
/* ?imbue@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MEAAXAEBVlocale@2@@Z */
|
|
|
|
/* ?imbue@?$basic_streambuf@GU?$char_traits@G@std@@@std@@MAEXABVlocale@2@@Z */
|
|
|
|
/* ?imbue@?$basic_streambuf@GU?$char_traits@G@std@@@std@@MEAAXAEBVlocale@2@@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_imbue, 8)
|
|
|
|
#define call_basic_streambuf_wchar_imbue(this, loc) CALL_VTBL_FUNC(this, 52, \
|
|
|
|
void, (basic_streambuf_wchar*, const locale*), (this, loc))
|
|
|
|
void __thiscall basic_streambuf_wchar_imbue(basic_streambuf_wchar *this, const locale *loc)
|
|
|
|
{
|
|
|
|
TRACE("(%p %p)\n", this, loc);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?overflow@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MAEGG@Z */
|
|
|
|
/* ?overflow@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MEAAGG@Z */
|
|
|
|
/* ?overflow@?$basic_streambuf@GU?$char_traits@G@std@@@std@@MAEGG@Z */
|
|
|
|
/* ?overflow@?$basic_streambuf@GU?$char_traits@G@std@@@std@@MEAAGG@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_overflow, 8)
|
|
|
|
#define call_basic_streambuf_wchar_overflow(this, ch) CALL_VTBL_FUNC(this, 4, \
|
|
|
|
unsigned short, (basic_streambuf_wchar*, unsigned short), (this, ch))
|
|
|
|
unsigned short __thiscall basic_streambuf_wchar_overflow(basic_streambuf_wchar *this, unsigned short ch)
|
|
|
|
{
|
|
|
|
TRACE("(%p %d)\n", this, ch);
|
|
|
|
return WEOF;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?pbackfail@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MAEGG@Z */
|
|
|
|
/* ?pbackfail@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MEAAGG@Z */
|
|
|
|
/* ?pbackfail@?$basic_streambuf@GU?$char_traits@G@std@@@std@@MAEGG@Z */
|
|
|
|
/* ?pbackfail@?$basic_streambuf@GU?$char_traits@G@std@@@std@@MEAAGG@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_pbackfail, 8)
|
|
|
|
#define call_basic_streambuf_wchar_pbackfail(this, ch) CALL_VTBL_FUNC(this, 8, \
|
|
|
|
unsigned short, (basic_streambuf_wchar*, unsigned short), (this, ch))
|
|
|
|
unsigned short __thiscall basic_streambuf_wchar_pbackfail(basic_streambuf_wchar *this, unsigned short ch)
|
|
|
|
{
|
|
|
|
TRACE("(%p %d)\n", this, ch);
|
|
|
|
return WEOF;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?pbase@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IBEPA_WXZ */
|
|
|
|
/* ?pbase@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IEBAPEA_WXZ */
|
|
|
|
/* ?pbase@?$basic_streambuf@GU?$char_traits@G@std@@@std@@IBEPAGXZ */
|
|
|
|
/* ?pbase@?$basic_streambuf@GU?$char_traits@G@std@@@std@@IEBAPEAGXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_pbase, 4)
|
|
|
|
wchar_t* __thiscall basic_streambuf_wchar_pbase(const basic_streambuf_wchar *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return *this->pwbuf;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?pbump@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IAEXH@Z */
|
|
|
|
/* ?pbump@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IEAAXH@Z */
|
|
|
|
/* ?pbump@?$basic_streambuf@GU?$char_traits@G@std@@@std@@IAEXH@Z */
|
|
|
|
/* ?pbump@?$basic_streambuf@GU?$char_traits@G@std@@@std@@IEAAXH@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_pbump, 8)
|
|
|
|
void __thiscall basic_streambuf_wchar_pbump(basic_streambuf_wchar *this, int off)
|
|
|
|
{
|
|
|
|
TRACE("(%p %d)\n", this, off);
|
|
|
|
*this->pwpos += off;
|
|
|
|
*this->pwsize -= off;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?pptr@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IBEPA_WXZ */
|
|
|
|
/* ?pptr@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@IEBAPEA_WXZ */
|
|
|
|
/* ?pptr@?$basic_streambuf@GU?$char_traits@G@std@@@std@@IBEPAGXZ */
|
|
|
|
/* ?pptr@?$basic_streambuf@GU?$char_traits@G@std@@@std@@IEBAPEAGXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_pptr, 4)
|
|
|
|
wchar_t* __thiscall basic_streambuf_wchar_pptr(const basic_streambuf_wchar *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return *this->pwpos;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?pubimbue@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QAE?AVlocale@2@ABV32@@Z */
|
|
|
|
/* ?pubimbue@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QEAA?AVlocale@2@AEBV32@@Z */
|
|
|
|
/* ?pubimbue@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QAE?AVlocale@2@ABV32@@Z */
|
|
|
|
/* ?pubimbue@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QEAA?AVlocale@2@AEBV32@@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_pubimbue, 12)
|
|
|
|
locale* __thiscall basic_streambuf_wchar_pubimbue(basic_streambuf_wchar *this, locale *ret, const locale *loc)
|
|
|
|
{
|
|
|
|
TRACE("(%p %p)\n", this, loc);
|
|
|
|
memcpy(ret, this->loc, sizeof(locale));
|
|
|
|
call_basic_streambuf_wchar_imbue(this, loc);
|
|
|
|
locale_copy_ctor(this->loc, loc);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?seekoff@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MAE?AV?$fpos@H@2@JHH@Z */
|
|
|
|
/* ?seekoff@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MEAA?AV?$fpos@H@2@_JHH@Z */
|
|
|
|
/* ?seekoff@?$basic_streambuf@GU?$char_traits@G@std@@@std@@MAE?AV?$fpos@H@2@JHH@Z */
|
|
|
|
/* ?seekoff@?$basic_streambuf@GU?$char_traits@G@std@@@std@@MEAA?AV?$fpos@H@2@_JHH@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_seekoff, 20)
|
|
|
|
#define call_basic_streambuf_wchar_seekoff(this, ret, off, way, mode) CALL_VTBL_FUNC(this, 36, \
|
|
|
|
fpos_int*, (basic_streambuf_wchar*, fpos_int*, streamoff, int, int), (this, ret, off, way, mode))
|
|
|
|
fpos_int* __thiscall basic_streambuf_wchar_seekoff(basic_streambuf_wchar *this,
|
|
|
|
fpos_int *ret, streamoff off, int way, int mode)
|
|
|
|
{
|
2012-06-06 12:49:05 +00:00
|
|
|
TRACE("(%p %ld %d %d)\n", this, off, way, mode);
|
2012-03-28 09:21:26 +00:00
|
|
|
ret->off = 0;
|
|
|
|
ret->pos = -1;
|
|
|
|
ret->state = 0;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?pubseekoff@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QAE?AV?$fpos@H@2@JHH@Z */
|
|
|
|
/* ?pubseekoff@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QEAA?AV?$fpos@H@2@_JHH@Z */
|
|
|
|
/* ?pubseekoff@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QAE?AV?$fpos@H@2@JHH@Z */
|
|
|
|
/* ?pubseekoff@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QEAA?AV?$fpos@H@2@_JHH@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_pubseekoff, 20)
|
|
|
|
fpos_int* __thiscall basic_streambuf_wchar_pubseekoff(basic_streambuf_wchar *this,
|
|
|
|
fpos_int *ret, streamoff off, int way, int mode)
|
|
|
|
{
|
2012-06-06 12:49:05 +00:00
|
|
|
TRACE("(%p %ld %d %d)\n", this, off, way, mode);
|
2012-03-28 09:21:26 +00:00
|
|
|
return call_basic_streambuf_wchar_seekoff(this, ret, off, way, mode);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?pubseekoff@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QAE?AV?$fpos@H@2@JII@Z */
|
|
|
|
/* ?pubseekoff@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QEAA?AV?$fpos@H@2@_JII@Z */
|
|
|
|
/* ?pubseekoff@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QAE?AV?$fpos@H@2@JII@Z */
|
|
|
|
/* ?pubseekoff@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QEAA?AV?$fpos@H@2@_JII@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_pubseekoff_old, 20)
|
|
|
|
fpos_int* __thiscall basic_streambuf_wchar_pubseekoff_old(basic_streambuf_wchar *this,
|
|
|
|
fpos_int *ret, streamoff off, unsigned int way, unsigned int mode)
|
|
|
|
{
|
2012-06-06 12:49:05 +00:00
|
|
|
TRACE("(%p %ld %d %d)\n", this, off, way, mode);
|
2012-03-28 09:21:26 +00:00
|
|
|
return basic_streambuf_wchar_pubseekoff(this, ret, off, way, mode);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?seekpos@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MAE?AV?$fpos@H@2@V32@H@Z */
|
|
|
|
/* ?seekpos@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MEAA?AV?$fpos@H@2@V32@H@Z */
|
|
|
|
/* ?seekpos@?$basic_streambuf@GU?$char_traits@G@std@@@std@@MAE?AV?$fpos@H@2@V32@H@Z */
|
|
|
|
/* ?seekpos@?$basic_streambuf@GU?$char_traits@G@std@@@std@@MEAA?AV?$fpos@H@2@V32@H@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_seekpos, 36)
|
|
|
|
#define call_basic_streambuf_wchar_seekpos(this, ret, pos, mode) CALL_VTBL_FUNC(this, 40, \
|
|
|
|
fpos_int*, (basic_streambuf_wchar*, fpos_int*, fpos_int, int), (this, ret, pos, mode))
|
|
|
|
fpos_int* __thiscall basic_streambuf_wchar_seekpos(basic_streambuf_wchar *this,
|
|
|
|
fpos_int *ret, fpos_int pos, int mode)
|
|
|
|
{
|
|
|
|
TRACE("(%p %s %d)\n", this, debugstr_fpos_int(&pos), mode);
|
|
|
|
ret->off = 0;
|
|
|
|
ret->pos = -1;
|
|
|
|
ret->state = 0;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?pubseekpos@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QAE?AV?$fpos@H@2@V32@H@Z */
|
|
|
|
/* ?pubseekpos@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QEAA?AV?$fpos@H@2@V32@H@Z */
|
|
|
|
/* ?pubseekpos@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QAE?AV?$fpos@H@2@V32@H@Z */
|
|
|
|
/* ?pubseekpos@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QEAA?AV?$fpos@H@2@V32@H@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_pubseekpos, 36)
|
|
|
|
fpos_int* __thiscall basic_streambuf_wchar_pubseekpos(basic_streambuf_wchar *this,
|
|
|
|
fpos_int *ret, fpos_int pos, int mode)
|
|
|
|
{
|
|
|
|
TRACE("(%p %s %d)\n", this, debugstr_fpos_int(&pos), mode);
|
|
|
|
return call_basic_streambuf_wchar_seekpos(this, ret, pos, mode);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?pubseekpos@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QAE?AV?$fpos@H@2@V32@I@Z */
|
|
|
|
/* ?pubseekpos@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QEAA?AV?$fpos@H@2@V32@I@Z */
|
|
|
|
/* ?pubseekpos@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QAE?AV?$fpos@H@2@V32@I@Z */
|
|
|
|
/* ?pubseekpos@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QEAA?AV?$fpos@H@2@V32@I@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_pubseekpos_old, 36)
|
|
|
|
fpos_int* __thiscall basic_streambuf_wchar_pubseekpos_old(basic_streambuf_wchar *this,
|
|
|
|
fpos_int *ret, fpos_int pos, unsigned int mode)
|
|
|
|
{
|
|
|
|
TRACE("(%p %s %d)\n", this, debugstr_fpos_int(&pos), mode);
|
|
|
|
return basic_streambuf_wchar_pubseekpos(this, ret, pos, mode);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?setbuf@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MAEPAV12@PA_WH@Z */
|
|
|
|
/* ?setbuf@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MEAAPEAV12@PEA_W_J@Z */
|
|
|
|
/* ?setbuf@?$basic_streambuf@GU?$char_traits@G@std@@@std@@MAEPAV12@PAGH@Z */
|
|
|
|
/* ?setbuf@?$basic_streambuf@GU?$char_traits@G@std@@@std@@MEAAPEAV12@PEAG_J@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_setbuf, 12)
|
|
|
|
#define call_basic_streambuf_wchar_setbuf(this, buf, count) CALL_VTBL_FUNC(this, 44, \
|
|
|
|
basic_streambuf_wchar*, (basic_streambuf_wchar*, wchar_t*, streamsize), (this, buf, count))
|
|
|
|
basic_streambuf_wchar* __thiscall basic_streambuf_wchar_setbuf(basic_streambuf_wchar *this, wchar_t *buf, streamsize count)
|
|
|
|
{
|
2012-06-06 12:49:05 +00:00
|
|
|
TRACE("(%p %p %ld)\n", this, buf, count);
|
2012-03-28 09:21:26 +00:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?pubsetbuf@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QAEPAV12@PA_WH@Z */
|
|
|
|
/* ?pubsetbuf@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QEAAPEAV12@PEA_W_J@Z */
|
|
|
|
/* ?pubsetbuf@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QAEPAV12@PAGH@Z */
|
|
|
|
/* ?pubsetbuf@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QEAAPEAV12@PEAG_J@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_pubsetbuf, 12)
|
|
|
|
basic_streambuf_wchar* __thiscall basic_streambuf_wchar_pubsetbuf(basic_streambuf_wchar *this, wchar_t *buf, streamsize count)
|
|
|
|
{
|
2012-06-06 12:49:05 +00:00
|
|
|
TRACE("(%p %p %ld)\n", this, buf, count);
|
2012-03-28 09:21:26 +00:00
|
|
|
return call_basic_streambuf_wchar_setbuf(this, buf, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?sync@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MAEHXZ */
|
|
|
|
/* ?sync@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MEAAHXZ */
|
|
|
|
/* ?sync@?$basic_streambuf@GU?$char_traits@G@std@@@std@@MAEHXZ */
|
|
|
|
/* ?sync@?$basic_streambuf@GU?$char_traits@G@std@@@std@@MEAAHXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_sync, 4)
|
|
|
|
#define call_basic_streambuf_wchar_sync(this) CALL_VTBL_FUNC(this, 48, \
|
|
|
|
int, (basic_streambuf_wchar*), (this))
|
|
|
|
int __thiscall basic_streambuf_wchar_sync(basic_streambuf_wchar *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?pubsync@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QAEHXZ */
|
|
|
|
/* ?pubsync@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QEAAHXZ */
|
|
|
|
/* ?pubsync@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QAEHXZ */
|
|
|
|
/* ?pubsync@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QEAAHXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_pubsync, 4)
|
|
|
|
int __thiscall basic_streambuf_wchar_pubsync(basic_streambuf_wchar *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return call_basic_streambuf_wchar_sync(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?sgetn@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QAEHPA_WH@Z */
|
|
|
|
/* ?sgetn@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QEAA_JPEA_W_J@Z */
|
|
|
|
/* ?sgetn@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QAEHPAGH@Z */
|
|
|
|
/* ?sgetn@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QEAA_JPEAG_J@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_sgetn, 12)
|
|
|
|
streamsize __thiscall basic_streambuf_wchar_sgetn(basic_streambuf_wchar *this, wchar_t *ptr, streamsize count)
|
|
|
|
{
|
2012-06-06 12:49:05 +00:00
|
|
|
TRACE("(%p %p %ld)\n", this, ptr, count);
|
2012-03-28 09:21:26 +00:00
|
|
|
return call_basic_streambuf_wchar__Xsgetn_s(this, ptr, -1, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?showmanyc@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MAEHXZ */
|
|
|
|
/* ?showmanyc@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MEAA_JXZ */
|
|
|
|
/* ?showmanyc@?$basic_streambuf@GU?$char_traits@G@std@@@std@@MAEHXZ */
|
|
|
|
/* ?showmanyc@?$basic_streambuf@GU?$char_traits@G@std@@@std@@MEAA_JXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_showmanyc, 4)
|
|
|
|
#define call_basic_streambuf_wchar_showmanyc(this) CALL_VTBL_FUNC(this, 12, \
|
|
|
|
streamsize, (basic_streambuf_wchar*), (this))
|
|
|
|
streamsize __thiscall basic_streambuf_wchar_showmanyc(basic_streambuf_wchar *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?in_avail@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QAEHXZ */
|
|
|
|
/* ?in_avail@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QEAA_JXZ */
|
|
|
|
/* ?in_avail@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QAEHXZ */
|
|
|
|
/* ?in_avail@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QEAA_JXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_in_avail, 4)
|
|
|
|
streamsize __thiscall basic_streambuf_wchar_in_avail(basic_streambuf_wchar *this)
|
|
|
|
{
|
|
|
|
streamsize ret;
|
|
|
|
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
|
|
|
|
ret = basic_streambuf_wchar__Gnavail(this);
|
|
|
|
return ret ? ret : call_basic_streambuf_wchar_showmanyc(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?sputbackc@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QAEG_W@Z */
|
|
|
|
/* ?sputbackc@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QEAAG_W@Z */
|
|
|
|
/* ?sputbackc@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QAEGG@Z */
|
|
|
|
/* ?sputbackc@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QEAAGG@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_sputbackc, 8)
|
|
|
|
unsigned short __thiscall basic_streambuf_wchar_sputbackc(basic_streambuf_wchar *this, wchar_t ch)
|
|
|
|
{
|
|
|
|
TRACE("(%p %d)\n", this, ch);
|
|
|
|
if(*this->prpos && *this->prpos>*this->prbuf && (*this->prpos)[-1]==ch) {
|
|
|
|
(*this->prsize)++;
|
|
|
|
(*this->prpos)--;
|
|
|
|
return ch;
|
|
|
|
}
|
|
|
|
|
|
|
|
return call_basic_streambuf_wchar_pbackfail(this, ch);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?sputc@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QAEG_W@Z */
|
|
|
|
/* ?sputc@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QEAAG_W@Z */
|
|
|
|
/* ?sputc@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QAEGG@Z */
|
|
|
|
/* ?sputc@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QEAAHG@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_sputc, 8)
|
|
|
|
unsigned short __thiscall basic_streambuf_wchar_sputc(basic_streambuf_wchar *this, wchar_t ch)
|
|
|
|
{
|
|
|
|
TRACE("(%p %d)\n", this, ch);
|
|
|
|
return basic_streambuf_wchar__Pnavail(this) ?
|
|
|
|
(*basic_streambuf_wchar__Pninc(this) = ch) :
|
|
|
|
call_basic_streambuf_wchar_overflow(this, ch);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?sungetc@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QAEGXZ */
|
|
|
|
/* ?sungetc@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QEAAGXZ */
|
|
|
|
/* ?sungetc@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QAEGXZ */
|
|
|
|
/* ?sungetc@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QEAAGXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_sungetc, 4)
|
|
|
|
unsigned short __thiscall basic_streambuf_wchar_sungetc(basic_streambuf_wchar *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
if(*this->prpos && *this->prpos>*this->prbuf) {
|
|
|
|
(*this->prsize)++;
|
|
|
|
(*this->prpos)--;
|
|
|
|
return **this->prpos;
|
|
|
|
}
|
|
|
|
|
|
|
|
return call_basic_streambuf_wchar_pbackfail(this, WEOF);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?stossc@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QAEXXZ */
|
|
|
|
/* ?stossc@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QEAAXXZ */
|
|
|
|
/* ?stossc@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QAEXXZ */
|
|
|
|
/* ?stossc@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QEAAXXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_stossc, 4)
|
|
|
|
void __thiscall basic_streambuf_wchar_stossc(basic_streambuf_wchar *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
if(basic_streambuf_wchar__Gnavail(this))
|
|
|
|
basic_streambuf_wchar__Gninc(this);
|
|
|
|
else
|
|
|
|
call_basic_streambuf_wchar_uflow(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?sbumpc@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QAEGXZ */
|
|
|
|
/* ?sbumpc@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QEAAGXZ */
|
|
|
|
/* ?sbumpc@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QAEGXZ */
|
|
|
|
/* ?sbumpc@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QEAAGXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_sbumpc, 4)
|
|
|
|
unsigned short __thiscall basic_streambuf_wchar_sbumpc(basic_streambuf_wchar *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return basic_streambuf_wchar__Gnavail(this) ?
|
|
|
|
*basic_streambuf_wchar__Gninc(this) : call_basic_streambuf_wchar_uflow(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?sgetc@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QAEGXZ */
|
|
|
|
/* ?sgetc@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QEAAGXZ */
|
|
|
|
/* ?sgetc@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QAEGXZ */
|
|
|
|
/* ?sgetc@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QEAAGXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_sgetc, 4)
|
|
|
|
unsigned short __thiscall basic_streambuf_wchar_sgetc(basic_streambuf_wchar *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return basic_streambuf_wchar__Gnavail(this) ?
|
|
|
|
*basic_streambuf_wchar_gptr(this) : call_basic_streambuf_wchar_underflow(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?snextc@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QAEGXZ */
|
|
|
|
/* ?snextc@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QEAAGXZ */
|
|
|
|
/* ?snextc@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QAEGXZ */
|
|
|
|
/* ?snextc@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QEAAGXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_snextc, 4)
|
|
|
|
unsigned short __thiscall basic_streambuf_wchar_snextc(basic_streambuf_wchar *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
|
|
|
|
if(basic_streambuf_wchar__Gnavail(this) > 1)
|
|
|
|
return *basic_streambuf_wchar__Gnpreinc(this);
|
|
|
|
return basic_streambuf_wchar_sbumpc(this)==WEOF ?
|
|
|
|
WEOF : basic_streambuf_wchar_sgetc(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?xsgetn@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MAEHPA_WH@Z */
|
|
|
|
/* ?xsgetn@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MEAA_JPEA_W_J@Z */
|
|
|
|
/* ?xsgetn@?$basic_streambuf@GU?$char_traits@G@std@@@std@@MAEHPAGH@Z */
|
|
|
|
/* ?xsgetn@?$basic_streambuf@GU?$char_traits@G@std@@@std@@MEAA_JPEAG_J@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_xsgetn, 12)
|
|
|
|
#define call_basic_streambuf_wchar_xsgetn(this, ptr, count) CALL_VTBL_FUNC(this, 24, \
|
|
|
|
streamsize, (basic_streambuf_wchar*, wchar_t*, streamsize), (this, ptr, count))
|
|
|
|
streamsize __thiscall basic_streambuf_wchar_xsgetn(basic_streambuf_wchar *this, wchar_t *ptr, streamsize count)
|
|
|
|
{
|
2012-06-06 12:49:05 +00:00
|
|
|
TRACE("(%p %p %ld)\n", this, ptr, count);
|
2012-03-28 09:21:26 +00:00
|
|
|
return call_basic_streambuf_wchar__Xsgetn_s(this, ptr, -1, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?xsputn@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MAEHPB_WH@Z */
|
|
|
|
/* ?xsputn@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@MEAA_JPEB_W_J@Z */
|
|
|
|
/* ?xsputn@?$basic_streambuf@GU?$char_traits@G@std@@@std@@MAEHPBGH@Z */
|
|
|
|
/* ?xsputn@?$basic_streambuf@GU?$char_traits@G@std@@@std@@MEAA_JPEBG_J@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_xsputn, 12)
|
|
|
|
#define call_basic_streambuf_wchar_xsputn(this, ptr, count) CALL_VTBL_FUNC(this, 32, \
|
|
|
|
streamsize, (basic_streambuf_wchar*, const wchar_t*, streamsize), (this, ptr, count))
|
|
|
|
streamsize __thiscall basic_streambuf_wchar_xsputn(basic_streambuf_wchar *this, const wchar_t *ptr, streamsize count)
|
|
|
|
{
|
|
|
|
streamsize copied, chunk;
|
|
|
|
|
2012-06-06 12:49:05 +00:00
|
|
|
TRACE("(%p %p %ld)\n", this, ptr, count);
|
2012-03-28 09:21:26 +00:00
|
|
|
|
|
|
|
for(copied=0; copied<count;) {
|
|
|
|
chunk = basic_streambuf_wchar__Pnavail(this);
|
|
|
|
if(chunk > count-copied)
|
|
|
|
chunk = count-copied;
|
|
|
|
|
|
|
|
if(chunk) {
|
|
|
|
memcpy(*this->pwpos, ptr+copied, chunk);
|
|
|
|
*this->pwpos += chunk;
|
|
|
|
*this->pwsize -= chunk;
|
|
|
|
copied += chunk;
|
|
|
|
}else if(call_basic_streambuf_wchar_overflow(this, ptr[copied]) != WEOF) {
|
|
|
|
copied++;
|
|
|
|
}else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return copied;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?sputn@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QAEHPB_WH@Z */
|
|
|
|
/* ?sputn@?$basic_streambuf@_WU?$char_traits@_W@std@@@std@@QEAA_JPEB_W_J@Z */
|
|
|
|
/* ?sputn@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QAEHPBGH@Z */
|
|
|
|
/* ?sputn@?$basic_streambuf@GU?$char_traits@G@std@@@std@@QEAA_JPEBG_J@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_streambuf_wchar_sputn, 12)
|
|
|
|
streamsize __thiscall basic_streambuf_wchar_sputn(basic_streambuf_wchar *this, const wchar_t *ptr, streamsize count)
|
|
|
|
{
|
2012-06-06 12:49:05 +00:00
|
|
|
TRACE("(%p %p %ld)\n", this, ptr, count);
|
2012-03-28 09:21:26 +00:00
|
|
|
return call_basic_streambuf_wchar_xsputn(this, ptr, count);
|
|
|
|
}
|
|
|
|
|
2012-06-12 16:13:06 +00:00
|
|
|
/* ?_Stinit@?1??_Init@?$basic_filebuf@DU?$char_traits@D@std@@@std@@IAEXPAU_iobuf@@W4_Initfl@23@@Z@4HA */
|
|
|
|
/* ?_Stinit@?1??_Init@?$basic_filebuf@DU?$char_traits@D@std@@@std@@IEAAXPEAU_iobuf@@W4_Initfl@23@@Z@4HA */
|
|
|
|
int basic_filebuf_char__Init__Stinit = 0;
|
|
|
|
|
|
|
|
/* ?_Init@?$basic_filebuf@DU?$char_traits@D@std@@@std@@IAEXPAU_iobuf@@W4_Initfl@12@@Z */
|
|
|
|
/* ?_Init@?$basic_filebuf@DU?$char_traits@D@std@@@std@@IEAAXPEAU_iobuf@@W4_Initfl@12@@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_filebuf_char__Init, 12)
|
|
|
|
void __thiscall basic_filebuf_char__Init(basic_filebuf_char *this, FILE *file, basic_filebuf__Initfl which)
|
|
|
|
{
|
|
|
|
TRACE("(%p %p %d)\n", this, file, which);
|
|
|
|
|
|
|
|
this->cvt = NULL;
|
|
|
|
this->wrotesome = FALSE;
|
|
|
|
this->state = basic_filebuf_char__Init__Stinit;
|
|
|
|
this->close = (which == INITFL_open);
|
|
|
|
this->file = file;
|
|
|
|
|
|
|
|
basic_streambuf_char__Init_empty(&this->base);
|
|
|
|
if(file)
|
|
|
|
basic_streambuf_char__Init(&this->base, &file->_base, &file->_ptr,
|
|
|
|
&file->_cnt, &file->_base, &file->_ptr, &file->_cnt);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?_Initcvt@?$basic_filebuf@DU?$char_traits@D@std@@@std@@IAEXPAV?$codecvt@DDH@2@@Z */
|
|
|
|
/* ?_Initcvt@?$basic_filebuf@DU?$char_traits@D@std@@@std@@IEAAXPEAV?$codecvt@DDH@2@@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_filebuf_char__Initcvt, 8)
|
|
|
|
void __thiscall basic_filebuf_char__Initcvt(basic_filebuf_char *this, codecvt_char *cvt)
|
|
|
|
{
|
|
|
|
TRACE("(%p %p)\n", this, cvt);
|
|
|
|
|
|
|
|
if(codecvt_base_always_noconv(&cvt->base)) {
|
|
|
|
this->cvt = NULL;
|
|
|
|
}else {
|
|
|
|
basic_streambuf_char__Init_empty(&this->base);
|
|
|
|
this->cvt = cvt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?_Endwrite@?$basic_filebuf@DU?$char_traits@D@std@@@std@@IAE_NXZ */
|
|
|
|
/* ?_Endwrite@?$basic_filebuf@DU?$char_traits@D@std@@@std@@IEAA_NXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_filebuf_char__Endwrite, 4)
|
|
|
|
MSVCP_bool __thiscall basic_filebuf_char__Endwrite(basic_filebuf_char *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
|
|
|
|
if(!this->wrotesome || !this->cvt)
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
|
|
|
|
if(call_basic_streambuf_char_overflow(&this->base, EOF) == EOF)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
while(1) {
|
|
|
|
/* TODO: check if we need a dynamic buffer here */
|
|
|
|
char buf[128];
|
|
|
|
char *next;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = codecvt_char_unshift(this->cvt, &this->state, buf, buf+sizeof(buf), &next);
|
|
|
|
switch(ret) {
|
|
|
|
case CODECVT_ok:
|
|
|
|
this->wrotesome = FALSE;
|
|
|
|
/* fall through */
|
|
|
|
case CODECVT_partial:
|
|
|
|
if(!fwrite(buf, next-buf, 1, this->file))
|
|
|
|
return FALSE;
|
|
|
|
if(this->wrotesome)
|
|
|
|
break;
|
|
|
|
/* fall through */
|
|
|
|
case CODECVT_noconv:
|
|
|
|
if(call_basic_streambuf_char_overflow(&this->base, EOF) == EOF)
|
|
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
|
|
default:
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?close@?$basic_filebuf@DU?$char_traits@D@std@@@std@@QAEPAV12@XZ */
|
|
|
|
/* ?close@?$basic_filebuf@DU?$char_traits@D@std@@@std@@QEAAPEAV12@XZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_filebuf_char_close, 4)
|
|
|
|
basic_filebuf_char* __thiscall basic_filebuf_char_close(basic_filebuf_char *this)
|
|
|
|
{
|
|
|
|
basic_filebuf_char *ret = this;
|
|
|
|
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
|
|
|
|
if(!this->file)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/* TODO: handle exceptions */
|
|
|
|
if(!basic_filebuf_char__Endwrite(this))
|
|
|
|
ret = NULL;
|
|
|
|
if(!fclose(this->file))
|
|
|
|
ret = NULL;
|
|
|
|
|
|
|
|
basic_filebuf_char__Init(this, NULL, INITFL_close);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??0?$basic_filebuf@DU?$char_traits@D@std@@@std@@QAE@PAU_iobuf@@@Z */
|
|
|
|
/* ??0?$basic_filebuf@DU?$char_traits@D@std@@@std@@QEAA@PEAU_iobuf@@@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_filebuf_char_ctor_file, 8)
|
|
|
|
basic_filebuf_char* __thiscall basic_filebuf_char_ctor_file(basic_filebuf_char *this, FILE *file)
|
|
|
|
{
|
|
|
|
TRACE("(%p %p)\n", this, file);
|
|
|
|
|
|
|
|
basic_streambuf_char_ctor(&this->base);
|
|
|
|
this->base.vtable = &MSVCP_basic_filebuf_char_vtable;
|
|
|
|
|
|
|
|
basic_filebuf_char__Init(this, file, INITFL_new);
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??_F?$basic_filebuf@DU?$char_traits@D@std@@@std@@QAEXXZ */
|
|
|
|
/* ??_F?$basic_filebuf@DU?$char_traits@D@std@@@std@@QEAAXXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_filebuf_char_ctor, 4)
|
|
|
|
basic_filebuf_char* __thiscall basic_filebuf_char_ctor(basic_filebuf_char *this)
|
|
|
|
{
|
|
|
|
return basic_filebuf_char_ctor_file(this, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??0?$basic_filebuf@DU?$char_traits@D@std@@@std@@QAE@W4_Uninitialized@1@@Z */
|
|
|
|
/* ??0?$basic_filebuf@DU?$char_traits@D@std@@@std@@QEAA@W4_Uninitialized@1@@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_filebuf_char_ctor_uninitialized, 8)
|
|
|
|
basic_filebuf_char* __thiscall basic_filebuf_char_ctor_uninitialized(basic_filebuf_char *this, int uninitialized)
|
|
|
|
{
|
|
|
|
TRACE("(%p %d)\n", this, uninitialized);
|
|
|
|
|
|
|
|
basic_streambuf_char_ctor(&this->base);
|
|
|
|
this->base.vtable = &MSVCP_basic_filebuf_char_vtable;
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??1?$basic_filebuf@DU?$char_traits@D@std@@@std@@UAE@XZ */
|
|
|
|
/* ??1?$basic_filebuf@DU?$char_traits@D@std@@@std@@UEAA@XZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_filebuf_char_dtor, 4)
|
|
|
|
void __thiscall basic_filebuf_char_dtor(basic_filebuf_char *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
|
|
|
|
if(this->close)
|
|
|
|
basic_filebuf_char_close(this);
|
|
|
|
basic_streambuf_char_dtor(&this->base);
|
|
|
|
}
|
|
|
|
|
|
|
|
DEFINE_THISCALL_WRAPPER(MSVCP_basic_filebuf_char_vector_dtor, 8)
|
|
|
|
basic_filebuf_char* __thiscall MSVCP_basic_filebuf_char_vector_dtor(basic_filebuf_char *this, unsigned int flags)
|
|
|
|
{
|
|
|
|
TRACE("(%p %x)\n", this, flags);
|
|
|
|
if(flags & 2) {
|
|
|
|
/* we have an array, with the number of elements stored before the first object */
|
|
|
|
int i, *ptr = (int *)this-1;
|
|
|
|
|
|
|
|
for(i=*ptr-1; i>=0; i--)
|
|
|
|
basic_filebuf_char_dtor(this+i);
|
|
|
|
MSVCRT_operator_delete(ptr);
|
|
|
|
} else {
|
|
|
|
basic_filebuf_char_dtor(this);
|
|
|
|
if(flags & 1)
|
|
|
|
MSVCRT_operator_delete(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?is_open@?$basic_filebuf@DU?$char_traits@D@std@@@std@@QBE_NXZ */
|
|
|
|
/* ?is_open@?$basic_filebuf@DU?$char_traits@D@std@@@std@@QEBA_NXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_filebuf_char_is_open, 4)
|
|
|
|
MSVCP_bool __thiscall basic_filebuf_char_is_open(const basic_filebuf_char *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return this->file != NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?open@?$basic_filebuf@DU?$char_traits@D@std@@@std@@QAEPAV12@PB_WHH@Z */
|
|
|
|
/* ?open@?$basic_filebuf@DU?$char_traits@D@std@@@std@@QEAAPEAV12@PEB_WHH@Z */
|
|
|
|
/* ?open@?$basic_filebuf@DU?$char_traits@D@std@@@std@@QAEPAV12@PBGHH@Z */
|
|
|
|
/* ?open@?$basic_filebuf@DU?$char_traits@D@std@@@std@@QEAAPEAV12@PEBGHH@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_filebuf_char_open_wchar, 16)
|
|
|
|
basic_filebuf_char* __thiscall basic_filebuf_char_open_wchar(basic_filebuf_char *this, const wchar_t *name, int mode, int prot)
|
|
|
|
{
|
|
|
|
static const wchar_t rW[] = {'r',0};
|
|
|
|
static const struct {
|
|
|
|
int mode;
|
|
|
|
const wchar_t str[4];
|
|
|
|
const wchar_t str_bin[4];
|
|
|
|
} str_mode[] = {
|
|
|
|
{OPENMODE_out, {'w',0}, {'w','b',0}},
|
|
|
|
{OPENMODE_out|OPENMODE_app, {'a',0}, {'a','b',0}},
|
|
|
|
{OPENMODE_app, {'a',0}, {'a','b',0}},
|
|
|
|
{OPENMODE_out|OPENMODE_trunc, {'w',0}, {'w','b',0}},
|
|
|
|
{OPENMODE_in, {'r',0}, {'r','b',0}},
|
|
|
|
{OPENMODE_in|OPENMODE_out, {'r','+',0}, {'r','+','b',0}},
|
|
|
|
{OPENMODE_in|OPENMODE_out|OPENMODE_trunc, {'w','+',0}, {'w','+','b',0}},
|
|
|
|
{OPENMODE_in|OPENMODE_out|OPENMODE_app, {'a','+',0}, {'a','+','b',0}},
|
|
|
|
{OPENMODE_in|OPENMODE_app, {'a','+',0}, {'a','+','b',0}}
|
|
|
|
};
|
|
|
|
|
|
|
|
int real_mode = mode & ~(OPENMODE_ate|OPENMODE__Nocreate|OPENMODE__Noreplace|OPENMODE_binary);
|
|
|
|
int mode_idx;
|
|
|
|
FILE *f = NULL;
|
|
|
|
|
|
|
|
TRACE("(%p %s %d %d)\n", this, debugstr_w(name), mode, prot);
|
|
|
|
|
|
|
|
if(basic_filebuf_char_is_open(this))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
for(mode_idx=0; mode_idx<sizeof(str_mode)/sizeof(str_mode[0]); mode_idx++)
|
|
|
|
if(str_mode[mode_idx].mode == real_mode)
|
|
|
|
break;
|
|
|
|
if(mode_idx == sizeof(str_mode)/sizeof(str_mode[0]))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if((mode & OPENMODE__Nocreate) && !(f = _wfopen(name, rW)))
|
|
|
|
return NULL;
|
|
|
|
else if(f)
|
|
|
|
fclose(f);
|
|
|
|
|
|
|
|
if((mode & OPENMODE__Noreplace) && (mode & (OPENMODE_out|OPENMODE_app))
|
|
|
|
&& (f = _wfopen(name, rW))) {
|
|
|
|
fclose(f);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
f = _wfsopen(name, (mode & OPENMODE_binary) ? str_mode[mode_idx].str_bin
|
|
|
|
: str_mode[mode_idx].str, prot);
|
|
|
|
if(!f)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if((mode & OPENMODE_ate) && fseek(f, 0, SEEK_END)) {
|
|
|
|
fclose(f);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
basic_filebuf_char__Init(this, f, INITFL_open);
|
|
|
|
basic_filebuf_char__Initcvt(this, codecvt_char_use_facet(this->base.loc));
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?open@?$basic_filebuf@DU?$char_traits@D@std@@@std@@QAEPAV12@PB_WI@Z */
|
|
|
|
/* ?open@?$basic_filebuf@DU?$char_traits@D@std@@@std@@QEAAPEAV12@PEB_WI@Z */
|
|
|
|
/* ?open@?$basic_filebuf@DU?$char_traits@D@std@@@std@@QAEPAV12@PBGI@Z */
|
|
|
|
/* ?open@?$basic_filebuf@DU?$char_traits@D@std@@@std@@QEAAPEAV12@PEBGI@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_filebuf_char_open_wchar_mode, 12)
|
|
|
|
basic_filebuf_char* __thiscall basic_filebuf_char_open_wchar_mode(basic_filebuf_char *this, const wchar_t *name, unsigned int mode)
|
|
|
|
{
|
|
|
|
return basic_filebuf_char_open_wchar(this, name, mode, SH_DENYNO);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?open@?$basic_filebuf@DU?$char_traits@D@std@@@std@@QAEPAV12@PBDHH@Z */
|
|
|
|
/* ?open@?$basic_filebuf@DU?$char_traits@D@std@@@std@@QEAAPEAV12@PEBDHH@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_filebuf_char_open, 16)
|
|
|
|
basic_filebuf_char* __thiscall basic_filebuf_char_open(basic_filebuf_char *this, const char *name, int mode, int prot)
|
|
|
|
{
|
|
|
|
wchar_t nameW[FILENAME_MAX];
|
|
|
|
|
|
|
|
TRACE("(%p %s %d %d)\n", this, name, mode, prot);
|
|
|
|
|
|
|
|
if(mbstowcs_s(NULL, nameW, FILENAME_MAX, name, FILENAME_MAX-1) != 0)
|
|
|
|
return NULL;
|
|
|
|
return basic_filebuf_char_open_wchar(this, nameW, mode, prot);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?open@?$basic_filebuf@DU?$char_traits@D@std@@@std@@QAEPAV12@PBDI@Z */
|
|
|
|
/* ?open@?$basic_filebuf@DU?$char_traits@D@std@@@std@@QEAAPEAV12@PEBDI@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_filebuf_char_open_mode, 12)
|
|
|
|
basic_filebuf_char* __thiscall basic_filebuf_char_open_mode(basic_filebuf_char *this, const char *name, unsigned int mode)
|
|
|
|
{
|
|
|
|
return basic_filebuf_char_open(this, name, mode, SH_DENYNO);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?overflow@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAEHH@Z */
|
|
|
|
/* ?overflow@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MEAAHH@Z */
|
|
|
|
#define call_basic_filebuf_char_overflow(this, c) CALL_VTBL_FUNC(this, 4, \
|
|
|
|
int, (basic_filebuf_char*, int), (this, c))
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_filebuf_char_overflow, 8)
|
|
|
|
int __thiscall basic_filebuf_char_overflow(basic_filebuf_char *this, int c)
|
|
|
|
{
|
|
|
|
char buf[8], *dyn_buf;
|
|
|
|
char ch = c, *to_next;
|
|
|
|
const char *from_next;
|
|
|
|
int ret, max_size;
|
|
|
|
|
|
|
|
|
|
|
|
TRACE("(%p %d)\n", this, c);
|
|
|
|
|
|
|
|
if(!basic_filebuf_char_is_open(this))
|
|
|
|
return EOF;
|
|
|
|
if(c == EOF)
|
|
|
|
return !c;
|
|
|
|
|
|
|
|
if(!this->cvt)
|
|
|
|
return fwrite(&ch, sizeof(char), 1, this->file) ? c : EOF;
|
|
|
|
|
|
|
|
from_next = &ch;
|
|
|
|
do {
|
|
|
|
ret = codecvt_char_out(this->cvt, &this->state, from_next, &ch+1,
|
|
|
|
&from_next, buf, buf+sizeof(buf), &to_next);
|
|
|
|
|
|
|
|
switch(ret) {
|
|
|
|
case CODECVT_partial:
|
|
|
|
if(to_next == buf)
|
|
|
|
break;
|
|
|
|
/* fall through */
|
|
|
|
case CODECVT_ok:
|
|
|
|
if(!fwrite(buf, to_next-buf, 1, this->file))
|
|
|
|
return EOF;
|
|
|
|
if(ret == CODECVT_partial)
|
|
|
|
continue;
|
|
|
|
return c;
|
|
|
|
case CODECVT_noconv:
|
|
|
|
return fwrite(&ch, sizeof(char), 1, this->file) ? c : EOF;
|
|
|
|
default:
|
|
|
|
return EOF;
|
|
|
|
}
|
|
|
|
} while(0);
|
|
|
|
|
|
|
|
max_size = codecvt_base_max_length(&this->cvt->base);
|
|
|
|
dyn_buf = malloc(max_size);
|
|
|
|
if(!dyn_buf)
|
|
|
|
return EOF;
|
|
|
|
|
|
|
|
ret = codecvt_char_out(this->cvt, &this->state, from_next, &ch+1,
|
|
|
|
&from_next, dyn_buf, dyn_buf+max_size, &to_next);
|
|
|
|
|
|
|
|
switch(ret) {
|
|
|
|
case CODECVT_ok:
|
|
|
|
ret = fwrite(dyn_buf, to_next-dyn_buf, 1, this->file);
|
|
|
|
free(dyn_buf);
|
|
|
|
return ret ? c : EOF;
|
|
|
|
case CODECVT_partial:
|
|
|
|
ERR("buffer should be big enough to store all output\n");
|
|
|
|
/* fall through */
|
|
|
|
default:
|
|
|
|
free(dyn_buf);
|
|
|
|
return EOF;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?pbackfail@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAEHH@Z */
|
|
|
|
/* ?pbackfail@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MEAAHH@Z */
|
|
|
|
#define call_basic_filebuf_char_pbackfail(this, c) CALL_VTBL_FUNC(this, 8, \
|
|
|
|
int, (basic_filebuf_char*, int), (this, c))
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_filebuf_char_pbackfail, 8)
|
|
|
|
int __thiscall basic_filebuf_char_pbackfail(basic_filebuf_char *this, int c)
|
|
|
|
{
|
|
|
|
TRACE("(%p %d)\n", this, c);
|
|
|
|
|
|
|
|
if(!basic_filebuf_char_is_open(this))
|
|
|
|
return EOF;
|
|
|
|
|
|
|
|
if(basic_streambuf_char_gptr(&this->base)>basic_streambuf_char_eback(&this->base)
|
|
|
|
&& (c==EOF || basic_streambuf_char_gptr(&this->base)[-1]==(char)c)) {
|
|
|
|
basic_streambuf_char__Gndec(&this->base);
|
|
|
|
return c==EOF ? !c : c;
|
|
|
|
}else if(c!=EOF && !this->cvt) {
|
|
|
|
return ungetc(c, this->file);
|
|
|
|
}
|
|
|
|
|
|
|
|
return EOF;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?uflow@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAEHXZ */
|
|
|
|
/* ?uflow@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MEAAHXZ */
|
|
|
|
#define call_basic_filebuf_char_uflow(this) CALL_VTBL_FUNC(this, 20, \
|
|
|
|
int, (basic_filebuf_char*), (this))
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_filebuf_char_uflow, 4)
|
|
|
|
int __thiscall basic_filebuf_char_uflow(basic_filebuf_char *this)
|
|
|
|
{
|
|
|
|
char ch, buf[128], *to_next;
|
|
|
|
const char *buf_next;
|
|
|
|
int c, i;
|
|
|
|
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
|
|
|
|
if(!basic_filebuf_char_is_open(this))
|
|
|
|
return EOF;
|
|
|
|
|
|
|
|
if(basic_streambuf_char_gptr(&this->base) < basic_streambuf_char_egptr(&this->base))
|
|
|
|
return *basic_streambuf_char__Gninc(&this->base);
|
|
|
|
|
|
|
|
c = fgetc(this->file);
|
|
|
|
if(!this->cvt || !c)
|
|
|
|
return c;
|
|
|
|
|
|
|
|
buf_next = buf;
|
|
|
|
for(i=0; i < sizeof(buf)/sizeof(char); i++) {
|
|
|
|
buf[i] = c;
|
|
|
|
|
|
|
|
switch(codecvt_char_in(this->cvt, &this->state, buf_next,
|
|
|
|
buf+i+1, &buf_next, &ch, &ch+1, &to_next)) {
|
|
|
|
case CODECVT_partial:
|
|
|
|
case CODECVT_ok:
|
|
|
|
if(to_next == &ch) {
|
|
|
|
c = fgetc(this->file);
|
|
|
|
if(!c)
|
|
|
|
return EOF;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(i--; i>=buf_next-buf; i--)
|
|
|
|
ungetc(buf[i], this->file);
|
|
|
|
return ch;
|
|
|
|
case CODECVT_noconv:
|
|
|
|
return buf[0];
|
|
|
|
default:
|
|
|
|
return EOF;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
FIXME("buffer is to small\n");
|
|
|
|
return EOF;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?underflow@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAEHXZ */
|
|
|
|
/* ?underflow@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MEAAHXZ */
|
|
|
|
#define call_basic_filebuf_char_underflow(this) CALL_VTBL_FUNC(this, 16, \
|
|
|
|
int, (basic_filebuf_char*), (this))
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_filebuf_char_underflow, 4)
|
|
|
|
int __thiscall basic_filebuf_char_underflow(basic_filebuf_char *this)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
|
|
|
|
if(basic_streambuf_char_gptr(&this->base) < basic_streambuf_char_egptr(&this->base))
|
|
|
|
return *basic_streambuf_char_gptr(&this->base);
|
|
|
|
|
|
|
|
ret = call_basic_filebuf_char_uflow(this);
|
|
|
|
if(ret)
|
|
|
|
ret = call_basic_filebuf_char_pbackfail(this, ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?seekoff@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAE?AV?$fpos@H@2@JHH@Z */
|
|
|
|
/* ?seekoff@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MEAA?AV?$fpos@H@2@_JHH@Z */
|
|
|
|
#define call_basic_filebuf_char_seekoff(this, ret, off, way, mode) CALL_VTBL_FUNC(this, 36, \
|
|
|
|
fpos_int*, (basic_filebuf_char*, fpos_int*, streamoff, int, int), (this, ret, off, way, mode))
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_filebuf_char_seekoff, 20)
|
|
|
|
fpos_int* __thiscall basic_filebuf_char_seekoff(basic_filebuf_char *this,
|
|
|
|
fpos_int *ret, streamoff off, int way, int mode)
|
|
|
|
{
|
|
|
|
fpos_t pos;
|
|
|
|
|
|
|
|
TRACE("(%p %p %ld %d %d)\n", this, ret, off, way, mode);
|
|
|
|
|
|
|
|
if(!basic_filebuf_char_is_open(this) || !basic_filebuf_char__Endwrite(this)
|
|
|
|
|| fseek(this->file, off, way)) {
|
|
|
|
ret->off = 0;
|
|
|
|
ret->pos = -1;
|
|
|
|
ret->state = 0;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
fgetpos(this->file, &pos);
|
|
|
|
ret->off = 0;
|
|
|
|
ret->pos = pos;
|
|
|
|
ret->state = this->state;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?seekpos@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAE?AV?$fpos@H@2@V32@H@Z */
|
|
|
|
/* ?seekpos@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MEAA?AV?$fpos@H@2@V32@H@Z */
|
|
|
|
#define call_basic_filebuf_char_seekpos(this, ret, pos, mode) CALL_VTBL_FUNC(this, 40, \
|
|
|
|
fpos_int*, (basic_filebuf_char*, fpos_int*, fpos_int, mode), (this, ret, pos, mode))
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_filebuf_char_seekpos, 36)
|
|
|
|
fpos_int* __thiscall basic_filebuf_char_seekpos(basic_filebuf_char *this,
|
|
|
|
fpos_int *ret, fpos_int pos, int mode)
|
|
|
|
{
|
|
|
|
fpos_t fpos;
|
|
|
|
|
|
|
|
TRACE("(%p %p %s %d)\n", this, ret, debugstr_fpos_int(&pos), mode);
|
|
|
|
|
|
|
|
if(!basic_filebuf_char_is_open(this) || !basic_filebuf_char__Endwrite(this)
|
|
|
|
|| fseek(this->file, (LONG)pos.pos, SEEK_SET)
|
|
|
|
|| (pos.off && fseek(this->file, pos.off, SEEK_CUR))) {
|
|
|
|
ret->off = 0;
|
|
|
|
ret->pos = -1;
|
|
|
|
ret->state = 0;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
fgetpos(this->file, &fpos);
|
|
|
|
ret->off = 0;
|
|
|
|
ret->pos = fpos;
|
|
|
|
ret->state = this->state;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?setbuf@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAEPAV?$basic_streambuf@DU?$char_traits@D@std@@@2@PADH@Z */
|
|
|
|
/* ?setbuf@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MEAAPEAV?$basic_streambuf@DU?$char_traits@D@std@@@2@PEAD_J@Z */
|
|
|
|
#define call_basic_filebuf_char_setbuf(this, buf, count) CALL_VTBL_FUNC(this, 44, \
|
|
|
|
basic_streambuf_char*, (basic_filebuf_char*, char*, streamsize), (this, buf, count))
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_filebuf_char_setbuf, 12)
|
|
|
|
basic_streambuf_char* __thiscall basic_filebuf_char_setbuf(basic_filebuf_char *this, char *buf, streamsize count)
|
|
|
|
{
|
|
|
|
TRACE("(%p %p %ld)\n", this, buf, count);
|
|
|
|
|
|
|
|
if(!basic_filebuf_char_is_open(this))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if(setvbuf(this->file, buf, (buf==NULL && count==0) ? _IONBF : _IOFBF, count))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
basic_filebuf_char__Init(this, this->file, INITFL_open);
|
|
|
|
return &this->base;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?sync@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAEHXZ */
|
|
|
|
/* ?sync@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MEAAHXZ */
|
|
|
|
#define call_basic_filebuf_char_sync(this) CALL_VTBL_FUNC(this, 48, \
|
|
|
|
int, (basic_filebuf_char*), (this))
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_filebuf_char_sync, 4)
|
|
|
|
int __thiscall basic_filebuf_char_sync(basic_filebuf_char *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
|
|
|
|
if(!basic_filebuf_char_is_open(this))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if(call_basic_filebuf_char_overflow(this, EOF) == EOF)
|
|
|
|
return 0;
|
|
|
|
return fflush(this->file);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?imbue@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAEXABVlocale@2@@Z */
|
|
|
|
/* ?imbue@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MEAAXAEBVlocale@2@@Z */
|
|
|
|
#define call_basic_filebuf_char_imbue(this, loc) CALL_VTBL_FUNC(this, 52, \
|
|
|
|
void, (basic_filebuf_char*, const locale*), (this, loc))
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_filebuf_char_imbue, 8)
|
|
|
|
void __thiscall basic_filebuf_char_imbue(basic_filebuf_char *this, const locale *loc)
|
|
|
|
{
|
|
|
|
TRACE("(%p %p)\n", this, loc);
|
|
|
|
basic_filebuf_char__Initcvt(this, codecvt_char_use_facet(loc));
|
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ??0ios_base@std@@IAE@XZ */
|
|
|
|
/* ??0ios_base@std@@IEAA@XZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(ios_base_ctor, 4)
|
|
|
|
ios_base* __thiscall ios_base_ctor(ios_base *this)
|
2011-05-27 12:35:40 +00:00
|
|
|
{
|
2012-03-29 14:11:31 +00:00
|
|
|
TRACE("(%p)\n", this);
|
2012-03-28 09:20:56 +00:00
|
|
|
this->vtable = &MSVCP_ios_base_vtable;
|
2012-03-29 14:11:31 +00:00
|
|
|
return this;
|
2011-05-27 12:35:40 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ??0ios_base@std@@QAE@ABV01@@Z */
|
|
|
|
/* ??0ios_base@std@@QEAA@AEBV01@@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(ios_base_copy_ctor, 8)
|
|
|
|
ios_base* __thiscall ios_base_copy_ctor(ios_base *this, const ios_base *copy)
|
2011-05-27 12:35:40 +00:00
|
|
|
{
|
2012-03-29 14:11:31 +00:00
|
|
|
TRACE("(%p %p)\n", this, copy);
|
|
|
|
*this = *copy;
|
|
|
|
this->vtable = &MSVCP_ios_base_vtable;
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?_Callfns@ios_base@std@@AAEXW4event@12@@Z */
|
|
|
|
/* ?_Callfns@ios_base@std@@AEAAXW4event@12@@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(ios_base_Callfns, 8)
|
|
|
|
void __thiscall ios_base_Callfns(ios_base *this, IOS_BASE_event event)
|
|
|
|
{
|
|
|
|
IOS_BASE_fnarray *cur;
|
|
|
|
|
|
|
|
TRACE("(%p %x)\n", this, event);
|
|
|
|
|
|
|
|
for(cur=this->calls; cur; cur=cur->next)
|
|
|
|
cur->event_handler(event, this, cur->index);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?_Tidy@ios_base@std@@AAAXXZ */
|
|
|
|
/* ?_Tidy@ios_base@std@@AEAAXXZ */
|
|
|
|
void CDECL ios_base_Tidy(ios_base *this)
|
|
|
|
{
|
|
|
|
IOS_BASE_iosarray *arr_cur, *arr_next;
|
|
|
|
IOS_BASE_fnarray *event_cur, *event_next;
|
|
|
|
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
|
|
|
|
ios_base_Callfns(this, EVENT_erase_event);
|
|
|
|
|
|
|
|
for(arr_cur=this->arr; arr_cur; arr_cur=arr_next) {
|
|
|
|
arr_next = arr_cur->next;
|
|
|
|
MSVCRT_operator_delete(arr_cur);
|
|
|
|
}
|
|
|
|
this->arr = NULL;
|
|
|
|
|
|
|
|
for(event_cur=this->calls; event_cur; event_cur=event_next) {
|
|
|
|
event_next = event_cur->next;
|
|
|
|
MSVCRT_operator_delete(event_cur);
|
|
|
|
}
|
|
|
|
this->calls = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?_Ios_base_dtor@ios_base@std@@CAXPAV12@@Z */
|
|
|
|
/* ?_Ios_base_dtor@ios_base@std@@CAXPEAV12@@Z */
|
|
|
|
void CDECL ios_base_Ios_base_dtor(ios_base *obj)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", obj);
|
|
|
|
if(obj->loc) {
|
|
|
|
locale_dtor(obj->loc);
|
|
|
|
MSVCRT_operator_delete(obj->loc);
|
|
|
|
}
|
|
|
|
ios_base_Tidy(obj);
|
2011-05-27 12:35:40 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ??1ios_base@std@@UAE@XZ */
|
|
|
|
/* ??1ios_base@std@@UEAA@XZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(ios_base_dtor, 4)
|
|
|
|
void __thiscall ios_base_dtor(ios_base *this)
|
2011-05-27 12:35:40 +00:00
|
|
|
{
|
2012-03-29 14:11:31 +00:00
|
|
|
ios_base_Ios_base_dtor(this);
|
2011-05-27 12:35:40 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
DEFINE_THISCALL_WRAPPER(MSVCP_ios_base_vector_dtor, 8)
|
|
|
|
ios_base* __thiscall MSVCP_ios_base_vector_dtor(ios_base *this, unsigned int flags)
|
2011-05-27 12:35:40 +00:00
|
|
|
{
|
2012-03-29 14:11:31 +00:00
|
|
|
TRACE("(%p %x)\n", this, flags);
|
2011-05-27 12:35:40 +00:00
|
|
|
if(flags & 2) {
|
|
|
|
/* we have an array, with the number of elements stored before the first object */
|
|
|
|
int i, *ptr = (int *)this-1;
|
|
|
|
|
|
|
|
for(i=*ptr-1; i>=0; i--)
|
2012-03-28 09:20:56 +00:00
|
|
|
ios_base_dtor(this+i);
|
2011-05-27 12:35:40 +00:00
|
|
|
MSVCRT_operator_delete(ptr);
|
|
|
|
} else {
|
2012-03-28 09:20:56 +00:00
|
|
|
ios_base_dtor(this);
|
2011-05-27 12:35:40 +00:00
|
|
|
if(flags & 1)
|
|
|
|
MSVCRT_operator_delete(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
DEFINE_THISCALL_WRAPPER(MSVCP_iosb_vector_dtor, 8)
|
2012-03-29 14:11:31 +00:00
|
|
|
void* __thiscall MSVCP_iosb_vector_dtor(void *this, unsigned int flags)
|
|
|
|
{
|
|
|
|
TRACE("(%p %x)\n", this, flags);
|
|
|
|
if(flags & 2) {
|
|
|
|
int *ptr = (int *)this-1;
|
|
|
|
MSVCRT_operator_delete(ptr);
|
|
|
|
} else {
|
|
|
|
if(flags & 1)
|
|
|
|
MSVCRT_operator_delete(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?_Findarr@ios_base@std@@AAEAAU_Iosarray@12@H@Z */
|
|
|
|
/* ?_Findarr@ios_base@std@@AEAAAEAU_Iosarray@12@H@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(ios_base_Findarr, 8)
|
|
|
|
IOS_BASE_iosarray* __thiscall ios_base_Findarr(ios_base *this, int index)
|
|
|
|
{
|
|
|
|
IOS_BASE_iosarray *p;
|
|
|
|
|
|
|
|
TRACE("(%p %d)\n", this, index);
|
|
|
|
|
|
|
|
for(p=this->arr; p; p=p->next) {
|
|
|
|
if(p->index == index)
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(p=this->arr; p; p=p->next) {
|
|
|
|
if(!p->long_val && !p->ptr_val) {
|
|
|
|
p->index = index;
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
p = MSVCRT_operator_new(sizeof(IOS_BASE_iosarray));
|
|
|
|
p->next = this->arr;
|
|
|
|
p->index = index;
|
|
|
|
p->long_val = 0;
|
|
|
|
p->ptr_val = NULL;
|
|
|
|
this->arr = p;
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?iword@ios_base@std@@QAEAAJH@Z */
|
|
|
|
/* ?iword@ios_base@std@@QEAAAEAJH@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(ios_base_iword, 8)
|
|
|
|
LONG* __thiscall ios_base_iword(ios_base *this, int index)
|
|
|
|
{
|
|
|
|
TRACE("(%p %d)\n", this, index);
|
|
|
|
return &ios_base_Findarr(this, index)->long_val;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?pword@ios_base@std@@QAEAAPAXH@Z */
|
|
|
|
/* ?pword@ios_base@std@@QEAAAEAPEAXH@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(ios_base_pword, 8)
|
|
|
|
void** __thiscall ios_base_pword(ios_base *this, int index)
|
2011-05-27 12:35:40 +00:00
|
|
|
{
|
2012-03-29 14:11:31 +00:00
|
|
|
TRACE("(%p %d)\n", this, index);
|
|
|
|
return &ios_base_Findarr(this, index)->ptr_val;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?register_callback@ios_base@std@@QAEXP6AXW4event@12@AAV12@H@ZH@Z */
|
|
|
|
/* ?register_callback@ios_base@std@@QEAAXP6AXW4event@12@AEAV12@H@ZH@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(ios_base_register_callback, 12)
|
|
|
|
void __thiscall ios_base_register_callback(ios_base *this, IOS_BASE_event_callback callback, int index)
|
|
|
|
{
|
|
|
|
IOS_BASE_fnarray *event;
|
|
|
|
|
|
|
|
TRACE("(%p %p %d)\n", this, callback, index);
|
|
|
|
|
|
|
|
event = MSVCRT_operator_new(sizeof(IOS_BASE_fnarray));
|
|
|
|
event->next = this->calls;
|
|
|
|
event->index = index;
|
|
|
|
event->event_handler = callback;
|
|
|
|
this->calls = event;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?clear@ios_base@std@@QAEXH_N@Z */
|
|
|
|
/* ?clear@ios_base@std@@QEAAXH_N@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(ios_base_clear_reraise, 12)
|
|
|
|
void __thiscall ios_base_clear_reraise(ios_base *this, IOSB_iostate state, MSVCP_bool reraise)
|
|
|
|
{
|
|
|
|
TRACE("(%p %x %x)\n", this, state, reraise);
|
|
|
|
|
2012-03-29 14:13:13 +00:00
|
|
|
this->state = state & IOSTATE_mask;
|
|
|
|
if(!(this->state & this->except))
|
2012-03-29 14:11:31 +00:00
|
|
|
return;
|
|
|
|
|
2012-03-29 14:13:13 +00:00
|
|
|
if(reraise)
|
|
|
|
throw_exception(EXCEPTION_RERAISE, NULL);
|
|
|
|
else if(this->state & this->except & IOSTATE_eofbit)
|
2012-03-29 14:11:31 +00:00
|
|
|
throw_exception(EXCEPTION_FAILURE, "eofbit is set");
|
|
|
|
else if(this->state & this->except & IOSTATE_failbit)
|
|
|
|
throw_exception(EXCEPTION_FAILURE, "failbit is set");
|
|
|
|
else if(this->state & this->except & IOSTATE_badbit)
|
|
|
|
throw_exception(EXCEPTION_FAILURE, "badbit is set");
|
|
|
|
else if(this->state & this->except & IOSTATE__Hardfail)
|
|
|
|
throw_exception(EXCEPTION_FAILURE, "_Hardfail is set");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?clear@ios_base@std@@QAEXH@Z */
|
|
|
|
/* ?clear@ios_base@std@@QEAAXH@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(ios_base_clear, 8)
|
|
|
|
void __thiscall ios_base_clear(ios_base *this, IOSB_iostate state)
|
|
|
|
{
|
|
|
|
ios_base_clear_reraise(this, state, FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?clear@ios_base@std@@QAEXI@Z */
|
|
|
|
/* ?clear@ios_base@std@@QEAAXI@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(ios_base_clear_unsigned, 8)
|
|
|
|
void __thiscall ios_base_clear_unsigned(ios_base *this, unsigned int state)
|
|
|
|
{
|
|
|
|
ios_base_clear_reraise(this, (IOSB_iostate)state, FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?exceptions@ios_base@std@@QAEXH@Z */
|
|
|
|
/* ?exceptions@ios_base@std@@QEAAXH@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(ios_base_exceptions_set, 8)
|
|
|
|
void __thiscall ios_base_exceptions_set(ios_base *this, IOSB_iostate state)
|
|
|
|
{
|
|
|
|
TRACE("(%p %x)\n", this, state);
|
|
|
|
this->except = state & IOSTATE_mask;
|
|
|
|
ios_base_clear(this, this->state);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?exceptions@ios_base@std@@QAEXI@Z */
|
|
|
|
/* ?exceptions@ios_base@std@@QEAAXI@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(ios_base_exceptions_set_unsigned, 8)
|
|
|
|
void __thiscall ios_base_exceptions_set_unsigned(ios_base *this, unsigned int state)
|
|
|
|
{
|
|
|
|
TRACE("(%p %x)\n", this, state);
|
|
|
|
ios_base_exceptions_set(this, state);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?exceptions@ios_base@std@@QBEHXZ */
|
|
|
|
/* ?exceptions@ios_base@std@@QEBAHXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(ios_base_exceptions_get, 4)
|
|
|
|
IOSB_iostate __thiscall ios_base_exceptions_get(ios_base *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return this->except;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?copyfmt@ios_base@std@@QAEAAV12@ABV12@@Z */
|
|
|
|
/* ?copyfmt@ios_base@std@@QEAAAEAV12@AEBV12@@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(ios_base_copyfmt, 8)
|
|
|
|
ios_base* __thiscall ios_base_copyfmt(ios_base *this, const ios_base *rhs)
|
|
|
|
{
|
|
|
|
TRACE("(%p %p)\n", this, rhs);
|
|
|
|
|
|
|
|
if(this != rhs) {
|
|
|
|
IOS_BASE_iosarray *arr_cur;
|
|
|
|
IOS_BASE_fnarray *event_cur;
|
|
|
|
|
|
|
|
ios_base_Tidy(this);
|
|
|
|
|
|
|
|
for(arr_cur=rhs->arr; arr_cur; arr_cur=arr_cur->next) {
|
|
|
|
if(arr_cur->long_val)
|
|
|
|
*ios_base_iword(this, arr_cur->index) = arr_cur->long_val;
|
|
|
|
if(arr_cur->ptr_val)
|
|
|
|
*ios_base_pword(this, arr_cur->index) = arr_cur->ptr_val;
|
|
|
|
}
|
|
|
|
this->stdstr = rhs->stdstr;
|
|
|
|
this->fmtfl = rhs->fmtfl;
|
|
|
|
this->prec = rhs->prec;
|
|
|
|
this->wide = rhs->wide;
|
|
|
|
locale_operator_assign(this->loc, rhs->loc);
|
|
|
|
|
|
|
|
for(event_cur=rhs->calls; event_cur; event_cur=event_cur->next)
|
|
|
|
ios_base_register_callback(this, event_cur->event_handler, event_cur->index);
|
|
|
|
|
|
|
|
ios_base_Callfns(this, EVENT_copyfmt_event);
|
|
|
|
ios_base_exceptions_set(this, rhs->except);
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
2011-05-27 12:35:40 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ??4ios_base@std@@QAEAAV01@ABV01@@Z */
|
|
|
|
/* ??4ios_base@std@@QEAAAEAV01@AEBV01@@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(ios_base_assign, 8)
|
|
|
|
ios_base* __thiscall ios_base_assign(ios_base *this, const ios_base *right)
|
2011-05-27 12:35:40 +00:00
|
|
|
{
|
2012-03-29 14:11:31 +00:00
|
|
|
TRACE("(%p %p)\n", this, right);
|
|
|
|
|
|
|
|
if(this != right) {
|
|
|
|
this->state = right->state;
|
|
|
|
ios_base_copyfmt(this, right);
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?fail@ios_base@std@@QBE_NXZ */
|
|
|
|
/* ?fail@ios_base@std@@QEBA_NXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(ios_base_fail, 4)
|
|
|
|
MSVCP_bool __thiscall ios_base_fail(const ios_base *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return (this->state & (IOSTATE_failbit|IOSTATE_badbit)) != 0;
|
2011-05-27 12:35:40 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ??7ios_base@std@@QBE_NXZ */
|
|
|
|
/* ??7ios_base@std@@QEBA_NXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(ios_base_op_succ, 4)
|
|
|
|
MSVCP_bool __thiscall ios_base_op_succ(const ios_base *this)
|
2011-05-27 12:35:40 +00:00
|
|
|
{
|
2012-03-29 14:11:31 +00:00
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return ios_base_fail(this);
|
2011-05-27 12:35:40 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ??Bios_base@std@@QBEPAXXZ */
|
|
|
|
/* ??Bios_base@std@@QEBAPEAXXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(ios_base_op_fail, 4)
|
|
|
|
void* __thiscall ios_base_op_fail(const ios_base *this)
|
2011-05-27 12:35:40 +00:00
|
|
|
{
|
2012-03-29 14:11:31 +00:00
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return ios_base_fail(this) ? NULL : (void*)this;
|
2011-05-27 12:35:40 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?_Addstd@ios_base@std@@SAXPAV12@@Z */
|
|
|
|
/* ?_Addstd@ios_base@std@@SAXPEAV12@@Z */
|
|
|
|
void CDECL ios_base_Addstd(ios_base *add)
|
2011-05-27 12:35:40 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
FIXME("(%p) stub\n", add);
|
2011-05-27 12:35:40 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?_Index_func@ios_base@std@@CAAAHXZ */
|
|
|
|
/* ?_Index_func@ios_base@std@@CAAEAHXZ */
|
|
|
|
int* CDECL ios_base_Index_func(void)
|
2011-05-27 12:35:40 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
TRACE("\n");
|
|
|
|
return &ios_base_Index;
|
2011-05-27 12:35:40 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?_Init@ios_base@std@@IAEXXZ */
|
|
|
|
/* ?_Init@ios_base@std@@IEAAXXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(ios_base_Init, 4)
|
|
|
|
void __thiscall ios_base_Init(ios_base *this)
|
2011-05-27 12:35:40 +00:00
|
|
|
{
|
2012-03-29 14:11:31 +00:00
|
|
|
TRACE("(%p)\n", this);
|
2011-05-27 12:35:40 +00:00
|
|
|
|
2012-03-29 14:11:31 +00:00
|
|
|
this->stdstr = 0;
|
|
|
|
this->state = this->except = IOSTATE_goodbit;
|
|
|
|
this->fmtfl = FMTFLAG_skipws | FMTFLAG_dec;
|
|
|
|
this->prec = 6;
|
2012-06-01 15:03:36 +00:00
|
|
|
this->wide = 0;
|
2012-03-29 14:11:31 +00:00
|
|
|
this->arr = NULL;
|
|
|
|
this->calls = NULL;
|
|
|
|
this->loc = MSVCRT_operator_new(sizeof(locale));
|
|
|
|
locale_ctor(this->loc);
|
2011-05-27 12:35:40 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?_Sync_func@ios_base@std@@CAAA_NXZ */
|
|
|
|
/* ?_Sync_func@ios_base@std@@CAAEA_NXZ */
|
|
|
|
MSVCP_bool* CDECL ios_base_Sync_func(void)
|
2011-05-27 12:35:40 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
TRACE("\n");
|
|
|
|
return &ios_base_Sync;
|
2011-05-27 12:35:40 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?bad@ios_base@std@@QBE_NXZ */
|
|
|
|
/* ?bad@ios_base@std@@QEBA_NXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(ios_base_bad, 4)
|
|
|
|
MSVCP_bool __thiscall ios_base_bad(const ios_base *this)
|
2011-05-27 12:35:40 +00:00
|
|
|
{
|
2012-03-29 14:11:31 +00:00
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return (this->state & IOSTATE_badbit) != 0;
|
2012-01-05 20:22:54 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?eof@ios_base@std@@QBE_NXZ */
|
|
|
|
/* ?eof@ios_base@std@@QEBA_NXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(ios_base_eof, 4)
|
|
|
|
MSVCP_bool __thiscall ios_base_eof(const ios_base *this)
|
2012-01-05 20:22:54 +00:00
|
|
|
{
|
2012-03-29 14:11:31 +00:00
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return (this->state & IOSTATE_eofbit) != 0;
|
2012-01-05 20:22:54 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?flags@ios_base@std@@QAEHH@Z */
|
|
|
|
/* ?flags@ios_base@std@@QEAAHH@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(ios_base_flags_set, 8)
|
|
|
|
IOSB_fmtflags __thiscall ios_base_flags_set(ios_base *this, IOSB_fmtflags flags)
|
2012-01-05 20:22:54 +00:00
|
|
|
{
|
2012-03-29 14:11:31 +00:00
|
|
|
IOSB_fmtflags ret = this->fmtfl;
|
|
|
|
|
|
|
|
TRACE("(%p %x)\n", this, flags);
|
|
|
|
|
|
|
|
this->fmtfl = flags & FMTFLAG_mask;
|
|
|
|
return ret;
|
2012-01-05 20:22:54 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?flags@ios_base@std@@QBEHXZ */
|
|
|
|
/* ?flags@ios_base@std@@QEBAHXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(ios_base_flags_get, 4)
|
|
|
|
IOSB_fmtflags __thiscall ios_base_flags_get(const ios_base *this)
|
2012-01-05 20:22:54 +00:00
|
|
|
{
|
2012-03-29 14:11:31 +00:00
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return this->fmtfl;
|
2012-01-05 20:22:54 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?getloc@ios_base@std@@QBE?AVlocale@2@XZ */
|
|
|
|
/* ?getloc@ios_base@std@@QEBA?AVlocale@2@XZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(ios_base_getloc, 8)
|
|
|
|
locale* __thiscall ios_base_getloc(const ios_base *this, locale *ret)
|
2012-01-05 20:22:54 +00:00
|
|
|
{
|
2012-03-29 14:11:31 +00:00
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return locale_copy_ctor(ret, this->loc);
|
2012-01-05 20:22:54 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?good@ios_base@std@@QBE_NXZ */
|
|
|
|
/* ?good@ios_base@std@@QEBA_NXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(ios_base_good, 4)
|
|
|
|
MSVCP_bool __thiscall ios_base_good(const ios_base *this)
|
2012-01-05 20:22:54 +00:00
|
|
|
{
|
2012-03-29 14:11:31 +00:00
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return this->state == IOSTATE_goodbit;
|
2012-01-05 20:22:54 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?imbue@ios_base@std@@QAE?AVlocale@2@ABV32@@Z */
|
|
|
|
/* ?imbue@ios_base@std@@QEAA?AVlocale@2@AEBV32@@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(ios_base_imbue, 12)
|
|
|
|
locale* __thiscall ios_base_imbue(ios_base *this, locale *ret, const locale *loc)
|
2012-01-05 20:22:54 +00:00
|
|
|
{
|
2012-03-29 14:11:31 +00:00
|
|
|
TRACE("(%p %p)\n", this, loc);
|
|
|
|
*ret = *this->loc;
|
|
|
|
locale_copy_ctor(this->loc, loc);
|
2012-03-28 09:20:56 +00:00
|
|
|
return ret;
|
2012-01-05 20:22:54 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?precision@ios_base@std@@QAEHH@Z */
|
|
|
|
/* ?precision@ios_base@std@@QEAA_J_J@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(ios_base_precision_set, 8)
|
2012-06-06 12:49:05 +00:00
|
|
|
streamsize __thiscall ios_base_precision_set(ios_base *this, streamsize precision)
|
2011-05-27 12:35:40 +00:00
|
|
|
{
|
2012-06-06 12:49:05 +00:00
|
|
|
streamsize ret = this->prec;
|
2012-03-29 14:11:31 +00:00
|
|
|
|
2012-06-06 12:49:05 +00:00
|
|
|
TRACE("(%p %ld)\n", this, precision);
|
2012-03-29 14:11:31 +00:00
|
|
|
|
|
|
|
this->prec = precision;
|
|
|
|
return ret;
|
2011-05-27 12:35:40 +00:00
|
|
|
}
|
2011-08-23 09:50:56 +00:00
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?precision@ios_base@std@@QBEHXZ */
|
|
|
|
/* ?precision@ios_base@std@@QEBA_JXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(ios_base_precision_get, 4)
|
2012-06-06 12:49:05 +00:00
|
|
|
streamsize __thiscall ios_base_precision_get(const ios_base *this)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-03-29 14:11:31 +00:00
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return this->prec;
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?rdstate@ios_base@std@@QBEHXZ */
|
|
|
|
/* ?rdstate@ios_base@std@@QEBAHXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(ios_base_rdstate, 4)
|
|
|
|
IOSB_iostate __thiscall ios_base_rdstate(const ios_base *this)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-03-29 14:11:31 +00:00
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return this->state;
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?setf@ios_base@std@@QAEHHH@Z */
|
|
|
|
/* ?setf@ios_base@std@@QEAAHHH@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(ios_base_setf_mask, 12)
|
|
|
|
IOSB_fmtflags __thiscall ios_base_setf_mask(ios_base *this, IOSB_fmtflags flags, IOSB_fmtflags mask)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-03-29 14:11:31 +00:00
|
|
|
IOSB_fmtflags ret = this->fmtfl;
|
|
|
|
|
|
|
|
TRACE("(%p %x %x)\n", this, flags, mask);
|
|
|
|
|
|
|
|
this->fmtfl = (this->fmtfl & (~mask)) | (flags & mask & FMTFLAG_mask);
|
|
|
|
return ret;
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?setf@ios_base@std@@QAEHH@Z */
|
|
|
|
/* ?setf@ios_base@std@@QEAAHH@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(ios_base_setf, 8)
|
|
|
|
IOSB_fmtflags __thiscall ios_base_setf(ios_base *this, IOSB_fmtflags flags)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
return ios_base_setf_mask(this, flags, ~0);
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?setstate@ios_base@std@@QAEXH_N@Z */
|
|
|
|
/* ?setstate@ios_base@std@@QEAAXH_N@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(ios_base_setstate_reraise, 12)
|
|
|
|
void __thiscall ios_base_setstate_reraise(ios_base *this, IOSB_iostate state, MSVCP_bool reraise)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-03-29 14:11:31 +00:00
|
|
|
TRACE("(%p %x %x)\n", this, state, reraise);
|
|
|
|
|
|
|
|
if(state != IOSTATE_goodbit)
|
|
|
|
ios_base_clear_reraise(this, this->state | state, reraise);
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?setstate@ios_base@std@@QAEXH@Z */
|
|
|
|
/* ?setstate@ios_base@std@@QEAAXH@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(ios_base_setstate, 8)
|
|
|
|
void __thiscall ios_base_setstate(ios_base *this, IOSB_iostate state)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
ios_base_setstate_reraise(this, state, FALSE);
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?setstate@ios_base@std@@QAEXI@Z */
|
|
|
|
/* ?setstate@ios_base@std@@QEAAXI@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(ios_base_setstate_unsigned, 8)
|
|
|
|
void __thiscall ios_base_setstate_unsigned(ios_base *this, unsigned int state)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
ios_base_setstate_reraise(this, (IOSB_iostate)state, FALSE);
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?sync_with_stdio@ios_base@std@@SA_N_N@Z */
|
|
|
|
MSVCP_bool CDECL ios_base_sync_with_stdio(MSVCP_bool sync)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-03-29 14:11:31 +00:00
|
|
|
_Lockit lock;
|
|
|
|
MSVCP_bool ret;
|
|
|
|
|
|
|
|
TRACE("(%x)\n", sync);
|
|
|
|
|
|
|
|
_Lockit_ctor_locktype(&lock, _LOCK_STREAM);
|
|
|
|
ret = ios_base_Sync;
|
|
|
|
ios_base_Sync = sync;
|
|
|
|
_Lockit_dtor(&lock);
|
|
|
|
return ret;
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?unsetf@ios_base@std@@QAEXH@Z */
|
|
|
|
/* ?unsetf@ios_base@std@@QEAAXH@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(ios_base_unsetf, 8)
|
|
|
|
void __thiscall ios_base_unsetf(ios_base *this, IOSB_fmtflags flags)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-03-29 14:11:31 +00:00
|
|
|
TRACE("(%p %x)\n", this, flags);
|
|
|
|
this->fmtfl &= ~flags;
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?width@ios_base@std@@QAEHH@Z */
|
|
|
|
/* ?width@ios_base@std@@QEAA_J_J@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(ios_base_width_set, 8)
|
2012-06-06 12:49:05 +00:00
|
|
|
streamsize __thiscall ios_base_width_set(ios_base *this, streamsize width)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-06-06 12:49:05 +00:00
|
|
|
streamsize ret = this->wide;
|
2012-03-29 14:11:31 +00:00
|
|
|
|
2012-06-06 12:49:05 +00:00
|
|
|
TRACE("(%p %ld)\n", this, width);
|
2012-03-29 14:11:31 +00:00
|
|
|
|
|
|
|
this->wide = width;
|
|
|
|
return ret;
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?width@ios_base@std@@QBEHXZ */
|
|
|
|
/* ?width@ios_base@std@@QEBA_JXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(ios_base_width_get, 4)
|
2012-06-06 12:49:05 +00:00
|
|
|
streamsize __thiscall ios_base_width_get(ios_base *this)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-03-29 14:11:31 +00:00
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return this->wide;
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?xalloc@ios_base@std@@SAHXZ */
|
|
|
|
int CDECL ios_base_xalloc(void)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-03-29 14:11:31 +00:00
|
|
|
_Lockit lock;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
|
|
|
_Lockit_ctor_locktype(&lock, _LOCK_STREAM);
|
|
|
|
ret = ios_base_Index++;
|
|
|
|
_Lockit_dtor(&lock);
|
|
|
|
return ret;
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ??0?$basic_ios@DU?$char_traits@D@std@@@std@@IAE@XZ */
|
|
|
|
/* ??0?$basic_ios@DU?$char_traits@D@std@@@std@@IEAA@XZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ios_char_ctor, 4)
|
|
|
|
basic_ios_char* __thiscall basic_ios_char_ctor(basic_ios_char *this)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-03-30 08:35:20 +00:00
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
|
|
|
|
ios_base_ctor(&this->base);
|
|
|
|
this->base.vtable = &MSVCP_basic_ios_char_vtable;
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?init@?$basic_ios@DU?$char_traits@D@std@@@std@@IAEXPAV?$basic_streambuf@DU?$char_traits@D@std@@@2@_N@Z */
|
|
|
|
/* ?init@?$basic_ios@DU?$char_traits@D@std@@@std@@IEAAXPEAV?$basic_streambuf@DU?$char_traits@D@std@@@2@_N@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ios_char_init, 12)
|
|
|
|
void __thiscall basic_ios_char_init(basic_ios_char *this, basic_streambuf_char *streambuf, MSVCP_bool isstd)
|
|
|
|
{
|
|
|
|
TRACE("(%p %p %x)\n", this, streambuf, isstd);
|
|
|
|
ios_base_Init(&this->base);
|
|
|
|
this->strbuf = streambuf;
|
|
|
|
this->stream = NULL;
|
|
|
|
this->fillch = ' ';
|
|
|
|
|
|
|
|
if(!streambuf)
|
|
|
|
ios_base_setstate(&this->base, IOSTATE_badbit);
|
|
|
|
|
|
|
|
if(isstd)
|
|
|
|
FIXME("standard streams not handled yet\n");
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ??0?$basic_ios@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@@Z */
|
|
|
|
/* ??0?$basic_ios@DU?$char_traits@D@std@@@std@@QEAA@PEAV?$basic_streambuf@DU?$char_traits@D@std@@@1@@Z */
|
2012-03-30 08:35:20 +00:00
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ios_char_ctor_streambuf, 8)
|
|
|
|
basic_ios_char* __thiscall basic_ios_char_ctor_streambuf(basic_ios_char *this, basic_streambuf_char *strbuf)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-03-30 08:35:20 +00:00
|
|
|
TRACE("(%p %p)\n", this, strbuf);
|
|
|
|
|
|
|
|
basic_ios_char_ctor(this);
|
|
|
|
basic_ios_char_init(this, strbuf, FALSE);
|
|
|
|
return this;
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ??1?$basic_ios@DU?$char_traits@D@std@@@std@@UAE@XZ */
|
|
|
|
/* ??1?$basic_ios@DU?$char_traits@D@std@@@std@@UEAA@XZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ios_char_dtor, 4)
|
|
|
|
void __thiscall basic_ios_char_dtor(basic_ios_char *this)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-03-30 08:35:20 +00:00
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
ios_base_dtor(&this->base);
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
DEFINE_THISCALL_WRAPPER(MSVCP_basic_ios_char_vector_dtor, 8)
|
|
|
|
basic_ios_char* __thiscall MSVCP_basic_ios_char_vector_dtor(basic_ios_char *this, unsigned int flags)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-06-02 08:35:35 +00:00
|
|
|
TRACE("(%p %x)\n", this, flags);
|
2012-03-28 09:20:56 +00:00
|
|
|
if(flags & 2) {
|
|
|
|
/* we have an array, with the number of elements stored before the first object */
|
|
|
|
int i, *ptr = (int *)this-1;
|
|
|
|
|
|
|
|
for(i=*ptr-1; i>=0; i--)
|
|
|
|
basic_ios_char_dtor(this+i);
|
|
|
|
MSVCRT_operator_delete(ptr);
|
|
|
|
} else {
|
|
|
|
basic_ios_char_dtor(this);
|
|
|
|
if(flags & 1)
|
|
|
|
MSVCRT_operator_delete(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?clear@?$basic_ios@DU?$char_traits@D@std@@@std@@QAEXH_N@Z */
|
|
|
|
/* ?clear@?$basic_ios@DU?$char_traits@D@std@@@std@@QEAAXH_N@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ios_char_clear_reraise, 12)
|
|
|
|
void __thiscall basic_ios_char_clear_reraise(basic_ios_char *this, IOSB_iostate state, MSVCP_bool reraise)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-03-30 08:35:20 +00:00
|
|
|
TRACE("(%p %x %x)\n", this, state, reraise);
|
|
|
|
ios_base_clear_reraise(&this->base, state | (this->strbuf ? IOSTATE_goodbit : IOSTATE_badbit), reraise);
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?clear@?$basic_ios@DU?$char_traits@D@std@@@std@@QAEXI@Z */
|
|
|
|
/* ?clear@?$basic_ios@DU?$char_traits@D@std@@@std@@QEAAXI@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ios_char_clear, 8)
|
|
|
|
void __thiscall basic_ios_char_clear(basic_ios_char *this, unsigned int state)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
basic_ios_char_clear_reraise(this, (IOSB_iostate)state, FALSE);
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?copyfmt@?$basic_ios@DU?$char_traits@D@std@@@std@@QAEAAV12@ABV12@@Z */
|
|
|
|
/* ?copyfmt@?$basic_ios@DU?$char_traits@D@std@@@std@@QEAAAEAV12@AEBV12@@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ios_char_copyfmt, 8)
|
|
|
|
basic_ios_char* __thiscall basic_ios_char_copyfmt(basic_ios_char *this, basic_ios_char *copy)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-03-30 08:35:20 +00:00
|
|
|
TRACE("(%p %p)\n", this, copy);
|
|
|
|
if(this == copy)
|
|
|
|
return this;
|
|
|
|
|
|
|
|
this->stream = copy->stream;
|
|
|
|
this->fillch = copy->fillch;
|
|
|
|
ios_base_copyfmt(&this->base, ©->base);
|
|
|
|
return this;
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?fill@?$basic_ios@DU?$char_traits@D@std@@@std@@QAEDD@Z */
|
|
|
|
/* ?fill@?$basic_ios@DU?$char_traits@D@std@@@std@@QEAADD@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ios_char_fill_set, 8)
|
|
|
|
char __thiscall basic_ios_char_fill_set(basic_ios_char *this, char fill)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-03-30 08:35:20 +00:00
|
|
|
char ret = this->fillch;
|
|
|
|
|
|
|
|
TRACE("(%p %c)\n", this, fill);
|
|
|
|
|
|
|
|
this->fillch = fill;
|
|
|
|
return ret;
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?fill@?$basic_ios@DU?$char_traits@D@std@@@std@@QBEDXZ */
|
|
|
|
/* ?fill@?$basic_ios@DU?$char_traits@D@std@@@std@@QEBADXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ios_char_fill_get, 4)
|
|
|
|
char __thiscall basic_ios_char_fill_get(basic_ios_char *this)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-03-30 08:35:20 +00:00
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return this->fillch;
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?imbue@?$basic_ios@DU?$char_traits@D@std@@@std@@QAE?AVlocale@2@ABV32@@Z */
|
|
|
|
/* ?imbue@?$basic_ios@DU?$char_traits@D@std@@@std@@QEAA?AVlocale@2@AEBV32@@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ios_char_imbue, 12)
|
|
|
|
locale *__thiscall basic_ios_char_imbue(basic_ios_char *this, locale *ret, const locale *loc)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-03-30 08:35:20 +00:00
|
|
|
TRACE("(%p %p %p)\n", this, ret, loc);
|
2011-08-23 09:50:56 +00:00
|
|
|
|
2012-06-20 11:15:45 +00:00
|
|
|
if(this->strbuf) {
|
|
|
|
basic_streambuf_char_pubimbue(this->strbuf, ret, loc);
|
|
|
|
locale_dtor(ret);
|
|
|
|
}
|
2012-03-30 08:35:20 +00:00
|
|
|
|
2012-06-20 11:15:45 +00:00
|
|
|
return ios_base_imbue(&this->base, ret, loc);
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?narrow@?$basic_ios@DU?$char_traits@D@std@@@std@@QBEDDD@Z */
|
|
|
|
/* ?narrow@?$basic_ios@DU?$char_traits@D@std@@@std@@QEBADDD@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ios_char_narrow, 12)
|
|
|
|
char __thiscall basic_ios_char_narrow(basic_ios_char *this, char ch, char def)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-06-15 09:09:04 +00:00
|
|
|
TRACE("(%p %c %c)\n", this, ch, def);
|
|
|
|
return ctype_char_narrow_ch(ctype_char_use_facet(this->strbuf->loc), ch, def);
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?rdbuf@?$basic_ios@DU?$char_traits@D@std@@@std@@QAEPAV?$basic_streambuf@DU?$char_traits@D@std@@@2@PAV32@@Z */
|
|
|
|
/* ?rdbuf@?$basic_ios@DU?$char_traits@D@std@@@std@@QEAAPEAV?$basic_streambuf@DU?$char_traits@D@std@@@2@PEAV32@@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ios_char_rdbuf_set, 8)
|
|
|
|
basic_streambuf_char* __thiscall basic_ios_char_rdbuf_set(basic_ios_char *this, basic_streambuf_char *streambuf)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-03-30 08:35:20 +00:00
|
|
|
basic_streambuf_char *ret = this->strbuf;
|
|
|
|
|
|
|
|
TRACE("(%p %p)\n", this, streambuf);
|
|
|
|
|
|
|
|
this->strbuf = streambuf;
|
|
|
|
basic_ios_char_clear(this, IOSTATE_goodbit);
|
|
|
|
return ret;
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?rdbuf@?$basic_ios@DU?$char_traits@D@std@@@std@@QBEPAV?$basic_streambuf@DU?$char_traits@D@std@@@2@XZ */
|
|
|
|
/* ?rdbuf@?$basic_ios@DU?$char_traits@D@std@@@std@@QEBAPEAV?$basic_streambuf@DU?$char_traits@D@std@@@2@XZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ios_char_rdbuf_get, 4)
|
|
|
|
basic_streambuf_char* __thiscall basic_ios_char_rdbuf_get(const basic_ios_char *this)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-03-30 08:35:20 +00:00
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return this->strbuf;
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?setstate@?$basic_ios@DU?$char_traits@D@std@@@std@@QAEXH_N@Z */
|
|
|
|
/* ?setstate@?$basic_ios@DU?$char_traits@D@std@@@std@@QEAAXH_N@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ios_char_setstate_reraise, 12)
|
|
|
|
void __thiscall basic_ios_char_setstate_reraise(basic_ios_char *this, IOSB_iostate state, MSVCP_bool reraise)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-03-30 08:35:20 +00:00
|
|
|
TRACE("(%p %x %x)\n", this, state, reraise);
|
|
|
|
|
|
|
|
if(state != IOSTATE_goodbit)
|
|
|
|
basic_ios_char_clear_reraise(this, this->base.state | state, reraise);
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?setstate@?$basic_ios@DU?$char_traits@D@std@@@std@@QAEXI@Z */
|
|
|
|
/* ?setstate@?$basic_ios@DU?$char_traits@D@std@@@std@@QEAAXI@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ios_char_setstate, 8)
|
|
|
|
void __thiscall basic_ios_char_setstate(basic_ios_char *this, unsigned int state)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
basic_ios_char_setstate_reraise(this, (IOSB_iostate)state, FALSE);
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?tie@?$basic_ios@DU?$char_traits@D@std@@@std@@QAEPAV?$basic_ostream@DU?$char_traits@D@std@@@2@PAV32@@Z */
|
|
|
|
/* ?tie@?$basic_ios@DU?$char_traits@D@std@@@std@@QEAAPEAV?$basic_ostream@DU?$char_traits@D@std@@@2@PEAV32@@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ios_char_tie_set, 8)
|
|
|
|
basic_ostream_char* __thiscall basic_ios_char_tie_set(basic_ios_char *this, basic_ostream_char *ostream)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-03-30 08:35:20 +00:00
|
|
|
basic_ostream_char *ret = this->stream;
|
|
|
|
|
|
|
|
TRACE("(%p %p)\n", this, ostream);
|
|
|
|
|
|
|
|
this->stream = ostream;
|
|
|
|
return ret;
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?tie@?$basic_ios@DU?$char_traits@D@std@@@std@@QBEPAV?$basic_ostream@DU?$char_traits@D@std@@@2@XZ */
|
|
|
|
/* ?tie@?$basic_ios@DU?$char_traits@D@std@@@std@@QEBAPEAV?$basic_ostream@DU?$char_traits@D@std@@@2@XZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ios_char_tie_get, 4)
|
|
|
|
basic_ostream_char* __thiscall basic_ios_char_tie_get(const basic_ios_char *this)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-03-30 08:35:20 +00:00
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return this->stream;
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?widen@?$basic_ios@DU?$char_traits@D@std@@@std@@QBEDD@Z */
|
|
|
|
/* ?widen@?$basic_ios@DU?$char_traits@D@std@@@std@@QEBADD@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ios_char_widen, 8)
|
|
|
|
char __thiscall basic_ios_char_widen(basic_ios_char *this, char ch)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-06-15 09:09:15 +00:00
|
|
|
TRACE("(%p %c)\n", this, ch);
|
|
|
|
return ctype_char_widen_ch(ctype_char_use_facet(this->strbuf->loc), ch);
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ??0?$basic_ios@_WU?$char_traits@_W@std@@@std@@IAE@XZ */
|
|
|
|
/* ??0?$basic_ios@_WU?$char_traits@_W@std@@@std@@IEAA@XZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ios_wchar_ctor, 4)
|
|
|
|
basic_ios_wchar* __thiscall basic_ios_wchar_ctor(basic_ios_wchar *this)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-06-01 15:03:36 +00:00
|
|
|
TRACE("(%p)\n", this);
|
2012-03-30 08:35:33 +00:00
|
|
|
|
2012-06-01 15:03:36 +00:00
|
|
|
ios_base_ctor(&this->base);
|
|
|
|
this->base.vtable = &MSVCP_basic_ios_wchar_vtable;
|
|
|
|
return this;
|
2012-03-30 08:35:33 +00:00
|
|
|
}
|
|
|
|
|
2012-03-30 08:35:49 +00:00
|
|
|
/* ??0?$basic_ios@GU?$char_traits@G@std@@@std@@IAE@XZ */
|
|
|
|
/* ??0?$basic_ios@GU?$char_traits@G@std@@@std@@IEAA@XZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ios_short_ctor, 4)
|
|
|
|
basic_ios_wchar* __thiscall basic_ios_short_ctor(basic_ios_wchar *this)
|
|
|
|
{
|
|
|
|
basic_ios_wchar_ctor(this);
|
|
|
|
this->base.vtable = &MSVCP_basic_ios_short_vtable;
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2012-03-30 08:35:33 +00:00
|
|
|
/* ?init@?$basic_ios@_WU?$char_traits@_W@std@@@std@@IAEXPAV?$basic_streambuf@_WU?$char_traits@_W@std@@@2@_N@Z */
|
|
|
|
/* ?init@?$basic_ios@_WU?$char_traits@_W@std@@@std@@IEAAXPEAV?$basic_streambuf@_WU?$char_traits@_W@std@@@2@_N@Z */
|
2012-03-30 08:35:49 +00:00
|
|
|
/* ?init@?$basic_ios@GU?$char_traits@G@std@@@std@@IAEXPAV?$basic_streambuf@GU?$char_traits@G@std@@@2@_N@Z */
|
|
|
|
/* ?init@?$basic_ios@GU?$char_traits@G@std@@@std@@IEAAXPEAV?$basic_streambuf@GU?$char_traits@G@std@@@2@_N@Z */
|
2012-03-30 08:35:33 +00:00
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ios_wchar_init, 12)
|
|
|
|
void __thiscall basic_ios_wchar_init(basic_ios_wchar *this, basic_streambuf_wchar *streambuf, MSVCP_bool isstd)
|
|
|
|
{
|
|
|
|
TRACE("(%p %p %x)\n", this, streambuf, isstd);
|
|
|
|
ios_base_Init(&this->base);
|
|
|
|
this->strbuf = streambuf;
|
|
|
|
this->stream = NULL;
|
|
|
|
this->fillch = ' ';
|
|
|
|
|
|
|
|
if(!streambuf)
|
|
|
|
ios_base_setstate(&this->base, IOSTATE_badbit);
|
|
|
|
|
|
|
|
if(isstd)
|
|
|
|
FIXME("standard streams not handled yet\n");
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ??0?$basic_ios@_WU?$char_traits@_W@std@@@std@@QAE@PAV?$basic_streambuf@_WU?$char_traits@_W@std@@@1@@Z */
|
|
|
|
/* ??0?$basic_ios@_WU?$char_traits@_W@std@@@std@@QEAA@PEAV?$basic_streambuf@_WU?$char_traits@_W@std@@@1@@Z */
|
2012-03-30 08:35:33 +00:00
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ios_wchar_ctor_streambuf, 8)
|
|
|
|
basic_ios_wchar* __thiscall basic_ios_wchar_ctor_streambuf(basic_ios_wchar *this, basic_streambuf_wchar *strbuf)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-03-30 08:35:33 +00:00
|
|
|
TRACE("(%p %p)\n", this, strbuf);
|
|
|
|
|
|
|
|
basic_ios_wchar_ctor(this);
|
|
|
|
basic_ios_wchar_init(this, strbuf, FALSE);
|
|
|
|
return this;
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-30 08:35:49 +00:00
|
|
|
/* ??0?$basic_ios@GU?$char_traits@G@std@@@std@@QAE@PAV?$basic_streambuf@GU?$char_traits@G@std@@@1@@Z */
|
|
|
|
/* ??0?$basic_ios@GU?$char_traits@G@std@@@std@@QEAA@PEAV?$basic_streambuf@GU?$char_traits@G@std@@@1@@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ios_short_ctor_streambuf, 8)
|
|
|
|
basic_ios_wchar* __thiscall basic_ios_short_ctor_streambuf(basic_ios_wchar *this, basic_streambuf_wchar *strbuf)
|
|
|
|
{
|
|
|
|
basic_ios_wchar_ctor_streambuf(this, strbuf);
|
|
|
|
this->base.vtable = &MSVCP_basic_ios_short_vtable;
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ??1?$basic_ios@_WU?$char_traits@_W@std@@@std@@UAE@XZ */
|
|
|
|
/* ??1?$basic_ios@_WU?$char_traits@_W@std@@@std@@UEAA@XZ */
|
2012-03-30 08:35:49 +00:00
|
|
|
/* ??1?$basic_ios@GU?$char_traits@G@std@@@std@@UAE@XZ */
|
|
|
|
/* ??1?$basic_ios@GU?$char_traits@G@std@@@std@@UEAA@XZ */
|
2012-03-28 09:20:56 +00:00
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ios_wchar_dtor, 4)
|
|
|
|
void __thiscall basic_ios_wchar_dtor(basic_ios_wchar *this)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-03-30 08:35:33 +00:00
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
ios_base_dtor(&this->base);
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
DEFINE_THISCALL_WRAPPER(MSVCP_basic_ios_wchar_vector_dtor, 8)
|
|
|
|
basic_ios_wchar* __thiscall MSVCP_basic_ios_wchar_vector_dtor(basic_ios_wchar *this, unsigned int flags)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-06-01 15:03:36 +00:00
|
|
|
TRACE("(%p %x)\n", this, flags);
|
2012-03-28 09:20:56 +00:00
|
|
|
if(flags & 2) {
|
|
|
|
/* we have an array, with the number of elements stored before the first object */
|
|
|
|
int i, *ptr = (int *)this-1;
|
2011-08-24 12:38:53 +00:00
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
for(i=*ptr-1; i>=0; i--)
|
|
|
|
basic_ios_wchar_dtor(this+i);
|
|
|
|
MSVCRT_operator_delete(ptr);
|
|
|
|
} else {
|
|
|
|
basic_ios_wchar_dtor(this);
|
|
|
|
if(flags & 1)
|
|
|
|
MSVCRT_operator_delete(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-30 08:35:49 +00:00
|
|
|
DEFINE_THISCALL_WRAPPER(MSVCP_basic_ios_short_vector_dtor, 8)
|
|
|
|
basic_ios_wchar* __thiscall MSVCP_basic_ios_short_vector_dtor(basic_ios_wchar *this, unsigned int flags)
|
|
|
|
{
|
|
|
|
return MSVCP_basic_ios_wchar_vector_dtor(this, flags);
|
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?clear@?$basic_ios@_WU?$char_traits@_W@std@@@std@@QAEXH_N@Z */
|
|
|
|
/* ?clear@?$basic_ios@_WU?$char_traits@_W@std@@@std@@QEAAXH_N@Z */
|
2012-03-30 08:35:49 +00:00
|
|
|
/* ?clear@?$basic_ios@GU?$char_traits@G@std@@@std@@QAEXH_N@Z */
|
|
|
|
/* ?clear@?$basic_ios@GU?$char_traits@G@std@@@std@@QEAAXH_N@Z */
|
2012-03-28 09:20:56 +00:00
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ios_wchar_clear_reraise, 12)
|
|
|
|
void __thiscall basic_ios_wchar_clear_reraise(basic_ios_wchar *this, IOSB_iostate state, MSVCP_bool reraise)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-03-30 08:35:33 +00:00
|
|
|
TRACE("(%p %x %x)\n", this, state, reraise);
|
|
|
|
ios_base_clear_reraise(&this->base, state | (this->strbuf ? IOSTATE_goodbit : IOSTATE_badbit), reraise);
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?clear@?$basic_ios@_WU?$char_traits@_W@std@@@std@@QAEXI@Z */
|
|
|
|
/* ?clear@?$basic_ios@_WU?$char_traits@_W@std@@@std@@QEAAXI@Z */
|
2012-03-30 08:35:49 +00:00
|
|
|
/* ?clear@?$basic_ios@GU?$char_traits@G@std@@@std@@QAEXI@Z */
|
|
|
|
/* ?clear@?$basic_ios@GU?$char_traits@G@std@@@std@@QEAAXI@Z */
|
2012-03-28 09:20:56 +00:00
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ios_wchar_clear, 8)
|
|
|
|
void __thiscall basic_ios_wchar_clear(basic_ios_wchar *this, unsigned int state)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
basic_ios_wchar_clear_reraise(this, (IOSB_iostate)state, FALSE);
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?copyfmt@?$basic_ios@_WU?$char_traits@_W@std@@@std@@QAEAAV12@ABV12@@Z */
|
|
|
|
/* ?copyfmt@?$basic_ios@_WU?$char_traits@_W@std@@@std@@QEAAAEAV12@AEBV12@@Z */
|
2012-03-30 08:35:49 +00:00
|
|
|
/* ?copyfmt@?$basic_ios@GU?$char_traits@G@std@@@std@@QAEAAV12@ABV12@@Z */
|
|
|
|
/* ?copyfmt@?$basic_ios@GU?$char_traits@G@std@@@std@@QEAAAEAV12@AEBV12@@Z */
|
2012-03-28 09:20:56 +00:00
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ios_wchar_copyfmt, 8)
|
|
|
|
basic_ios_wchar* __thiscall basic_ios_wchar_copyfmt(basic_ios_wchar *this, basic_ios_wchar *copy)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-03-30 08:35:33 +00:00
|
|
|
TRACE("(%p %p)\n", this, copy);
|
|
|
|
if(this == copy)
|
|
|
|
return this;
|
|
|
|
|
|
|
|
this->stream = copy->stream;
|
|
|
|
this->fillch = copy->fillch;
|
|
|
|
ios_base_copyfmt(&this->base, ©->base);
|
|
|
|
return this;
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?fill@?$basic_ios@_WU?$char_traits@_W@std@@@std@@QAE_W_W@Z */
|
|
|
|
/* ?fill@?$basic_ios@_WU?$char_traits@_W@std@@@std@@QEAA_W_W@Z */
|
2012-03-30 08:35:49 +00:00
|
|
|
/* ?fill@?$basic_ios@GU?$char_traits@G@std@@@std@@QAEGG@Z */
|
|
|
|
/* ?fill@?$basic_ios@GU?$char_traits@G@std@@@std@@QEAAGG@Z */
|
2012-03-28 09:20:56 +00:00
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ios_wchar_fill_set, 8)
|
|
|
|
wchar_t __thiscall basic_ios_wchar_fill_set(basic_ios_wchar *this, wchar_t fill)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-03-30 08:35:33 +00:00
|
|
|
wchar_t ret = this->fillch;
|
|
|
|
|
|
|
|
TRACE("(%p %c)\n", this, fill);
|
|
|
|
|
|
|
|
this->fillch = fill;
|
|
|
|
return ret;
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?fill@?$basic_ios@_WU?$char_traits@_W@std@@@std@@QBE_WXZ */
|
|
|
|
/* ?fill@?$basic_ios@_WU?$char_traits@_W@std@@@std@@QEBA_WXZ */
|
2012-03-30 08:35:49 +00:00
|
|
|
/* ?fill@?$basic_ios@GU?$char_traits@G@std@@@std@@QBEGXZ */
|
|
|
|
/* ?fill@?$basic_ios@GU?$char_traits@G@std@@@std@@QEBAGXZ */
|
2012-03-28 09:20:56 +00:00
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ios_wchar_fill_get, 4)
|
|
|
|
wchar_t __thiscall basic_ios_wchar_fill_get(basic_ios_wchar *this)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-03-30 08:35:33 +00:00
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return this->fillch;
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?imbue@?$basic_ios@_WU?$char_traits@_W@std@@@std@@QAE?AVlocale@2@ABV32@@Z */
|
|
|
|
/* ?imbue@?$basic_ios@_WU?$char_traits@_W@std@@@std@@QEAA?AVlocale@2@AEBV32@@Z */
|
2012-03-30 08:35:49 +00:00
|
|
|
/* ?imbue@?$basic_ios@GU?$char_traits@G@std@@@std@@QAE?AVlocale@2@ABV32@@Z */
|
|
|
|
/* ?imbue@?$basic_ios@GU?$char_traits@G@std@@@std@@QEAA?AVlocale@2@AEBV32@@Z */
|
2012-03-28 09:20:56 +00:00
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ios_wchar_imbue, 12)
|
|
|
|
locale *__thiscall basic_ios_wchar_imbue(basic_ios_wchar *this, locale *ret, const locale *loc)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-03-30 08:35:33 +00:00
|
|
|
TRACE("(%p %p %p)\n", this, ret, loc);
|
2011-08-23 09:50:56 +00:00
|
|
|
|
2012-03-30 08:35:33 +00:00
|
|
|
if(this->strbuf)
|
|
|
|
return basic_streambuf_wchar_pubimbue(this->strbuf, ret, loc);
|
|
|
|
|
|
|
|
locale_copy_ctor(ret, loc);
|
|
|
|
return ret;
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?narrow@?$basic_ios@_WU?$char_traits@_W@std@@@std@@QBED_WD@Z */
|
|
|
|
/* ?narrow@?$basic_ios@_WU?$char_traits@_W@std@@@std@@QEBAD_WD@Z */
|
2012-03-30 08:35:49 +00:00
|
|
|
/* ?narrow@?$basic_ios@GU?$char_traits@G@std@@@std@@QBEDGD@Z */
|
|
|
|
/* ?narrow@?$basic_ios@GU?$char_traits@G@std@@@std@@QEBADGD@Z */
|
2012-03-28 09:20:56 +00:00
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ios_wchar_narrow, 12)
|
|
|
|
char __thiscall basic_ios_wchar_narrow(basic_ios_wchar *this, wchar_t ch, char def)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-06-15 09:09:04 +00:00
|
|
|
TRACE("(%p %c %c)\n", this, ch, def);
|
|
|
|
return ctype_wchar_narrow_ch(ctype_wchar_use_facet(this->strbuf->loc), ch, def);
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?rdbuf@?$basic_ios@_WU?$char_traits@_W@std@@@std@@QAEPAV?$basic_streambuf@_WU?$char_traits@_W@std@@@2@PAV32@@Z */
|
|
|
|
/* ?rdbuf@?$basic_ios@_WU?$char_traits@_W@std@@@std@@QEAAPEAV?$basic_streambuf@_WU?$char_traits@_W@std@@@2@PEAV32@@Z */
|
2012-03-30 08:35:49 +00:00
|
|
|
/* ?rdbuf@?$basic_ios@GU?$char_traits@G@std@@@std@@QAEPAV?$basic_streambuf@GU?$char_traits@G@std@@@2@PAV32@@Z */
|
|
|
|
/* ?rdbuf@?$basic_ios@GU?$char_traits@G@std@@@std@@QEAAPEAV?$basic_streambuf@GU?$char_traits@G@std@@@2@PEAV32@@Z */
|
2012-03-28 09:20:56 +00:00
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ios_wchar_rdbuf_set, 8)
|
2012-03-30 08:35:33 +00:00
|
|
|
basic_streambuf_wchar* __thiscall basic_ios_wchar_rdbuf_set(basic_ios_wchar *this, basic_streambuf_wchar *streambuf)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-03-30 08:35:33 +00:00
|
|
|
basic_streambuf_wchar *ret = this->strbuf;
|
|
|
|
|
|
|
|
TRACE("(%p %p)\n", this, streambuf);
|
|
|
|
|
|
|
|
this->strbuf = streambuf;
|
|
|
|
basic_ios_wchar_clear(this, IOSTATE_goodbit);
|
|
|
|
return ret;
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?rdbuf@?$basic_ios@_WU?$char_traits@_W@std@@@std@@QBEPAV?$basic_streambuf@_WU?$char_traits@_W@std@@@2@XZ */
|
|
|
|
/* ?rdbuf@?$basic_ios@_WU?$char_traits@_W@std@@@std@@QEBAPEAV?$basic_streambuf@_WU?$char_traits@_W@std@@@2@XZ */
|
2012-03-30 08:35:49 +00:00
|
|
|
/* ?rdbuf@?$basic_ios@GU?$char_traits@G@std@@@std@@QBEPAV?$basic_streambuf@GU?$char_traits@G@std@@@2@XZ */
|
|
|
|
/* ?rdbuf@?$basic_ios@GU?$char_traits@G@std@@@std@@QEBAPEAV?$basic_streambuf@GU?$char_traits@G@std@@@2@XZ */
|
2012-03-28 09:20:56 +00:00
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ios_wchar_rdbuf_get, 4)
|
2012-03-30 08:35:33 +00:00
|
|
|
basic_streambuf_wchar* __thiscall basic_ios_wchar_rdbuf_get(const basic_ios_wchar *this)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-03-30 08:35:33 +00:00
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return this->strbuf;
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?setstate@?$basic_ios@_WU?$char_traits@_W@std@@@std@@QAEXH_N@Z */
|
|
|
|
/* ?setstate@?$basic_ios@_WU?$char_traits@_W@std@@@std@@QEAAXH_N@Z */
|
2012-03-30 08:35:49 +00:00
|
|
|
/* ?setstate@?$basic_ios@GU?$char_traits@G@std@@@std@@QAEXH_N@Z */
|
|
|
|
/* ?setstate@?$basic_ios@GU?$char_traits@G@std@@@std@@QEAAXH_N@Z */
|
2012-03-28 09:20:56 +00:00
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ios_wchar_setstate_reraise, 12)
|
|
|
|
void __thiscall basic_ios_wchar_setstate_reraise(basic_ios_wchar *this, IOSB_iostate state, MSVCP_bool reraise)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-03-30 08:35:33 +00:00
|
|
|
TRACE("(%p %x %x)\n", this, state, reraise);
|
|
|
|
|
|
|
|
if(state != IOSTATE_goodbit)
|
|
|
|
basic_ios_wchar_clear_reraise(this, this->base.state | state, reraise);
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?setstate@?$basic_ios@_WU?$char_traits@_W@std@@@std@@QAEXI@Z */
|
|
|
|
/* ?setstate@?$basic_ios@_WU?$char_traits@_W@std@@@std@@QEAAXI@Z */
|
2012-03-30 08:35:49 +00:00
|
|
|
/* ?setstate@?$basic_ios@GU?$char_traits@G@std@@@std@@QAEXI@Z */
|
|
|
|
/* ?setstate@?$basic_ios@GU?$char_traits@G@std@@@std@@QEAAXI@Z */
|
2012-03-28 09:20:56 +00:00
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ios_wchar_setstate, 8)
|
|
|
|
void __thiscall basic_ios_wchar_setstate(basic_ios_wchar *this, IOSB_iostate state)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-03-28 09:20:56 +00:00
|
|
|
basic_ios_wchar_setstate_reraise(this, state, FALSE);
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?tie@?$basic_ios@_WU?$char_traits@_W@std@@@std@@QAEPAV?$basic_ostream@_WU?$char_traits@_W@std@@@2@PAV32@@Z */
|
|
|
|
/* ?tie@?$basic_ios@_WU?$char_traits@_W@std@@@std@@QEAAPEAV?$basic_ostream@_WU?$char_traits@_W@std@@@2@PEAV32@@Z */
|
2012-03-30 08:35:49 +00:00
|
|
|
/* ?tie@?$basic_ios@GU?$char_traits@G@std@@@std@@QAEPAV?$basic_ostream@GU?$char_traits@G@std@@@2@PAV32@@Z */
|
|
|
|
/* ?tie@?$basic_ios@GU?$char_traits@G@std@@@std@@QEAAPEAV?$basic_ostream@GU?$char_traits@G@std@@@2@PEAV32@@Z */
|
2012-03-28 09:20:56 +00:00
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ios_wchar_tie_set, 8)
|
2012-03-30 08:35:33 +00:00
|
|
|
basic_ostream_wchar* __thiscall basic_ios_wchar_tie_set(basic_ios_wchar *this, basic_ostream_wchar *ostream)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-03-30 08:35:33 +00:00
|
|
|
basic_ostream_wchar *ret = this->stream;
|
|
|
|
|
|
|
|
TRACE("(%p %p)\n", this, ostream);
|
|
|
|
|
|
|
|
this->stream = ostream;
|
|
|
|
return ret;
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?tie@?$basic_ios@_WU?$char_traits@_W@std@@@std@@QBEPAV?$basic_ostream@_WU?$char_traits@_W@std@@@2@XZ */
|
|
|
|
/* ?tie@?$basic_ios@_WU?$char_traits@_W@std@@@std@@QEBAPEAV?$basic_ostream@_WU?$char_traits@_W@std@@@2@XZ */
|
2012-03-30 08:35:49 +00:00
|
|
|
/* ?tie@?$basic_ios@GU?$char_traits@G@std@@@std@@QBEPAV?$basic_ostream@GU?$char_traits@G@std@@@2@XZ */
|
|
|
|
/* ?tie@?$basic_ios@GU?$char_traits@G@std@@@std@@QEBAPEAV?$basic_ostream@GU?$char_traits@G@std@@@2@XZ */
|
2012-03-28 09:20:56 +00:00
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ios_wchar_tie_get, 4)
|
2012-03-30 08:35:33 +00:00
|
|
|
basic_ostream_wchar* __thiscall basic_ios_wchar_tie_get(const basic_ios_wchar *this)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-03-30 08:35:33 +00:00
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return this->stream;
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 09:20:56 +00:00
|
|
|
/* ?widen@?$basic_ios@_WU?$char_traits@_W@std@@@std@@QBE_WD@Z */
|
|
|
|
/* ?widen@?$basic_ios@_WU?$char_traits@_W@std@@@std@@QEBA_WD@Z */
|
2012-03-30 08:35:49 +00:00
|
|
|
/* ?widen@?$basic_ios@GU?$char_traits@G@std@@@std@@QBEGD@Z */
|
|
|
|
/* ?widen@?$basic_ios@GU?$char_traits@G@std@@@std@@QEBAGD@Z */
|
2012-03-28 09:20:56 +00:00
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ios_wchar_widen, 8)
|
|
|
|
wchar_t __thiscall basic_ios_wchar_widen(basic_ios_wchar *this, char ch)
|
2011-08-23 09:50:56 +00:00
|
|
|
{
|
2012-06-15 09:09:15 +00:00
|
|
|
TRACE("(%p %c)\n", this, ch);
|
|
|
|
return ctype_wchar_widen_ch(ctype_wchar_use_facet(this->strbuf->loc), ch);
|
2011-08-23 09:50:56 +00:00
|
|
|
}
|
2011-08-24 12:38:11 +00:00
|
|
|
|
2012-06-01 15:03:36 +00:00
|
|
|
/* Caution: basic_ostream uses virtual inheritance.
|
|
|
|
* All constructors have additional parameter that says if base class should be initialized.
|
|
|
|
* Base class needs to be accessed using vbtable.
|
|
|
|
*/
|
|
|
|
static inline basic_ios_char* basic_ostream_char_get_basic_ios(basic_ostream_char *this)
|
|
|
|
{
|
|
|
|
return (basic_ios_char*)((char*)this+this->vbtable[1]);
|
|
|
|
}
|
|
|
|
|
2011-08-24 12:38:11 +00:00
|
|
|
/* ??0?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@_N@Z */
|
|
|
|
/* ??0?$basic_ostream@DU?$char_traits@D@std@@@std@@QEAA@PEAV?$basic_streambuf@DU?$char_traits@D@std@@@1@_N@Z */
|
2012-06-01 15:03:36 +00:00
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ostream_char_ctor, 16)
|
|
|
|
basic_ostream_char* __thiscall basic_ostream_char_ctor(basic_ostream_char *this,
|
|
|
|
basic_streambuf_char *strbuf, MSVCP_bool isstd, MSVCP_bool virt_init)
|
2011-08-24 12:38:11 +00:00
|
|
|
{
|
2012-06-01 15:03:36 +00:00
|
|
|
basic_ios_char *base;
|
|
|
|
|
|
|
|
TRACE("(%p %p %d %d)\n", this, strbuf, isstd, virt_init);
|
|
|
|
|
|
|
|
if(virt_init) {
|
|
|
|
this->vbtable = basic_ostream_char_vbtable;
|
|
|
|
base = basic_ostream_char_get_basic_ios(this);
|
|
|
|
basic_ios_char_ctor(base);
|
|
|
|
}else {
|
|
|
|
base = basic_ostream_char_get_basic_ios(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
base->base.vtable = &MSVCP_basic_ostream_char_vtable;
|
|
|
|
basic_ios_char_init(base, strbuf, isstd);
|
|
|
|
return this;
|
2011-08-24 12:38:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ??0?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@W4_Uninitialized@1@_N@Z */
|
|
|
|
/* ??0?$basic_ostream@DU?$char_traits@D@std@@@std@@QEAA@W4_Uninitialized@1@_N@Z */
|
2012-06-13 13:22:13 +00:00
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ostream_char_ctor_uninitialized, 16)
|
|
|
|
basic_ostream_char* __thiscall basic_ostream_char_ctor_uninitialized(basic_ostream_char *this,
|
2012-06-01 15:03:36 +00:00
|
|
|
int uninitialized, MSVCP_bool addstd, MSVCP_bool virt_init)
|
2011-08-24 12:38:11 +00:00
|
|
|
{
|
2012-06-01 15:03:36 +00:00
|
|
|
basic_ios_char *base;
|
|
|
|
|
|
|
|
TRACE("(%p %d %x)\n", this, uninitialized, addstd);
|
|
|
|
|
|
|
|
if(virt_init) {
|
|
|
|
this->vbtable = basic_ostream_char_vbtable;
|
|
|
|
base = basic_ostream_char_get_basic_ios(this);
|
|
|
|
basic_ios_char_ctor(base);
|
|
|
|
}else {
|
|
|
|
base = basic_ostream_char_get_basic_ios(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
base->base.vtable = &MSVCP_basic_ostream_char_vtable;
|
|
|
|
if(addstd)
|
|
|
|
ios_base_Addstd(&base->base);
|
|
|
|
return this;
|
2011-08-24 12:38:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ??1?$basic_ostream@DU?$char_traits@D@std@@@std@@UAE@XZ */
|
|
|
|
/* ??1?$basic_ostream@DU?$char_traits@D@std@@@std@@UEAA@XZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ostream_char_dtor, 4)
|
|
|
|
void __thiscall basic_ostream_char_dtor(basic_ostream_char *this)
|
|
|
|
{
|
2012-06-01 15:03:36 +00:00
|
|
|
/* don't destroy virtual base here */
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??_D?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ */
|
|
|
|
/* ??_D?$basic_ostream@DU?$char_traits@D@std@@@std@@QEAAXXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ostream_char_vbase_dtor, 4)
|
|
|
|
void __thiscall basic_ostream_char_vbase_dtor(basic_ostream_char *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
basic_ostream_char_dtor(this);
|
|
|
|
basic_ios_char_dtor(basic_ostream_char_get_basic_ios(this));
|
2011-08-24 12:38:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DEFINE_THISCALL_WRAPPER(MSVCP_basic_ostream_char_vector_dtor, 8)
|
2012-06-01 15:03:36 +00:00
|
|
|
basic_ostream_char* __thiscall MSVCP_basic_ostream_char_vector_dtor(basic_ios_char *base, unsigned int flags)
|
2011-08-24 12:38:11 +00:00
|
|
|
{
|
2012-06-01 15:03:36 +00:00
|
|
|
basic_ostream_char *this = (basic_ostream_char *)((char*)base - basic_ostream_char_vbtable[1] + basic_ostream_char_vbtable[0]);
|
|
|
|
|
|
|
|
TRACE("(%p %x)\n", this, flags);
|
|
|
|
|
2011-08-24 12:38:11 +00:00
|
|
|
if(flags & 2) {
|
|
|
|
/* we have an array, with the number of elements stored before the first object */
|
|
|
|
int i, *ptr = (int *)this-1;
|
|
|
|
|
|
|
|
for(i=*ptr-1; i>=0; i--)
|
2012-06-01 15:03:36 +00:00
|
|
|
basic_ostream_char_vbase_dtor(this+i);
|
2011-08-24 12:38:11 +00:00
|
|
|
MSVCRT_operator_delete(ptr);
|
|
|
|
} else {
|
2012-06-01 15:03:36 +00:00
|
|
|
basic_ostream_char_vbase_dtor(this);
|
2011-08-24 12:38:11 +00:00
|
|
|
if(flags & 1)
|
|
|
|
MSVCRT_operator_delete(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2012-06-01 15:03:36 +00:00
|
|
|
/* ?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ */
|
|
|
|
/* ?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QEAAAEAV12@XZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ostream_char_flush, 4)
|
|
|
|
basic_ostream_char* __thiscall basic_ostream_char_flush(basic_ostream_char *this)
|
|
|
|
{
|
|
|
|
/* this function is not matching C++ specification */
|
|
|
|
basic_ios_char *base = basic_ostream_char_get_basic_ios(this);
|
|
|
|
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
|
|
|
|
if(basic_ios_char_rdbuf_get(base) && ios_base_good(&base->base)
|
|
|
|
&& basic_streambuf_char_pubsync(basic_ios_char_rdbuf_get(base))==-1)
|
2012-06-06 12:49:37 +00:00
|
|
|
basic_ios_char_setstate(base, IOSTATE_badbit);
|
2012-06-01 15:03:36 +00:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ */
|
|
|
|
/* ?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QEAAXXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ostream_char__Osfx, 4)
|
|
|
|
void __thiscall basic_ostream_char__Osfx(basic_ostream_char *this)
|
|
|
|
{
|
|
|
|
basic_ios_char *base = basic_ostream_char_get_basic_ios(this);
|
|
|
|
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
|
|
|
|
if(base->base.fmtfl & FMTFLAG_unitbuf)
|
|
|
|
basic_ostream_char_flush(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ */
|
|
|
|
/* ?osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QEAAXXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ostream_char_osfx, 4)
|
|
|
|
void __thiscall basic_ostream_char_osfx(basic_ostream_char *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
basic_ostream_char__Osfx(this);
|
|
|
|
}
|
|
|
|
|
2012-06-06 12:49:23 +00:00
|
|
|
static BOOL basic_ostream_char_sentry_create(basic_ostream_char *ostr)
|
2012-06-01 15:03:36 +00:00
|
|
|
{
|
|
|
|
basic_ios_char *base = basic_ostream_char_get_basic_ios(ostr);
|
|
|
|
|
|
|
|
if(basic_ios_char_rdbuf_get(base))
|
|
|
|
basic_streambuf_char__Lock(base->strbuf);
|
|
|
|
|
|
|
|
if(ios_base_good(&base->base) && base->stream)
|
|
|
|
basic_ostream_char_flush(base->stream);
|
|
|
|
|
|
|
|
return ios_base_good(&base->base);
|
|
|
|
}
|
|
|
|
|
2012-06-06 12:49:23 +00:00
|
|
|
static void basic_ostream_char_sentry_destroy(basic_ostream_char *ostr)
|
2012-06-01 15:03:36 +00:00
|
|
|
{
|
|
|
|
basic_ios_char *base = basic_ostream_char_get_basic_ios(ostr);
|
|
|
|
|
|
|
|
if(ios_base_good(&base->base) && !__uncaught_exception())
|
|
|
|
basic_ostream_char_osfx(ostr);
|
|
|
|
|
|
|
|
if(basic_ios_char_rdbuf_get(base))
|
|
|
|
basic_streambuf_char__Unlock(base->strbuf);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?opfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE_NXZ */
|
|
|
|
/* ?opfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QEAA_NXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ostream_char_opfx, 4)
|
|
|
|
MSVCP_bool __thiscall basic_ostream_char_opfx(basic_ostream_char *this)
|
|
|
|
{
|
|
|
|
basic_ios_char *base = basic_ostream_char_get_basic_ios(this);
|
|
|
|
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
|
|
|
|
if(ios_base_good(&base->base) && base->stream)
|
|
|
|
basic_ostream_char_flush(base->stream);
|
|
|
|
return ios_base_good(&base->base);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?put@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@D@Z */
|
|
|
|
/* ?put@?$basic_ostream@DU?$char_traits@D@std@@@std@@QEAAAEAV12@D@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ostream_char_put, 8)
|
|
|
|
basic_ostream_char* __thiscall basic_ostream_char_put(basic_ostream_char *this, char ch)
|
|
|
|
{
|
|
|
|
basic_ios_char *base = basic_ostream_char_get_basic_ios(this);
|
|
|
|
|
|
|
|
TRACE("(%p %c)\n", this, ch);
|
|
|
|
|
2012-06-06 12:49:23 +00:00
|
|
|
if(!basic_ostream_char_sentry_create(this)
|
2012-06-01 15:03:36 +00:00
|
|
|
|| basic_streambuf_char_sputc(base->strbuf, ch)==EOF) {
|
2012-06-06 12:49:23 +00:00
|
|
|
basic_ostream_char_sentry_destroy(this);
|
2012-06-06 12:49:37 +00:00
|
|
|
basic_ios_char_setstate(base, IOSTATE_badbit);
|
2012-06-01 15:03:36 +00:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2012-06-06 12:49:23 +00:00
|
|
|
basic_ostream_char_sentry_destroy(this);
|
2012-06-01 15:03:36 +00:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?seekp@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@JH@Z */
|
|
|
|
/* ?seekp@?$basic_ostream@DU?$char_traits@D@std@@@std@@QEAAAEAV12@_JH@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ostream_char_seekp, 12)
|
|
|
|
basic_ostream_char* __thiscall basic_ostream_char_seekp(basic_ostream_char *this, streamoff off, int way)
|
|
|
|
{
|
|
|
|
basic_ios_char *base = basic_ostream_char_get_basic_ios(this);
|
|
|
|
|
2012-06-06 12:49:05 +00:00
|
|
|
TRACE("(%p %ld %d)\n", this, off, way);
|
2012-06-01 15:03:36 +00:00
|
|
|
|
|
|
|
if(!ios_base_fail(&base->base)) {
|
|
|
|
fpos_int seek;
|
|
|
|
|
|
|
|
basic_streambuf_char_pubseekoff(basic_ios_char_rdbuf_get(base),
|
|
|
|
&seek, off, way, OPENMODE_out);
|
|
|
|
if(seek.off==0 && seek.pos==-1 && seek.state==0)
|
2012-06-06 12:49:37 +00:00
|
|
|
basic_ios_char_setstate(base, IOSTATE_failbit);
|
2012-06-01 15:03:36 +00:00
|
|
|
}
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?seekp@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@V?$fpos@H@2@@Z */
|
|
|
|
/* ?seekp@?$basic_ostream@DU?$char_traits@D@std@@@std@@QEAAAEAV12@V?$fpos@H@2@@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ostream_char_seekp_fpos, 28)
|
|
|
|
basic_ostream_char* __thiscall basic_ostream_char_seekp_fpos(basic_ostream_char *this, fpos_int pos)
|
|
|
|
{
|
|
|
|
basic_ios_char *base = basic_ostream_char_get_basic_ios(this);
|
|
|
|
|
|
|
|
TRACE("(%p %s)\n", this, debugstr_fpos_int(&pos));
|
|
|
|
|
|
|
|
if(!ios_base_fail(&base->base)) {
|
|
|
|
fpos_int seek;
|
|
|
|
|
|
|
|
basic_streambuf_char_pubseekpos(basic_ios_char_rdbuf_get(base),
|
|
|
|
&seek, pos, OPENMODE_out);
|
|
|
|
if(seek.off==0 && seek.pos==-1 && seek.state==0)
|
2012-06-06 12:49:37 +00:00
|
|
|
basic_ios_char_setstate(base, IOSTATE_failbit);
|
2012-06-01 15:03:36 +00:00
|
|
|
}
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?tellp@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE?AV?$fpos@H@2@XZ */
|
|
|
|
/* ?tellp@?$basic_ostream@DU?$char_traits@D@std@@@std@@QEAA?AV?$fpos@H@2@XZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ostream_char_tellp, 8)
|
|
|
|
fpos_int* __thiscall basic_ostream_char_tellp(basic_ostream_char *this, fpos_int *ret)
|
|
|
|
{
|
|
|
|
basic_ios_char *base = basic_ostream_char_get_basic_ios(this);
|
|
|
|
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
|
|
|
|
if(!ios_base_fail(&base->base)) {
|
|
|
|
basic_streambuf_char_pubseekoff(basic_ios_char_rdbuf_get(base),
|
|
|
|
ret, 0, SEEKDIR_cur, OPENMODE_out);
|
|
|
|
}else {
|
|
|
|
ret->off = 0;
|
|
|
|
ret->pos = -1;
|
|
|
|
ret->state = 0;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?write@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@PBDH@Z */
|
|
|
|
/* ?write@?$basic_ostream@DU?$char_traits@D@std@@@std@@QEAAAEAV12@PEBD_J@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ostream_char_write, 12)
|
|
|
|
basic_ostream_char* __thiscall basic_ostream_char_write(basic_ostream_char *this, const char *str, streamsize count)
|
|
|
|
{
|
|
|
|
basic_ios_char *base = basic_ostream_char_get_basic_ios(this);
|
|
|
|
|
2012-06-06 12:49:05 +00:00
|
|
|
TRACE("(%p %s %ld)\n", this, debugstr_a(str), count);
|
2012-06-01 15:03:36 +00:00
|
|
|
|
2012-06-06 12:49:23 +00:00
|
|
|
if(!basic_ostream_char_sentry_create(this)
|
2012-06-01 15:03:36 +00:00
|
|
|
|| basic_streambuf_char_sputn(base->strbuf, str, count)!=count) {
|
2012-06-06 12:49:23 +00:00
|
|
|
basic_ostream_char_sentry_destroy(this);
|
2012-06-06 12:49:37 +00:00
|
|
|
basic_ios_char_setstate(base, IOSTATE_badbit);
|
2012-06-01 15:03:36 +00:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2012-06-06 12:49:23 +00:00
|
|
|
basic_ostream_char_sentry_destroy(this);
|
2012-06-01 15:03:36 +00:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2011-08-24 12:38:11 +00:00
|
|
|
/* ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@F@Z */
|
|
|
|
/* ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QEAAAEAV01@F@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ostream_char_print_short, 8)
|
|
|
|
basic_ostream_char* __thiscall basic_ostream_char_print_short(basic_ostream_char *this, short val)
|
|
|
|
{
|
2012-06-22 08:28:05 +00:00
|
|
|
basic_ios_char *base = basic_ostream_char_get_basic_ios(this);
|
|
|
|
int state = IOSTATE_goodbit;
|
|
|
|
|
|
|
|
TRACE("(%p %d)\n", this, val);
|
|
|
|
|
|
|
|
if(basic_ostream_char_sentry_create(this)) {
|
|
|
|
basic_streambuf_char *strbuf = basic_ios_char_rdbuf_get(base);
|
|
|
|
const num_put *numput = num_put_char_use_facet(strbuf->loc);
|
|
|
|
ostreambuf_iterator_char dest = {0, strbuf};
|
|
|
|
|
|
|
|
num_put_char_put_long(numput, &dest, dest, &base->base, basic_ios_char_fill_get(base),
|
|
|
|
(ios_base_flags_get(&base->base) & FMTFLAG_basefield & (FMTFLAG_oct | FMTFLAG_hex))
|
|
|
|
? (LONG)((unsigned short)val) : (LONG)val);
|
|
|
|
}
|
|
|
|
basic_ostream_char_sentry_destroy(this);
|
|
|
|
|
|
|
|
basic_ios_char_setstate(base, state);
|
|
|
|
return this;
|
2011-08-24 12:38:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@G@Z */
|
|
|
|
/* ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QEAAAEAV01@G@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ostream_char_print_ushort, 8)
|
|
|
|
basic_ostream_char* __thiscall basic_ostream_char_print_ushort(basic_ostream_char *this, unsigned short val)
|
|
|
|
{
|
2012-06-22 08:28:05 +00:00
|
|
|
basic_ios_char *base = basic_ostream_char_get_basic_ios(this);
|
|
|
|
int state = IOSTATE_goodbit;
|
|
|
|
|
|
|
|
TRACE("(%p %u)\n", this, val);
|
|
|
|
|
|
|
|
if(basic_ostream_char_sentry_create(this)) {
|
|
|
|
basic_streambuf_char *strbuf = basic_ios_char_rdbuf_get(base);
|
|
|
|
const num_put *numput = num_put_char_use_facet(strbuf->loc);
|
|
|
|
ostreambuf_iterator_char dest = {0, strbuf};
|
|
|
|
|
|
|
|
num_put_char_put_ulong(numput, &dest, dest, &base->base, basic_ios_char_fill_get(base), val);
|
|
|
|
}
|
|
|
|
basic_ostream_char_sentry_destroy(this);
|
|
|
|
|
|
|
|
basic_ios_char_setstate(base, state);
|
|
|
|
return this;
|
2011-08-24 12:38:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@H@Z */
|
|
|
|
/* ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QEAAAEAV01@H@Z */
|
2012-06-22 08:28:05 +00:00
|
|
|
/* ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@J@Z */
|
|
|
|
/* ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QEAAAEAV01@J@Z */
|
2011-08-24 12:38:11 +00:00
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ostream_char_print_int, 8)
|
|
|
|
basic_ostream_char* __thiscall basic_ostream_char_print_int(basic_ostream_char *this, int val)
|
|
|
|
{
|
2012-06-22 08:28:05 +00:00
|
|
|
basic_ios_char *base = basic_ostream_char_get_basic_ios(this);
|
|
|
|
int state = IOSTATE_goodbit;
|
|
|
|
|
|
|
|
TRACE("(%p %d)\n", this, val);
|
|
|
|
|
|
|
|
if(basic_ostream_char_sentry_create(this)) {
|
|
|
|
basic_streambuf_char *strbuf = basic_ios_char_rdbuf_get(base);
|
|
|
|
const num_put *numput = num_put_char_use_facet(strbuf->loc);
|
|
|
|
ostreambuf_iterator_char dest = {0, strbuf};
|
|
|
|
|
|
|
|
num_put_char_put_long(numput, &dest, dest, &base->base, basic_ios_char_fill_get(base), val);
|
|
|
|
}
|
|
|
|
basic_ostream_char_sentry_destroy(this);
|
|
|
|
|
|
|
|
basic_ios_char_setstate(base, state);
|
|
|
|
return this;
|
2011-08-24 12:38:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@I@Z */
|
|
|
|
/* ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QEAAAEAV01@I@Z */
|
2012-06-22 08:28:05 +00:00
|
|
|
/* ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@K@Z */
|
|
|
|
/* ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QEAAAEAV01@K@Z */
|
2011-08-24 12:38:11 +00:00
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ostream_char_print_uint, 8)
|
|
|
|
basic_ostream_char* __thiscall basic_ostream_char_print_uint(basic_ostream_char *this, unsigned int val)
|
|
|
|
{
|
2012-06-22 08:28:05 +00:00
|
|
|
basic_ios_char *base = basic_ostream_char_get_basic_ios(this);
|
|
|
|
int state = IOSTATE_goodbit;
|
2011-08-24 12:38:11 +00:00
|
|
|
|
2012-06-22 08:28:05 +00:00
|
|
|
TRACE("(%p %u)\n", this, val);
|
2011-08-24 12:38:11 +00:00
|
|
|
|
2012-06-22 08:28:05 +00:00
|
|
|
if(basic_ostream_char_sentry_create(this)) {
|
|
|
|
basic_streambuf_char *strbuf = basic_ios_char_rdbuf_get(base);
|
|
|
|
const num_put *numput = num_put_char_use_facet(strbuf->loc);
|
|
|
|
ostreambuf_iterator_char dest = {0, strbuf};
|
|
|
|
|
|
|
|
num_put_char_put_ulong(numput, &dest, dest, &base->base, basic_ios_char_fill_get(base), val);
|
|
|
|
}
|
|
|
|
basic_ostream_char_sentry_destroy(this);
|
|
|
|
|
|
|
|
basic_ios_char_setstate(base, state);
|
|
|
|
return this;
|
2011-08-24 12:38:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@M@Z */
|
|
|
|
/* ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QEAAAEAV01@M@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ostream_char_print_float, 8)
|
|
|
|
basic_ostream_char* __thiscall basic_ostream_char_print_float(basic_ostream_char *this, float val)
|
|
|
|
{
|
2012-06-22 08:28:05 +00:00
|
|
|
basic_ios_char *base = basic_ostream_char_get_basic_ios(this);
|
|
|
|
int state = IOSTATE_goodbit;
|
|
|
|
|
|
|
|
TRACE("(%p %f)\n", this, val);
|
|
|
|
|
|
|
|
if(basic_ostream_char_sentry_create(this)) {
|
|
|
|
basic_streambuf_char *strbuf = basic_ios_char_rdbuf_get(base);
|
|
|
|
const num_put *numput = num_put_char_use_facet(strbuf->loc);
|
|
|
|
ostreambuf_iterator_char dest = {0, strbuf};
|
|
|
|
|
|
|
|
num_put_char_put_double(numput, &dest, dest, &base->base, basic_ios_char_fill_get(base), val);
|
|
|
|
}
|
|
|
|
basic_ostream_char_sentry_destroy(this);
|
|
|
|
|
|
|
|
basic_ios_char_setstate(base, state);
|
|
|
|
return this;
|
2011-08-24 12:38:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@N@Z */
|
|
|
|
/* ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QEAAAEAV01@N@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ostream_char_print_double, 12)
|
|
|
|
basic_ostream_char* __thiscall basic_ostream_char_print_double(basic_ostream_char *this, double val)
|
|
|
|
{
|
2012-06-22 08:28:05 +00:00
|
|
|
basic_ios_char *base = basic_ostream_char_get_basic_ios(this);
|
|
|
|
int state = IOSTATE_goodbit;
|
|
|
|
|
|
|
|
TRACE("(%p %lf)\n", this, val);
|
|
|
|
|
|
|
|
if(basic_ostream_char_sentry_create(this)) {
|
|
|
|
basic_streambuf_char *strbuf = basic_ios_char_rdbuf_get(base);
|
|
|
|
const num_put *numput = num_put_char_use_facet(strbuf->loc);
|
|
|
|
ostreambuf_iterator_char dest = {0, strbuf};
|
|
|
|
|
|
|
|
num_put_char_put_double(numput, &dest, dest, &base->base, basic_ios_char_fill_get(base), val);
|
|
|
|
}
|
|
|
|
basic_ostream_char_sentry_destroy(this);
|
|
|
|
|
|
|
|
basic_ios_char_setstate(base, state);
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@O@Z */
|
|
|
|
/* ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QEAAAEAV01@O@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ostream_char_print_ldouble, 12)
|
|
|
|
basic_ostream_char* __thiscall basic_ostream_char_print_ldouble(basic_ostream_char *this, double val)
|
|
|
|
{
|
|
|
|
basic_ios_char *base = basic_ostream_char_get_basic_ios(this);
|
|
|
|
int state = IOSTATE_goodbit;
|
|
|
|
|
|
|
|
TRACE("(%p %lf)\n", this, val);
|
|
|
|
|
|
|
|
if(basic_ostream_char_sentry_create(this)) {
|
|
|
|
basic_streambuf_char *strbuf = basic_ios_char_rdbuf_get(base);
|
|
|
|
const num_put *numput = num_put_char_use_facet(strbuf->loc);
|
|
|
|
ostreambuf_iterator_char dest = {0, strbuf};
|
|
|
|
|
|
|
|
num_put_char_put_ldouble(numput, &dest, dest, &base->base, basic_ios_char_fill_get(base), val);
|
|
|
|
}
|
|
|
|
basic_ostream_char_sentry_destroy(this);
|
|
|
|
|
|
|
|
basic_ios_char_setstate(base, state);
|
|
|
|
return this;
|
2011-08-24 12:38:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@@Z */
|
|
|
|
/* ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QEAAAEAV01@PEAV?$basic_streambuf@DU?$char_traits@D@std@@@1@@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ostream_char_print_streambuf, 8)
|
|
|
|
basic_ostream_char* __thiscall basic_ostream_char_print_streambuf(basic_ostream_char *this, basic_streambuf_char *val)
|
|
|
|
{
|
|
|
|
FIXME("(%p %p) stub\n", this, val);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@PBX@Z */
|
|
|
|
/* ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QEAAAEAV01@PEBX@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ostream_char_print_ptr, 8)
|
|
|
|
basic_ostream_char* __thiscall basic_ostream_char_print_ptr(basic_ostream_char *this, const void *val)
|
|
|
|
{
|
2012-06-22 08:28:05 +00:00
|
|
|
basic_ios_char *base = basic_ostream_char_get_basic_ios(this);
|
|
|
|
int state = IOSTATE_goodbit;
|
|
|
|
|
|
|
|
TRACE("(%p %p)\n", this, val);
|
|
|
|
|
|
|
|
if(basic_ostream_char_sentry_create(this)) {
|
|
|
|
basic_streambuf_char *strbuf = basic_ios_char_rdbuf_get(base);
|
|
|
|
const num_put *numput = num_put_char_use_facet(strbuf->loc);
|
|
|
|
ostreambuf_iterator_char dest = {0, strbuf};
|
|
|
|
|
|
|
|
num_put_char_put_ptr(numput, &dest, dest, &base->base, basic_ios_char_fill_get(base), val);
|
|
|
|
}
|
|
|
|
basic_ostream_char_sentry_destroy(this);
|
|
|
|
|
|
|
|
basic_ios_char_setstate(base, state);
|
|
|
|
return this;
|
2011-08-24 12:38:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_J@Z */
|
|
|
|
/* ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QEAAAEAV01@_J@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ostream_char_print_int64, 12)
|
|
|
|
basic_ostream_char* __thiscall basic_ostream_char_print_int64(basic_ostream_char *this, __int64 val)
|
|
|
|
{
|
2012-06-22 08:28:05 +00:00
|
|
|
basic_ios_char *base = basic_ostream_char_get_basic_ios(this);
|
|
|
|
int state = IOSTATE_goodbit;
|
|
|
|
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
|
|
|
|
if(basic_ostream_char_sentry_create(this)) {
|
|
|
|
basic_streambuf_char *strbuf = basic_ios_char_rdbuf_get(base);
|
|
|
|
const num_put *numput = num_put_char_use_facet(strbuf->loc);
|
|
|
|
ostreambuf_iterator_char dest = {0, strbuf};
|
|
|
|
|
|
|
|
num_put_char_put_int64(numput, &dest, dest, &base->base, basic_ios_char_fill_get(base), val);
|
|
|
|
}
|
|
|
|
basic_ostream_char_sentry_destroy(this);
|
|
|
|
|
|
|
|
basic_ios_char_setstate(base, state);
|
|
|
|
return this;
|
2011-08-24 12:38:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_K@Z */
|
|
|
|
/* ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QEAAAEAV01@_K@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ostream_char_print_uint64, 12)
|
|
|
|
basic_ostream_char* __thiscall basic_ostream_char_print_uint64(basic_ostream_char *this, unsigned __int64 val)
|
|
|
|
{
|
2012-06-22 08:28:05 +00:00
|
|
|
basic_ios_char *base = basic_ostream_char_get_basic_ios(this);
|
|
|
|
int state = IOSTATE_goodbit;
|
|
|
|
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
|
|
|
|
if(basic_ostream_char_sentry_create(this)) {
|
|
|
|
basic_streambuf_char *strbuf = basic_ios_char_rdbuf_get(base);
|
|
|
|
const num_put *numput = num_put_char_use_facet(strbuf->loc);
|
|
|
|
ostreambuf_iterator_char dest = {0, strbuf};
|
|
|
|
|
|
|
|
num_put_char_put_uint64(numput, &dest, dest, &base->base, basic_ios_char_fill_get(base), val);
|
|
|
|
}
|
|
|
|
basic_ostream_char_sentry_destroy(this);
|
|
|
|
|
|
|
|
basic_ios_char_setstate(base, state);
|
|
|
|
return this;
|
2011-08-24 12:38:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_N@Z */
|
|
|
|
/* ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QEAAAEAV01@_N@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ostream_char_print_bool, 8)
|
|
|
|
basic_ostream_char* __thiscall basic_ostream_char_print_bool(basic_ostream_char *this, MSVCP_bool val)
|
|
|
|
{
|
2012-06-22 08:28:05 +00:00
|
|
|
basic_ios_char *base = basic_ostream_char_get_basic_ios(this);
|
|
|
|
int state = IOSTATE_goodbit;
|
|
|
|
|
|
|
|
TRACE("(%p %x)\n", this, val);
|
|
|
|
|
|
|
|
if(basic_ostream_char_sentry_create(this)) {
|
|
|
|
basic_streambuf_char *strbuf = basic_ios_char_rdbuf_get(base);
|
|
|
|
const num_put *numput = num_put_char_use_facet(strbuf->loc);
|
|
|
|
ostreambuf_iterator_char dest = {0, strbuf};
|
|
|
|
|
|
|
|
num_put_char_put_bool(numput, &dest, dest, &base->base, basic_ios_char_fill_get(base), val);
|
|
|
|
}
|
|
|
|
basic_ostream_char_sentry_destroy(this);
|
|
|
|
|
|
|
|
basic_ios_char_setstate(base, state);
|
|
|
|
return this;
|
2011-08-24 12:38:11 +00:00
|
|
|
}
|
2012-06-06 12:50:59 +00:00
|
|
|
|
2012-06-14 13:36:56 +00:00
|
|
|
/* ?endl@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@1@AAV21@@Z */
|
|
|
|
/* ?endl@std@@YAAEAV?$basic_ostream@DU?$char_traits@D@std@@@1@AEAV21@@Z */
|
|
|
|
basic_ostream_char* __cdecl basic_ostream_char_endl(basic_ostream_char *ostr)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", ostr);
|
|
|
|
|
|
|
|
basic_ostream_char_put(ostr, '\n');
|
|
|
|
basic_ostream_char_flush(ostr);
|
|
|
|
return ostr;
|
|
|
|
}
|
|
|
|
|
2012-06-15 09:07:23 +00:00
|
|
|
/* $?6DU?$char_traits@D@std@@V?$allocator@D@1@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@@Z */
|
|
|
|
/* ??$?6DU?$char_traits@D@std@@V?$allocator@D@1@@std@@YAAEAV?$basic_ostream@DU?$char_traits@D@std@@@0@AEAV10@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@@Z */
|
|
|
|
basic_ostream_char* __cdecl basic_ostream_char_print_bstr(basic_ostream_char *ostr, const basic_string_char *str)
|
|
|
|
{
|
|
|
|
basic_ios_char *base = basic_ostream_char_get_basic_ios(ostr);
|
|
|
|
IOSB_iostate state = IOSTATE_goodbit;
|
|
|
|
|
|
|
|
TRACE("(%p %p)\n", ostr, str);
|
|
|
|
|
|
|
|
if(basic_ostream_char_sentry_create(ostr)) {
|
|
|
|
MSVCP_size_t len = MSVCP_basic_string_char_length(str);
|
|
|
|
streamsize pad = (base->base.wide>len ? base->base.wide-len : 0);
|
|
|
|
|
|
|
|
if((base->base.fmtfl & FMTFLAG_adjustfield) != FMTFLAG_left) {
|
|
|
|
for(; pad!=0; pad--) {
|
|
|
|
if(basic_streambuf_char_sputc(base->strbuf, base->fillch) == EOF) {
|
|
|
|
state = IOSTATE_badbit;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(state == IOSTATE_goodbit) {
|
|
|
|
if(basic_streambuf_char_sputn(base->strbuf, MSVCP_basic_string_char_c_str(str), len) != len)
|
|
|
|
state = IOSTATE_badbit;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(; pad!=0; pad--) {
|
|
|
|
if(basic_streambuf_char_sputc(base->strbuf, base->fillch) == EOF) {
|
|
|
|
state = IOSTATE_badbit;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
base->base.wide = 0;
|
|
|
|
}else {
|
|
|
|
state = IOSTATE_badbit;
|
|
|
|
}
|
|
|
|
basic_ostream_char_sentry_destroy(ostr);
|
|
|
|
|
|
|
|
basic_ios_char_setstate(base, state);
|
|
|
|
return ostr;
|
|
|
|
}
|
|
|
|
|
2012-06-15 09:08:10 +00:00
|
|
|
/* ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@P6AAAV01@AAV01@@Z@Z */
|
|
|
|
/* ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QEAAAEAV01@P6AAEAV01@AEAV01@@Z@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ostream_char_print_func, 8)
|
|
|
|
basic_ostream_char* __thiscall basic_ostream_char_print_func(basic_ostream_char *this,
|
|
|
|
basic_ostream_char* (__cdecl *pfunc)(basic_ostream_char*))
|
|
|
|
{
|
|
|
|
TRACE("(%p %p)\n", this, pfunc);
|
|
|
|
pfunc(this);
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@P6AAAV?$basic_ios@DU?$char_traits@D@std@@@1@AAV21@@Z@Z */
|
|
|
|
/* ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QEAAAEAV01@P6AAEAV?$basic_ios@DU?$char_traits@D@std@@@1@AEAV21@@Z@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ostream_char_print_func_basic_ios, 8)
|
|
|
|
basic_ostream_char* __thiscall basic_ostream_char_print_func_basic_ios(basic_ostream_char *this,
|
|
|
|
basic_ios_char* (__cdecl *pfunc)(basic_ios_char*))
|
|
|
|
{
|
|
|
|
TRACE("(%p %p)\n", this, pfunc);
|
|
|
|
pfunc(basic_ostream_char_get_basic_ios(this));
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@P6AAAVios_base@1@AAV21@@Z@Z */
|
|
|
|
/* ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QEAAAEAV01@P6AAEAVios_base@1@AEAV21@@Z@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ostream_char_print_func_ios_base, 8)
|
|
|
|
basic_ostream_char* __thiscall basic_ostream_char_print_func_ios_base(
|
|
|
|
basic_ostream_char *this, ios_base* (__cdecl *pfunc)(ios_base*))
|
|
|
|
{
|
|
|
|
TRACE("(%p %p)\n", this, pfunc);
|
|
|
|
pfunc(&basic_ostream_char_get_basic_ios(this)->base);
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2012-06-06 12:50:59 +00:00
|
|
|
/* Caution: basic_istream uses virtual inheritance. */
|
|
|
|
static inline basic_ios_char* basic_istream_char_get_basic_ios(basic_istream_char *this)
|
|
|
|
{
|
|
|
|
return (basic_ios_char*)((char*)this+this->vbtable[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??0?$basic_istream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@_N1@Z */
|
|
|
|
/* ??0?$basic_istream@DU?$char_traits@D@std@@@std@@QEAA@PEAV?$basic_streambuf@DU?$char_traits@D@std@@@1@_N1@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char_ctor_init, 20)
|
|
|
|
basic_istream_char* __thiscall basic_istream_char_ctor_init(basic_istream_char *this, basic_streambuf_char *strbuf, MSVCP_bool isstd, MSVCP_bool noinit, MSVCP_bool virt_init)
|
|
|
|
{
|
|
|
|
basic_ios_char *base;
|
|
|
|
|
|
|
|
TRACE("(%p %p %d %d %d)\n", this, strbuf, isstd, noinit, virt_init);
|
|
|
|
|
|
|
|
if(virt_init) {
|
|
|
|
this->vbtable = basic_istream_char_vbtable;
|
|
|
|
base = basic_istream_char_get_basic_ios(this);
|
|
|
|
basic_ios_char_ctor(base);
|
|
|
|
}else {
|
|
|
|
base = basic_istream_char_get_basic_ios(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
base->base.vtable = &MSVCP_basic_istream_char_vtable;
|
|
|
|
this->count = 0;
|
|
|
|
if(!noinit)
|
|
|
|
basic_ios_char_init(base, strbuf, isstd);
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??0?$basic_istream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@_N@Z */
|
|
|
|
/* ??0?$basic_istream@DU?$char_traits@D@std@@@std@@QEAA@PEAV?$basic_streambuf@DU?$char_traits@D@std@@@1@_N@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char_ctor, 16)
|
|
|
|
basic_istream_char* __thiscall basic_istream_char_ctor(basic_istream_char *this, basic_streambuf_char *strbuf, MSVCP_bool isstd, MSVCP_bool virt_init)
|
|
|
|
{
|
|
|
|
return basic_istream_char_ctor_init(this, strbuf, isstd, FALSE, virt_init);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??0?$basic_istream@DU?$char_traits@D@std@@@std@@QAE@W4_Uninitialized@1@@Z */
|
|
|
|
/* ??0?$basic_istream@DU?$char_traits@D@std@@@std@@QEAA@W4_Uninitialized@1@@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char_ctor_uninitialized, 12)
|
|
|
|
basic_istream_char* __thiscall basic_istream_char_ctor_uninitialized(basic_istream_char *this, int uninitialized, MSVCP_bool virt_init)
|
|
|
|
{
|
|
|
|
basic_ios_char *base;
|
|
|
|
|
|
|
|
TRACE("(%p %d %d)\n", this, uninitialized, virt_init);
|
|
|
|
|
|
|
|
if(virt_init) {
|
|
|
|
this->vbtable = basic_istream_char_vbtable;
|
|
|
|
base = basic_istream_char_get_basic_ios(this);
|
|
|
|
basic_ios_char_ctor(base);
|
|
|
|
}else {
|
|
|
|
base = basic_istream_char_get_basic_ios(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
base->base.vtable = &MSVCP_basic_istream_char_vtable;
|
|
|
|
ios_base_Addstd(&base->base);
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??1?$basic_istream@DU?$char_traits@D@std@@@std@@UAE@XZ */
|
|
|
|
/* ??1?$basic_istream@DU?$char_traits@D@std@@@std@@UEAA@XZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char_dtor, 4)
|
|
|
|
void __thiscall basic_istream_char_dtor(basic_istream_char *this)
|
|
|
|
{
|
|
|
|
/* don't destroy virtual base here */
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??_D?$basic_istream@DU?$char_traits@D@std@@@std@@QAEXXZ */
|
|
|
|
/* ??_D?$basic_istream@DU?$char_traits@D@std@@@std@@QEAAXXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char_vbase_dtor, 4)
|
|
|
|
void __thiscall basic_istream_char_vbase_dtor(basic_istream_char *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
basic_istream_char_dtor(this);
|
|
|
|
basic_ios_char_dtor(basic_istream_char_get_basic_ios(this));
|
|
|
|
}
|
|
|
|
|
|
|
|
DEFINE_THISCALL_WRAPPER(MSVCP_basic_istream_char_vector_dtor, 8)
|
|
|
|
basic_istream_char* __thiscall MSVCP_basic_istream_char_vector_dtor(basic_ios_char *base, unsigned int flags)
|
|
|
|
{
|
|
|
|
basic_istream_char *this = (basic_istream_char *)((char*)base - basic_istream_char_vbtable[1] + basic_istream_char_vbtable[0]);
|
|
|
|
|
|
|
|
TRACE("(%p %x)\n", this, flags);
|
|
|
|
|
|
|
|
if(flags & 2) {
|
|
|
|
/* we have an array, with the number of elements stored before the first object */
|
|
|
|
int i, *ptr = (int *)this-1;
|
|
|
|
|
|
|
|
for(i=*ptr-1; i>=0; i--)
|
|
|
|
basic_istream_char_vbase_dtor(this+i);
|
|
|
|
MSVCRT_operator_delete(ptr);
|
|
|
|
} else {
|
|
|
|
basic_istream_char_vbase_dtor(this);
|
|
|
|
if(flags & 1)
|
|
|
|
MSVCRT_operator_delete(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?_Ipfx@?$basic_istream@DU?$char_traits@D@std@@@std@@QAE_N_N@Z */
|
|
|
|
/* ?_Ipfx@?$basic_istream@DU?$char_traits@D@std@@@std@@QEAA_N_N@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char__Ipfx, 8)
|
|
|
|
MSVCP_bool __thiscall basic_istream_char__Ipfx(basic_istream_char *this, MSVCP_bool noskip)
|
|
|
|
{
|
|
|
|
basic_ios_char *base = basic_istream_char_get_basic_ios(this);
|
|
|
|
|
|
|
|
TRACE("(%p %d)\n", this, noskip);
|
|
|
|
|
|
|
|
if(!ios_base_good(&base->base)) {
|
|
|
|
basic_ios_char_setstate(base, IOSTATE_failbit);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(basic_ios_char_tie_get(base))
|
|
|
|
basic_ostream_char_flush(basic_ios_char_tie_get(base));
|
|
|
|
|
|
|
|
if(!noskip && (ios_base_flags_get(&base->base) & FMTFLAG_skipws)) {
|
|
|
|
basic_streambuf_char *strbuf = basic_ios_char_rdbuf_get(base);
|
2012-06-14 13:37:13 +00:00
|
|
|
const ctype_char *ctype = ctype_char_use_facet(base->strbuf->loc);
|
2012-06-06 12:50:59 +00:00
|
|
|
int ch;
|
|
|
|
|
|
|
|
for(ch = basic_streambuf_char_sgetc(strbuf); ;
|
|
|
|
ch = basic_streambuf_char_snextc(strbuf)) {
|
|
|
|
if(ch == EOF) {
|
|
|
|
basic_ios_char_setstate(base, IOSTATE_eofbit);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2012-06-14 13:37:13 +00:00
|
|
|
if(!ctype_char_is_ch(ctype, _SPACE|_BLANK, ch))
|
2012-06-06 12:50:59 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?ipfx@?$basic_istream@DU?$char_traits@D@std@@@std@@QAE_N_N@Z */
|
|
|
|
/* ?ipfx@?$basic_istream@DU?$char_traits@D@std@@@std@@QEAA_N_N@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char_ipfx, 8)
|
|
|
|
MSVCP_bool __thiscall basic_istream_char_ipfx(basic_istream_char *this, MSVCP_bool noskip)
|
|
|
|
{
|
|
|
|
return basic_istream_char__Ipfx(this, noskip);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?isfx@?$basic_istream@DU?$char_traits@D@std@@@std@@QAEXXZ */
|
|
|
|
/* ?isfx@?$basic_istream@DU?$char_traits@D@std@@@std@@QEAAXXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char_isfx, 4)
|
|
|
|
void __thiscall basic_istream_char_isfx(basic_istream_char *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
}
|
|
|
|
|
|
|
|
static BOOL basic_istream_char_sentry_create(basic_istream_char *istr, MSVCP_bool noskip)
|
|
|
|
{
|
|
|
|
basic_ios_char *base = basic_istream_char_get_basic_ios(istr);
|
|
|
|
|
|
|
|
if(basic_ios_char_rdbuf_get(base))
|
|
|
|
basic_streambuf_char__Lock(base->strbuf);
|
|
|
|
|
|
|
|
return basic_istream_char_ipfx(istr, noskip);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void basic_istream_char_sentry_destroy(basic_istream_char *istr)
|
|
|
|
{
|
|
|
|
basic_ios_char *base = basic_istream_char_get_basic_ios(istr);
|
|
|
|
|
|
|
|
if(basic_ios_char_rdbuf_get(base))
|
|
|
|
basic_streambuf_char__Unlock(base->strbuf);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?gcount@?$basic_istream@DU?$char_traits@D@std@@@std@@QBEHXZ */
|
|
|
|
/* ?gcount@?$basic_istream@DU?$char_traits@D@std@@@std@@QEBA_JXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char_gcount, 4)
|
|
|
|
int __thiscall basic_istream_char_gcount(const basic_istream_char *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return this->count;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?get@?$basic_istream@DU?$char_traits@D@std@@@std@@QAEHXZ */
|
|
|
|
/* ?get@?$basic_istream@DU?$char_traits@D@std@@@std@@QEAAHXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char_get, 4)
|
|
|
|
int __thiscall basic_istream_char_get(basic_istream_char *this)
|
|
|
|
{
|
|
|
|
basic_ios_char *base = basic_istream_char_get_basic_ios(this);
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
|
|
|
|
this->count = 0;
|
|
|
|
|
|
|
|
if(!basic_istream_char_sentry_create(this, TRUE)) {
|
|
|
|
basic_istream_char_sentry_destroy(this);
|
|
|
|
return EOF;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = basic_streambuf_char_sbumpc(basic_ios_char_rdbuf_get(base));
|
|
|
|
basic_istream_char_sentry_destroy(this);
|
|
|
|
if(ret == EOF)
|
|
|
|
basic_ios_char_setstate(base, IOSTATE_eofbit|IOSTATE_failbit);
|
|
|
|
else
|
|
|
|
this->count++;
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?get@?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV12@AAD@Z */
|
|
|
|
/* ?get@?$basic_istream@DU?$char_traits@D@std@@@std@@QEAAAEAV12@AEAD@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char_get_ch, 8)
|
|
|
|
basic_istream_char* __thiscall basic_istream_char_get_ch(basic_istream_char *this, char *ch)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
TRACE("(%p %p)\n", this, ch);
|
|
|
|
|
|
|
|
ret = basic_istream_char_get(this);
|
|
|
|
if(ret != EOF)
|
|
|
|
*ch = (char)ret;
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?get@?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV12@PADHD@Z */
|
|
|
|
/* ?get@?$basic_istream@DU?$char_traits@D@std@@@std@@QEAAAEAV12@PEAD_JD@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char_get_str_delim, 16)
|
|
|
|
basic_istream_char* __thiscall basic_istream_char_get_str_delim(basic_istream_char *this, char *str, streamsize count, char delim)
|
|
|
|
{
|
|
|
|
basic_ios_char *base = basic_istream_char_get_basic_ios(this);
|
|
|
|
int ch = delim;
|
|
|
|
|
|
|
|
TRACE("(%p %p %ld %c)\n", this, str, count, delim);
|
|
|
|
|
|
|
|
this->count = 0;
|
|
|
|
|
|
|
|
if(basic_istream_char_sentry_create(this, TRUE)) {
|
|
|
|
basic_streambuf_char *strbuf = basic_ios_char_rdbuf_get(base);
|
|
|
|
|
|
|
|
for(ch = basic_streambuf_char_sgetc(strbuf); count>1;
|
|
|
|
ch = basic_streambuf_char_snextc(strbuf)) {
|
|
|
|
if(ch==EOF || ch==delim)
|
|
|
|
break;
|
|
|
|
|
|
|
|
*str++ = ch;
|
|
|
|
this->count++;
|
|
|
|
count--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
basic_istream_char_sentry_destroy(this);
|
|
|
|
|
|
|
|
basic_ios_char_setstate(base, (!this->count ? IOSTATE_failbit : IOSTATE_goodbit) |
|
|
|
|
(ch==EOF ? IOSTATE_eofbit : IOSTATE_goodbit));
|
|
|
|
if(count > 0)
|
|
|
|
*str = 0;
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?get@?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV12@PADH@Z */
|
|
|
|
/* ?get@?$basic_istream@DU?$char_traits@D@std@@@std@@QEAAAEAV12@PEAD_J@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char_get_str, 12)
|
|
|
|
basic_istream_char* __thiscall basic_istream_char_get_str(basic_istream_char *this, char *str, streamsize count)
|
|
|
|
{
|
|
|
|
return basic_istream_char_get_str_delim(this, str, count, '\n');
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?get@?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV12@AAV?$basic_streambuf@DU?$char_traits@D@std@@@2@D@Z */
|
|
|
|
/* ?get@?$basic_istream@DU?$char_traits@D@std@@@std@@QEAAAEAV12@AEAV?$basic_streambuf@DU?$char_traits@D@std@@@2@D@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char_get_streambuf_delim, 12)
|
|
|
|
basic_istream_char* __thiscall basic_istream_char_get_streambuf_delim(basic_istream_char *this, basic_streambuf_char *strbuf, char delim)
|
|
|
|
{
|
|
|
|
basic_ios_char *base = basic_istream_char_get_basic_ios(this);
|
|
|
|
int ch = delim;
|
|
|
|
|
|
|
|
TRACE("(%p %p %c)\n", this, strbuf, delim);
|
|
|
|
|
|
|
|
this->count = 0;
|
|
|
|
|
|
|
|
if(basic_istream_char_sentry_create(this, TRUE)) {
|
|
|
|
basic_streambuf_char *strbuf_read = basic_ios_char_rdbuf_get(base);
|
|
|
|
|
|
|
|
for(ch = basic_streambuf_char_sgetc(strbuf_read); ;
|
|
|
|
ch = basic_streambuf_char_snextc(strbuf_read)) {
|
|
|
|
if(ch==EOF || ch==delim)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if(basic_streambuf_char_sputc(strbuf, ch) == EOF)
|
|
|
|
break;
|
|
|
|
this->count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
basic_istream_char_sentry_destroy(this);
|
|
|
|
|
|
|
|
basic_ios_char_setstate(base, (!this->count ? IOSTATE_failbit : IOSTATE_goodbit) |
|
|
|
|
(ch==EOF ? IOSTATE_eofbit : IOSTATE_goodbit));
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?get@?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV12@AAV?$basic_streambuf@DU?$char_traits@D@std@@@2@@Z */
|
|
|
|
/* ?get@?$basic_istream@DU?$char_traits@D@std@@@std@@QEAAAEAV12@AEAV?$basic_streambuf@DU?$char_traits@D@std@@@2@@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char_get_streambuf, 8)
|
|
|
|
basic_istream_char* __thiscall basic_istream_char_get_streambuf(basic_istream_char *this, basic_streambuf_char *strbuf)
|
|
|
|
{
|
|
|
|
return basic_istream_char_get_streambuf_delim(this, strbuf, '\n');
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?getline@?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV12@PADHD@Z */
|
|
|
|
/* ?getline@?$basic_istream@DU?$char_traits@D@std@@@std@@QEAAAEAV12@PEAD_JD@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char_getline_delim, 16)
|
|
|
|
basic_istream_char* __thiscall basic_istream_char_getline_delim(basic_istream_char *this, char *str, streamsize count, char delim)
|
|
|
|
{
|
|
|
|
basic_ios_char *base = basic_istream_char_get_basic_ios(this);
|
|
|
|
int ch = delim;
|
|
|
|
|
|
|
|
TRACE("(%p %p %ld %c)\n", this, str, count, delim);
|
|
|
|
|
|
|
|
this->count = 0;
|
|
|
|
|
|
|
|
if(basic_istream_char_sentry_create(this, TRUE) && count>0) {
|
|
|
|
basic_streambuf_char *strbuf = basic_ios_char_rdbuf_get(base);
|
|
|
|
|
|
|
|
while(count > 1) {
|
|
|
|
ch = basic_streambuf_char_sbumpc(strbuf);
|
|
|
|
|
|
|
|
if(ch==EOF || ch==delim)
|
|
|
|
break;
|
|
|
|
|
|
|
|
*str++ = ch;
|
|
|
|
this->count++;
|
|
|
|
count--;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(ch == delim)
|
|
|
|
this->count++;
|
|
|
|
else if(ch != EOF) {
|
|
|
|
ch = basic_streambuf_char_sgetc(strbuf);
|
|
|
|
|
|
|
|
if(ch == delim) {
|
|
|
|
basic_streambuf_char__Gninc(strbuf);
|
|
|
|
this->count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
basic_istream_char_sentry_destroy(this);
|
|
|
|
|
|
|
|
basic_ios_char_setstate(base, (ch==EOF ? IOSTATE_eofbit : IOSTATE_goodbit) |
|
|
|
|
(!this->count || (ch!=delim && ch!=EOF) ? IOSTATE_failbit : IOSTATE_goodbit));
|
|
|
|
if(count > 0)
|
|
|
|
*str = 0;
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?getline@?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV12@PADH@Z */
|
|
|
|
/* ?getline@?$basic_istream@DU?$char_traits@D@std@@@std@@QEAAAEAV12@PEAD_J@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char_getline, 12)
|
|
|
|
basic_istream_char* __thiscall basic_istream_char_getline(basic_istream_char *this, char *str, streamsize count)
|
|
|
|
{
|
|
|
|
return basic_istream_char_getline_delim(this, str, count, '\n');
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?ignore@?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV12@HH@Z */
|
|
|
|
/* ?ignore@?$basic_istream@DU?$char_traits@D@std@@@std@@QEAAAEAV12@_JH@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char_ignore, 12)
|
|
|
|
basic_istream_char* __thiscall basic_istream_char_ignore(basic_istream_char *this, streamsize count, int delim)
|
|
|
|
{
|
|
|
|
basic_ios_char *base = basic_istream_char_get_basic_ios(this);
|
|
|
|
int ch = delim;
|
|
|
|
|
|
|
|
TRACE("(%p %ld %d)\n", this, count, delim);
|
|
|
|
|
|
|
|
this->count = 0;
|
|
|
|
|
|
|
|
if(basic_istream_char_sentry_create(this, TRUE)) {
|
|
|
|
basic_streambuf_char *strbuf = basic_ios_char_rdbuf_get(base);
|
|
|
|
|
|
|
|
while(count > 0) {
|
|
|
|
ch = basic_streambuf_char_sbumpc(strbuf);
|
|
|
|
|
|
|
|
if(ch==EOF || ch==delim)
|
|
|
|
break;
|
|
|
|
|
|
|
|
this->count++;
|
|
|
|
if(count != INT_MAX)
|
|
|
|
count--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
basic_istream_char_sentry_destroy(this);
|
|
|
|
|
|
|
|
if(ch == EOF)
|
|
|
|
basic_ios_char_setstate(base, IOSTATE_eofbit);
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?peek@?$basic_istream@DU?$char_traits@D@std@@@std@@QAEHXZ */
|
|
|
|
/* ?peek@?$basic_istream@DU?$char_traits@D@std@@@std@@QEAAHXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char_peek, 4)
|
|
|
|
int __thiscall basic_istream_char_peek(basic_istream_char *this)
|
|
|
|
{
|
|
|
|
basic_ios_char *base = basic_istream_char_get_basic_ios(this);
|
|
|
|
int ret = EOF;
|
|
|
|
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
|
|
|
|
this->count = 0;
|
|
|
|
|
|
|
|
if(basic_istream_char_sentry_create(this, TRUE))
|
|
|
|
ret = basic_streambuf_char_sgetc(basic_ios_char_rdbuf_get(base));
|
|
|
|
basic_istream_char_sentry_destroy(this);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?_Read_s@?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV12@PADIH@Z */
|
|
|
|
/* ?_Read_s@?$basic_istream@DU?$char_traits@D@std@@@std@@QEAAAEAV12@PEAD_K_J@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char__Read_s, 16)
|
|
|
|
basic_istream_char* __thiscall basic_istream_char__Read_s(basic_istream_char *this, char *str, MSVCP_size_t size, streamsize count)
|
|
|
|
{
|
|
|
|
basic_ios_char *base = basic_istream_char_get_basic_ios(this);
|
|
|
|
IOSB_iostate state = IOSTATE_goodbit;
|
|
|
|
|
|
|
|
TRACE("(%p %p %lu %ld)\n", this, str, size, count);
|
|
|
|
|
|
|
|
if(basic_istream_char_sentry_create(this, TRUE)) {
|
|
|
|
basic_streambuf_char *strbuf = basic_ios_char_rdbuf_get(base);
|
|
|
|
|
|
|
|
this->count = basic_streambuf_char__Sgetn_s(strbuf, str, size, count);
|
|
|
|
if(this->count != count)
|
|
|
|
state |= IOSTATE_failbit | IOSTATE_eofbit;
|
|
|
|
}else {
|
|
|
|
this->count = 0;
|
|
|
|
}
|
|
|
|
basic_istream_char_sentry_destroy(this);
|
|
|
|
|
|
|
|
basic_ios_char_setstate(base, state);
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?read@?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV12@PADH@Z */
|
|
|
|
/* ?read@?$basic_istream@DU?$char_traits@D@std@@@std@@QEAAAEAV12@PEAD_J@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char_read, 12)
|
|
|
|
basic_istream_char* __thiscall basic_istream_char_read(basic_istream_char *this, char *str, streamsize count)
|
|
|
|
{
|
|
|
|
return basic_istream_char__Read_s(this, str, count, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?_Readsome_s@?$basic_istream@DU?$char_traits@D@std@@@std@@QAEHPADIH@Z */
|
|
|
|
/* ?_Readsome_s@?$basic_istream@DU?$char_traits@D@std@@@std@@QEAA_JPEAD_K_J@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char__Readsome_s, 16)
|
|
|
|
streamsize __thiscall basic_istream_char__Readsome_s(basic_istream_char *this, char *str, MSVCP_size_t size, streamsize count)
|
|
|
|
{
|
|
|
|
basic_ios_char *base = basic_istream_char_get_basic_ios(this);
|
|
|
|
IOSB_iostate state = IOSTATE_goodbit;
|
|
|
|
|
|
|
|
TRACE("(%p %p %lu %ld)\n", this, str, size, count);
|
|
|
|
|
|
|
|
this->count = 0;
|
|
|
|
|
|
|
|
if(basic_istream_char_sentry_create(this, TRUE)) {
|
|
|
|
streamsize avail = basic_streambuf_char_in_avail(basic_ios_char_rdbuf_get(base));
|
|
|
|
if(avail > count)
|
|
|
|
avail = count;
|
|
|
|
|
|
|
|
if(avail == -1)
|
|
|
|
state |= IOSTATE_eofbit;
|
|
|
|
else if(avail > 0)
|
|
|
|
basic_istream_char__Read_s(this, str, size, avail);
|
|
|
|
}else {
|
|
|
|
state |= IOSTATE_failbit;
|
|
|
|
}
|
|
|
|
basic_istream_char_sentry_destroy(this);
|
|
|
|
|
|
|
|
basic_ios_char_setstate(base, state);
|
|
|
|
return this->count;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?readsome@?$basic_istream@DU?$char_traits@D@std@@@std@@QAEHPADH@Z */
|
|
|
|
/* ?readsome@?$basic_istream@DU?$char_traits@D@std@@@std@@QEAA_JPEAD_J@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char_readsome, 12)
|
|
|
|
streamsize __thiscall basic_istream_char_readsome(basic_istream_char *this, char *str, streamsize count)
|
|
|
|
{
|
|
|
|
return basic_istream_char__Readsome_s(this, str, count, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?putback@?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV12@D@Z */
|
|
|
|
/* ?putback@?$basic_istream@DU?$char_traits@D@std@@@std@@QEAAAEAV12@D@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char_putback, 8)
|
|
|
|
basic_istream_char* __thiscall basic_istream_char_putback(basic_istream_char *this, char ch)
|
|
|
|
{
|
|
|
|
basic_ios_char *base = basic_istream_char_get_basic_ios(this);
|
|
|
|
IOSB_iostate state = IOSTATE_goodbit;
|
|
|
|
|
|
|
|
TRACE("(%p %c)\n", this, ch);
|
|
|
|
|
|
|
|
this->count = 0;
|
|
|
|
|
|
|
|
if(basic_istream_char_sentry_create(this, TRUE)) {
|
|
|
|
basic_streambuf_char *strbuf = basic_ios_char_rdbuf_get(base);
|
|
|
|
|
|
|
|
if(!ios_base_good(&base->base))
|
|
|
|
state |= IOSTATE_failbit;
|
|
|
|
else if(!strbuf || basic_streambuf_char_sputbackc(strbuf, ch)==EOF)
|
|
|
|
state |= IOSTATE_badbit;
|
|
|
|
}
|
|
|
|
basic_istream_char_sentry_destroy(this);
|
|
|
|
|
|
|
|
basic_ios_char_setstate(base, state);
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?unget@?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ */
|
|
|
|
/* ?unget@?$basic_istream@DU?$char_traits@D@std@@@std@@QEAAAEAV12@XZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char_unget, 4)
|
|
|
|
basic_istream_char* __thiscall basic_istream_char_unget(basic_istream_char *this)
|
|
|
|
{
|
|
|
|
basic_ios_char *base = basic_istream_char_get_basic_ios(this);
|
|
|
|
IOSB_iostate state = IOSTATE_goodbit;
|
|
|
|
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
|
|
|
|
this->count = 0;
|
|
|
|
|
|
|
|
if(basic_istream_char_sentry_create(this, TRUE)) {
|
|
|
|
basic_streambuf_char *strbuf = basic_ios_char_rdbuf_get(base);
|
|
|
|
|
|
|
|
if(!ios_base_good(&base->base))
|
|
|
|
state |= IOSTATE_failbit;
|
|
|
|
else if(!strbuf || basic_streambuf_char_sungetc(strbuf)==EOF)
|
|
|
|
state |= IOSTATE_badbit;
|
|
|
|
}
|
|
|
|
basic_istream_char_sentry_destroy(this);
|
|
|
|
|
|
|
|
basic_ios_char_setstate(base, state);
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?sync@?$basic_istream@DU?$char_traits@D@std@@@std@@QAEHXZ */
|
|
|
|
/* ?sync@?$basic_istream@DU?$char_traits@D@std@@@std@@QEAAHXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char_sync, 4)
|
|
|
|
int __thiscall basic_istream_char_sync(basic_istream_char *this)
|
|
|
|
{
|
|
|
|
basic_ios_char *base = basic_istream_char_get_basic_ios(this);
|
|
|
|
basic_streambuf_char *strbuf = basic_ios_char_rdbuf_get(base);
|
|
|
|
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
|
|
|
|
if(!strbuf)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if(basic_istream_char_sentry_create(this, TRUE)) {
|
|
|
|
if(basic_streambuf_char_pubsync(strbuf) != -1) {
|
|
|
|
basic_istream_char_sentry_destroy(this);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
basic_istream_char_sentry_destroy(this);
|
|
|
|
|
|
|
|
basic_ios_char_setstate(base, IOSTATE_badbit);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?tellg@?$basic_istream@DU?$char_traits@D@std@@@std@@QAE?AV?$fpos@H@2@XZ */
|
|
|
|
/* ?tellg@?$basic_istream@DU?$char_traits@D@std@@@std@@QEAA?AV?$fpos@H@2@XZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char_tellg, 8)
|
|
|
|
fpos_int* __thiscall basic_istream_char_tellg(basic_istream_char *this, fpos_int *ret)
|
|
|
|
{
|
|
|
|
TRACE("(%p %p)\n", this, ret);
|
|
|
|
|
|
|
|
if(basic_istream_char_sentry_create(this, TRUE)) {
|
|
|
|
basic_ios_char *base = basic_istream_char_get_basic_ios(this);
|
|
|
|
if(!ios_base_fail(&base->base)) {
|
|
|
|
basic_streambuf_char_pubseekoff(basic_ios_char_rdbuf_get(base),
|
|
|
|
ret, 0, SEEKDIR_cur, OPENMODE_in);
|
|
|
|
basic_istream_char_sentry_destroy(this);
|
|
|
|
|
|
|
|
if(ret->off==0 && ret->pos==-1 && ret->state==0)
|
|
|
|
basic_ios_char_setstate(base, IOSTATE_failbit);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
basic_istream_char_sentry_destroy(this);
|
|
|
|
|
|
|
|
ret->off = 0;
|
|
|
|
ret->pos = -1;
|
|
|
|
ret->state = 0;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?seekg@?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV12@JH@Z */
|
|
|
|
/* ?seekg@?$basic_istream@DU?$char_traits@D@std@@@std@@QEAAAEAV12@_JH@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char_seekg, 12)
|
|
|
|
basic_istream_char* __thiscall basic_istream_char_seekg(basic_istream_char *this, streamoff off, int dir)
|
|
|
|
{
|
|
|
|
basic_ios_char *base = basic_istream_char_get_basic_ios(this);
|
|
|
|
|
|
|
|
TRACE("(%p %ld %d)\n", this, off, dir);
|
|
|
|
|
|
|
|
if(basic_istream_char_sentry_create(this, TRUE)) {
|
|
|
|
if(!ios_base_fail(&base->base)) {
|
|
|
|
basic_streambuf_char *strbuf = basic_ios_char_rdbuf_get(base);
|
|
|
|
fpos_int ret;
|
|
|
|
|
|
|
|
basic_streambuf_char_pubseekoff(strbuf, &ret, off, dir, OPENMODE_in);
|
|
|
|
basic_istream_char_sentry_destroy(this);
|
|
|
|
|
|
|
|
if(ret.off==0 && ret.pos==-1 && ret.state==0)
|
|
|
|
basic_ios_char_setstate(base, IOSTATE_failbit);
|
|
|
|
else
|
|
|
|
basic_ios_char_clear(base, IOSTATE_goodbit);
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
basic_istream_char_sentry_destroy(this);
|
|
|
|
|
|
|
|
basic_ios_char_setstate(base, IOSTATE_failbit);
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?seekg@?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV12@V?$fpos@H@2@@Z */
|
|
|
|
/* ?seekg@?$basic_istream@DU?$char_traits@D@std@@@std@@QEAAAEAV12@V?$fpos@H@2@@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char_seekg_fpos, 28)
|
|
|
|
basic_istream_char* __thiscall basic_istream_char_seekg_fpos(basic_istream_char *this, fpos_int pos)
|
|
|
|
{
|
|
|
|
basic_ios_char *base = basic_istream_char_get_basic_ios(this);
|
|
|
|
|
|
|
|
TRACE("(%p %s)\n", this, debugstr_fpos_int(&pos));
|
|
|
|
|
|
|
|
if(basic_istream_char_sentry_create(this, TRUE)) {
|
|
|
|
if(!ios_base_fail(&base->base)) {
|
|
|
|
basic_streambuf_char *strbuf = basic_ios_char_rdbuf_get(base);
|
|
|
|
fpos_int ret;
|
|
|
|
|
|
|
|
basic_streambuf_char_pubseekpos(strbuf, &ret, pos, OPENMODE_in);
|
|
|
|
basic_istream_char_sentry_destroy(this);
|
|
|
|
|
|
|
|
if(ret.off==0 && ret.pos==-1 && ret.state==0)
|
|
|
|
basic_ios_char_setstate(base, IOSTATE_failbit);
|
|
|
|
else
|
|
|
|
basic_ios_char_clear(base, IOSTATE_goodbit);
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
basic_istream_char_sentry_destroy(this);
|
|
|
|
|
|
|
|
basic_ios_char_setstate(base, IOSTATE_failbit);
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??5?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV01@AAF@Z */
|
|
|
|
/* ??5?$basic_istream@DU?$char_traits@D@std@@@std@@QEAAAEAV01@AEAF@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char_read_short, 8)
|
2012-06-21 10:27:21 +00:00
|
|
|
basic_istream_char* __thiscall basic_istream_char_read_short(basic_istream_char *this, short *v)
|
2012-06-06 12:50:59 +00:00
|
|
|
{
|
2012-06-21 10:27:21 +00:00
|
|
|
basic_ios_char *base = basic_istream_char_get_basic_ios(this);
|
|
|
|
int state = IOSTATE_goodbit;
|
|
|
|
|
|
|
|
TRACE("(%p %p)\n", this, v);
|
|
|
|
|
|
|
|
if(basic_istream_char_sentry_create(this, FALSE)) {
|
|
|
|
basic_streambuf_char *strbuf = basic_ios_char_rdbuf_get(base);
|
|
|
|
const num_get *numget = num_get_char_use_facet(strbuf->loc);
|
|
|
|
istreambuf_iterator_char first={0}, last={0};
|
|
|
|
LONG tmp;
|
|
|
|
|
|
|
|
first.strbuf = strbuf;
|
|
|
|
num_get_char_get_long(numget, &last, first, last, &base->base, &state, &tmp);
|
|
|
|
|
|
|
|
if(!(state&IOSTATE_failbit) && tmp==(LONG)((short)tmp))
|
|
|
|
*v = tmp;
|
|
|
|
else
|
|
|
|
state |= IOSTATE_failbit;
|
|
|
|
}
|
|
|
|
basic_istream_char_sentry_destroy(this);
|
|
|
|
|
|
|
|
basic_ios_char_setstate(base, state);
|
|
|
|
return this;
|
2012-06-06 12:50:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ??5?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV01@AAG@Z */
|
|
|
|
/* ??5?$basic_istream@DU?$char_traits@D@std@@@std@@QEAAAEAV01@AEAG@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char_read_ushort, 8)
|
2012-06-21 10:27:21 +00:00
|
|
|
basic_istream_char* __thiscall basic_istream_char_read_ushort(basic_istream_char *this, unsigned short *v)
|
2012-06-06 12:50:59 +00:00
|
|
|
{
|
2012-06-21 10:27:21 +00:00
|
|
|
basic_ios_char *base = basic_istream_char_get_basic_ios(this);
|
|
|
|
int state = IOSTATE_goodbit;
|
|
|
|
|
|
|
|
TRACE("(%p %p)\n", this, v);
|
|
|
|
|
|
|
|
if(basic_istream_char_sentry_create(this, FALSE)) {
|
|
|
|
basic_streambuf_char *strbuf = basic_ios_char_rdbuf_get(base);
|
|
|
|
const num_get *numget = num_get_char_use_facet(strbuf->loc);
|
|
|
|
istreambuf_iterator_char first={0}, last={0};
|
|
|
|
|
|
|
|
first.strbuf = strbuf;
|
|
|
|
num_get_char_get_ushort(numget, &last, first, last, &base->base, &state, v);
|
|
|
|
}
|
|
|
|
basic_istream_char_sentry_destroy(this);
|
|
|
|
|
|
|
|
basic_ios_char_setstate(base, state);
|
|
|
|
return this;
|
2012-06-06 12:50:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ??5?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV01@AAH@Z */
|
|
|
|
/* ??5?$basic_istream@DU?$char_traits@D@std@@@std@@QEAAAEAV01@AEAH@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char_read_int, 8)
|
2012-06-21 10:27:21 +00:00
|
|
|
basic_istream_char* __thiscall basic_istream_char_read_int(basic_istream_char *this, int *v)
|
2012-06-06 12:50:59 +00:00
|
|
|
{
|
2012-06-21 10:27:21 +00:00
|
|
|
basic_ios_char *base = basic_istream_char_get_basic_ios(this);
|
|
|
|
int state = IOSTATE_goodbit;
|
|
|
|
|
|
|
|
TRACE("(%p %p)\n", this, v);
|
|
|
|
|
|
|
|
if(basic_istream_char_sentry_create(this, FALSE)) {
|
|
|
|
basic_streambuf_char *strbuf = basic_ios_char_rdbuf_get(base);
|
|
|
|
const num_get *numget = num_get_char_use_facet(strbuf->loc);
|
|
|
|
istreambuf_iterator_char first={0}, last={0};
|
|
|
|
|
|
|
|
first.strbuf = strbuf;
|
|
|
|
num_get_char_get_long(numget, &last, first, last, &base->base, &state, v);
|
|
|
|
}
|
|
|
|
basic_istream_char_sentry_destroy(this);
|
|
|
|
|
|
|
|
basic_ios_char_setstate(base, state);
|
|
|
|
return this;
|
2012-06-06 12:50:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ??5?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV01@AAI@Z */
|
|
|
|
/* ??5?$basic_istream@DU?$char_traits@D@std@@@std@@QEAAAEAV01@AEAI@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char_read_uint, 8)
|
2012-06-21 10:27:21 +00:00
|
|
|
basic_istream_char* __thiscall basic_istream_char_read_uint(basic_istream_char *this, unsigned int *v)
|
2012-06-06 12:50:59 +00:00
|
|
|
{
|
2012-06-21 10:27:21 +00:00
|
|
|
basic_ios_char *base = basic_istream_char_get_basic_ios(this);
|
|
|
|
int state = IOSTATE_goodbit;
|
|
|
|
|
|
|
|
TRACE("(%p %p)\n", this, v);
|
|
|
|
|
|
|
|
if(basic_istream_char_sentry_create(this, FALSE)) {
|
|
|
|
basic_streambuf_char *strbuf = basic_ios_char_rdbuf_get(base);
|
|
|
|
const num_get *numget = num_get_char_use_facet(strbuf->loc);
|
|
|
|
istreambuf_iterator_char first={0}, last={0};
|
|
|
|
|
|
|
|
first.strbuf = strbuf;
|
|
|
|
num_get_char_get_uint(numget, &last, first, last, &base->base, &state, v);
|
|
|
|
}
|
|
|
|
basic_istream_char_sentry_destroy(this);
|
|
|
|
|
|
|
|
basic_ios_char_setstate(base, state);
|
|
|
|
return this;
|
2012-06-06 12:50:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ??5?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV01@AAJ@Z */
|
|
|
|
/* ??5?$basic_istream@DU?$char_traits@D@std@@@std@@QEAAAEAV01@AEAJ@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char_read_long, 8)
|
2012-06-21 10:27:21 +00:00
|
|
|
basic_istream_char* __thiscall basic_istream_char_read_long(basic_istream_char *this, LONG *v)
|
2012-06-06 12:50:59 +00:00
|
|
|
{
|
2012-06-21 10:27:21 +00:00
|
|
|
basic_ios_char *base = basic_istream_char_get_basic_ios(this);
|
|
|
|
int state = IOSTATE_goodbit;
|
|
|
|
|
|
|
|
TRACE("(%p %p)\n", this, v);
|
|
|
|
|
|
|
|
if(basic_istream_char_sentry_create(this, FALSE)) {
|
|
|
|
basic_streambuf_char *strbuf = basic_ios_char_rdbuf_get(base);
|
|
|
|
const num_get *numget = num_get_char_use_facet(strbuf->loc);
|
|
|
|
istreambuf_iterator_char first={0}, last={0};
|
|
|
|
|
|
|
|
first.strbuf = strbuf;
|
|
|
|
num_get_char_get_long(numget, &last, first, last, &base->base, &state, v);
|
|
|
|
}
|
|
|
|
basic_istream_char_sentry_destroy(this);
|
|
|
|
|
|
|
|
basic_ios_char_setstate(base, state);
|
|
|
|
return this;
|
2012-06-06 12:50:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ??5?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV01@AAK@Z */
|
|
|
|
/* ??5?$basic_istream@DU?$char_traits@D@std@@@std@@QEAAAEAV01@AEAK@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char_read_ulong, 8)
|
2012-06-21 10:27:21 +00:00
|
|
|
basic_istream_char* __thiscall basic_istream_char_read_ulong(basic_istream_char *this, ULONG *v)
|
2012-06-06 12:50:59 +00:00
|
|
|
{
|
2012-06-21 10:27:21 +00:00
|
|
|
basic_ios_char *base = basic_istream_char_get_basic_ios(this);
|
|
|
|
int state = IOSTATE_goodbit;
|
|
|
|
|
|
|
|
TRACE("(%p %p)\n", this, v);
|
|
|
|
|
|
|
|
if(basic_istream_char_sentry_create(this, FALSE)) {
|
|
|
|
basic_streambuf_char *strbuf = basic_ios_char_rdbuf_get(base);
|
|
|
|
const num_get *numget = num_get_char_use_facet(strbuf->loc);
|
|
|
|
istreambuf_iterator_char first={0}, last={0};
|
|
|
|
|
|
|
|
first.strbuf = strbuf;
|
|
|
|
num_get_char_get_ulong(numget, &last, first, last, &base->base, &state, v);
|
|
|
|
}
|
|
|
|
basic_istream_char_sentry_destroy(this);
|
|
|
|
|
|
|
|
basic_ios_char_setstate(base, state);
|
|
|
|
return this;
|
2012-06-06 12:50:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ??5?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV01@AAM@Z */
|
|
|
|
/* ??5?$basic_istream@DU?$char_traits@D@std@@@std@@QEAAAEAV01@AEAM@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char_read_float, 8)
|
2012-06-21 10:27:21 +00:00
|
|
|
basic_istream_char* __thiscall basic_istream_char_read_float(basic_istream_char *this, float *v)
|
2012-06-06 12:50:59 +00:00
|
|
|
{
|
2012-06-21 10:27:21 +00:00
|
|
|
basic_ios_char *base = basic_istream_char_get_basic_ios(this);
|
|
|
|
int state = IOSTATE_goodbit;
|
|
|
|
|
|
|
|
TRACE("(%p %p)\n", this, v);
|
|
|
|
|
|
|
|
if(basic_istream_char_sentry_create(this, FALSE)) {
|
|
|
|
basic_streambuf_char *strbuf = basic_ios_char_rdbuf_get(base);
|
|
|
|
const num_get *numget = num_get_char_use_facet(strbuf->loc);
|
|
|
|
istreambuf_iterator_char first={0}, last={0};
|
|
|
|
|
|
|
|
first.strbuf = strbuf;
|
|
|
|
num_get_char_get_float(numget, &last, first, last, &base->base, &state, v);
|
|
|
|
}
|
|
|
|
basic_istream_char_sentry_destroy(this);
|
|
|
|
|
|
|
|
basic_ios_char_setstate(base, state);
|
|
|
|
return this;
|
2012-06-06 12:50:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ??5?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV01@AAN@Z */
|
|
|
|
/* ??5?$basic_istream@DU?$char_traits@D@std@@@std@@QEAAAEAV01@AEAN@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char_read_double, 8)
|
2012-06-21 10:27:21 +00:00
|
|
|
basic_istream_char* __thiscall basic_istream_char_read_double(basic_istream_char *this, double *v)
|
2012-06-06 12:50:59 +00:00
|
|
|
{
|
2012-06-21 10:27:21 +00:00
|
|
|
basic_ios_char *base = basic_istream_char_get_basic_ios(this);
|
|
|
|
int state = IOSTATE_goodbit;
|
|
|
|
|
|
|
|
TRACE("(%p %p)\n", this, v);
|
|
|
|
|
|
|
|
if(basic_istream_char_sentry_create(this, FALSE)) {
|
|
|
|
basic_streambuf_char *strbuf = basic_ios_char_rdbuf_get(base);
|
|
|
|
const num_get *numget = num_get_char_use_facet(strbuf->loc);
|
|
|
|
istreambuf_iterator_char first={0}, last={0};
|
|
|
|
|
|
|
|
first.strbuf = strbuf;
|
|
|
|
num_get_char_get_double(numget, &last, first, last, &base->base, &state, v);
|
|
|
|
}
|
|
|
|
basic_istream_char_sentry_destroy(this);
|
|
|
|
|
|
|
|
basic_ios_char_setstate(base, state);
|
|
|
|
return this;
|
2012-06-06 12:50:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ??5?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV01@AAO@Z */
|
|
|
|
/* ??5?$basic_istream@DU?$char_traits@D@std@@@std@@QEAAAEAV01@AEAO@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char_read_ldouble, 8)
|
2012-06-21 10:27:21 +00:00
|
|
|
basic_istream_char* __thiscall basic_istream_char_read_ldouble(basic_istream_char *this, double *v)
|
2012-06-06 12:50:59 +00:00
|
|
|
{
|
2012-06-21 10:27:21 +00:00
|
|
|
basic_ios_char *base = basic_istream_char_get_basic_ios(this);
|
|
|
|
int state = IOSTATE_goodbit;
|
|
|
|
|
|
|
|
TRACE("(%p %p)\n", this, v);
|
|
|
|
|
|
|
|
if(basic_istream_char_sentry_create(this, FALSE)) {
|
|
|
|
basic_streambuf_char *strbuf = basic_ios_char_rdbuf_get(base);
|
|
|
|
const num_get *numget = num_get_char_use_facet(strbuf->loc);
|
|
|
|
istreambuf_iterator_char first={0}, last={0};
|
|
|
|
|
|
|
|
first.strbuf = strbuf;
|
|
|
|
num_get_char_get_ldouble(numget, &last, first, last, &base->base, &state, v);
|
|
|
|
}
|
|
|
|
basic_istream_char_sentry_destroy(this);
|
|
|
|
|
|
|
|
basic_ios_char_setstate(base, state);
|
|
|
|
return this;
|
2012-06-06 12:50:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ??5?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV01@AAPAX@Z */
|
|
|
|
/* ??5?$basic_istream@DU?$char_traits@D@std@@@std@@QEAAAEAV01@AEAPEAX@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char_read_ptr, 8)
|
2012-06-21 10:27:21 +00:00
|
|
|
basic_istream_char* __thiscall basic_istream_char_read_ptr(basic_istream_char *this, void **v)
|
2012-06-06 12:50:59 +00:00
|
|
|
{
|
2012-06-21 10:27:21 +00:00
|
|
|
basic_ios_char *base = basic_istream_char_get_basic_ios(this);
|
|
|
|
int state = IOSTATE_goodbit;
|
|
|
|
|
|
|
|
TRACE("(%p %p)\n", this, v);
|
|
|
|
|
|
|
|
if(basic_istream_char_sentry_create(this, FALSE)) {
|
|
|
|
basic_streambuf_char *strbuf = basic_ios_char_rdbuf_get(base);
|
|
|
|
const num_get *numget = num_get_char_use_facet(strbuf->loc);
|
|
|
|
istreambuf_iterator_char first={0}, last={0};
|
|
|
|
|
|
|
|
first.strbuf = strbuf;
|
|
|
|
num_get_char_get_void(numget, &last, first, last, &base->base, &state, v);
|
|
|
|
}
|
|
|
|
basic_istream_char_sentry_destroy(this);
|
|
|
|
|
|
|
|
basic_ios_char_setstate(base, state);
|
|
|
|
return this;
|
2012-06-06 12:50:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ??5?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV01@AA_J@Z */
|
|
|
|
/* ??5?$basic_istream@DU?$char_traits@D@std@@@std@@QEAAAEAV01@AEA_J@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char_read_int64, 8)
|
2012-06-21 10:27:21 +00:00
|
|
|
basic_istream_char* __thiscall basic_istream_char_read_int64(basic_istream_char *this, __int64 *v)
|
2012-06-06 12:50:59 +00:00
|
|
|
{
|
2012-06-21 10:27:21 +00:00
|
|
|
basic_ios_char *base = basic_istream_char_get_basic_ios(this);
|
|
|
|
int state = IOSTATE_goodbit;
|
|
|
|
|
|
|
|
TRACE("(%p %p)\n", this, v);
|
|
|
|
|
|
|
|
if(basic_istream_char_sentry_create(this, FALSE)) {
|
|
|
|
basic_streambuf_char *strbuf = basic_ios_char_rdbuf_get(base);
|
|
|
|
const num_get *numget = num_get_char_use_facet(strbuf->loc);
|
|
|
|
istreambuf_iterator_char first={0}, last={0};
|
|
|
|
|
|
|
|
first.strbuf = strbuf;
|
|
|
|
num_get_char_get_int64(numget, &last, first, last, &base->base, &state, v);
|
|
|
|
}
|
|
|
|
basic_istream_char_sentry_destroy(this);
|
|
|
|
|
|
|
|
basic_ios_char_setstate(base, state);
|
|
|
|
return this;
|
2012-06-06 12:50:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ??5?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV01@AA_K@Z */
|
|
|
|
/* ??5?$basic_istream@DU?$char_traits@D@std@@@std@@QEAAAEAV01@AEA_K@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char_read_uint64, 8)
|
2012-06-21 10:27:21 +00:00
|
|
|
basic_istream_char* __thiscall basic_istream_char_read_uint64(basic_istream_char *this, unsigned __int64 *v)
|
2012-06-06 12:50:59 +00:00
|
|
|
{
|
2012-06-21 10:27:21 +00:00
|
|
|
basic_ios_char *base = basic_istream_char_get_basic_ios(this);
|
|
|
|
int state = IOSTATE_goodbit;
|
|
|
|
|
|
|
|
TRACE("(%p %p)\n", this, v);
|
|
|
|
|
|
|
|
if(basic_istream_char_sentry_create(this, FALSE)) {
|
|
|
|
basic_streambuf_char *strbuf = basic_ios_char_rdbuf_get(base);
|
|
|
|
const num_get *numget = num_get_char_use_facet(strbuf->loc);
|
|
|
|
istreambuf_iterator_char first={0}, last={0};
|
|
|
|
|
|
|
|
first.strbuf = strbuf;
|
|
|
|
num_get_char_get_uint64(numget, &last, first, last, &base->base, &state, v);
|
|
|
|
}
|
|
|
|
basic_istream_char_sentry_destroy(this);
|
|
|
|
|
|
|
|
basic_ios_char_setstate(base, state);
|
|
|
|
return this;
|
2012-06-06 12:50:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ??5?$basic_istream@DU?$char_traits@D@std@@@std@@QAEAAV01@AA_N@Z */
|
|
|
|
/* ??5?$basic_istream@DU?$char_traits@D@std@@@std@@QEAAAEAV01@AEA_N@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_istream_char_read_bool, 8)
|
2012-06-21 10:27:21 +00:00
|
|
|
basic_istream_char* __thiscall basic_istream_char_read_bool(basic_istream_char *this, MSVCP_bool *v)
|
2012-06-06 12:50:59 +00:00
|
|
|
{
|
2012-06-21 10:27:21 +00:00
|
|
|
basic_ios_char *base = basic_istream_char_get_basic_ios(this);
|
|
|
|
int state = IOSTATE_goodbit;
|
|
|
|
|
|
|
|
TRACE("(%p %p)\n", this, v);
|
|
|
|
|
|
|
|
if(basic_istream_char_sentry_create(this, FALSE)) {
|
|
|
|
basic_streambuf_char *strbuf = basic_ios_char_rdbuf_get(base);
|
|
|
|
const num_get *numget = num_get_char_use_facet(strbuf->loc);
|
|
|
|
istreambuf_iterator_char first={0}, last={0};
|
|
|
|
|
|
|
|
first.strbuf = strbuf;
|
|
|
|
num_get_char_get_bool(numget, &last, first, last, &base->base, &state, v);
|
|
|
|
}
|
|
|
|
basic_istream_char_sentry_destroy(this);
|
|
|
|
|
|
|
|
basic_ios_char_setstate(base, state);
|
|
|
|
return this;
|
2012-06-06 12:50:59 +00:00
|
|
|
}
|
2012-06-12 16:13:50 +00:00
|
|
|
|
2012-06-12 16:14:09 +00:00
|
|
|
/* ??$getline@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@YAAAV?$basic_istream@DU?$char_traits@D@std@@@0@AAV10@AAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@D@Z */
|
|
|
|
/* ??$getline@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@YAAEAV?$basic_istream@DU?$char_traits@D@std@@@0@AEAV10@AEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@D@Z */
|
2012-06-14 13:37:36 +00:00
|
|
|
basic_istream_char* __cdecl basic_istream_char_getline_bstr_delim(
|
2012-06-12 16:14:09 +00:00
|
|
|
basic_istream_char *istream, basic_string_char *str, char delim)
|
|
|
|
{
|
|
|
|
IOSB_iostate state = IOSTATE_failbit;
|
2012-06-14 13:37:36 +00:00
|
|
|
int c = delim;
|
2012-06-12 16:14:09 +00:00
|
|
|
|
|
|
|
TRACE("(%p %p %c)\n", istream, str, delim);
|
|
|
|
|
|
|
|
if(basic_istream_char_sentry_create(istream, TRUE)) {
|
|
|
|
MSVCP_basic_string_char_clear(str);
|
|
|
|
|
|
|
|
for(c = basic_istream_char_get(istream); c!=delim && c!=EOF;
|
|
|
|
c = basic_istream_char_get(istream)) {
|
|
|
|
state = IOSTATE_goodbit;
|
|
|
|
MSVCP_basic_string_char_append_ch(str, c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
basic_istream_char_sentry_destroy(istream);
|
|
|
|
|
2012-06-14 13:37:36 +00:00
|
|
|
basic_ios_char_setstate(basic_istream_char_get_basic_ios(istream),
|
|
|
|
state | (c==EOF ? IOSTATE_eofbit : IOSTATE_goodbit));
|
2012-06-12 16:14:09 +00:00
|
|
|
return istream;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??$getline@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@YAAAV?$basic_istream@DU?$char_traits@D@std@@@0@AAV10@AAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@@Z */
|
|
|
|
/* ??$getline@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@YAAEAV?$basic_istream@DU?$char_traits@D@std@@@0@AEAV10@AEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@@Z */
|
2012-06-14 13:37:36 +00:00
|
|
|
basic_istream_char* __cdecl basic_istream_char_getline_bstr(
|
2012-06-12 16:14:09 +00:00
|
|
|
basic_istream_char *istream, basic_string_char *str)
|
|
|
|
{
|
2012-06-14 13:37:36 +00:00
|
|
|
return basic_istream_char_getline_bstr_delim(istream, str, '\n');
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??$?5DU?$char_traits@D@std@@V?$allocator@D@1@@std@@YAAAV?$basic_istream@DU?$char_traits@D@std@@@0@AAV10@AAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@@Z */
|
|
|
|
/* ??$?5DU?$char_traits@D@std@@V?$allocator@D@1@@std@@YAAEAV?$basic_istream@DU?$char_traits@D@std@@@0@AEAV10@AEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@@Z */
|
|
|
|
basic_istream_char* __cdecl basic_istream_char_get_bstr(
|
|
|
|
basic_istream_char *istream, basic_string_char *str)
|
|
|
|
{
|
|
|
|
IOSB_iostate state = IOSTATE_failbit;
|
|
|
|
int c = '\n';
|
|
|
|
|
|
|
|
TRACE("(%p %p)\n", istream, str);
|
|
|
|
|
|
|
|
if(basic_istream_char_sentry_create(istream, FALSE)) {
|
|
|
|
basic_ios_char *base = basic_istream_char_get_basic_ios(istream);
|
|
|
|
const ctype_char *ctype = ctype_char_use_facet(base->strbuf->loc);
|
|
|
|
|
|
|
|
MSVCP_basic_string_char_clear(str);
|
|
|
|
|
|
|
|
for(c = basic_streambuf_char_sgetc(basic_ios_char_rdbuf_get(base));
|
|
|
|
c!=EOF && !ctype_char_is_ch(ctype, _SPACE|_BLANK, c);
|
|
|
|
c = basic_streambuf_char_snextc(basic_ios_char_rdbuf_get(base))) {
|
|
|
|
state = IOSTATE_goodbit;
|
|
|
|
MSVCP_basic_string_char_append_ch(str, c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
basic_istream_char_sentry_destroy(istream);
|
|
|
|
|
|
|
|
basic_ios_char_setstate(basic_istream_char_get_basic_ios(istream),
|
|
|
|
state | (c==EOF ? IOSTATE_eofbit : IOSTATE_goodbit));
|
|
|
|
return istream;
|
2012-06-12 16:14:09 +00:00
|
|
|
}
|
|
|
|
|
2012-06-13 13:22:13 +00:00
|
|
|
/* ??0?$basic_iostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@@Z */
|
|
|
|
/* ??0?$basic_iostream@DU?$char_traits@D@std@@@std@@QEAA@PEAV?$basic_streambuf@DU?$char_traits@D@std@@@1@@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_iostream_char_ctor, 12)
|
|
|
|
basic_iostream_char* __thiscall basic_iostream_char_ctor(basic_iostream_char *this, basic_streambuf_char *strbuf, MSVCP_bool virt_init)
|
|
|
|
{
|
|
|
|
basic_ios_char *basic_ios;
|
|
|
|
|
|
|
|
TRACE("(%p %p %d)\n", this, strbuf, virt_init);
|
|
|
|
|
|
|
|
if(virt_init) {
|
|
|
|
this->base1.vbtable = basic_iostream_char_vbtable1;
|
|
|
|
this->base2.vbtable = basic_iostream_char_vbtable2;
|
|
|
|
basic_ios = basic_istream_char_get_basic_ios(&this->base1);
|
|
|
|
basic_ios_char_ctor(basic_ios);
|
|
|
|
}else {
|
|
|
|
basic_ios = basic_istream_char_get_basic_ios(&this->base1);
|
|
|
|
}
|
|
|
|
|
|
|
|
basic_ios->base.vtable = &MSVCP_basic_iostream_char_vtable;
|
|
|
|
|
|
|
|
basic_istream_char_ctor(&this->base1, strbuf, FALSE, FALSE);
|
|
|
|
basic_ostream_char_ctor_uninitialized(&this->base2, 0, FALSE, FALSE);
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??1?$basic_iostream@DU?$char_traits@D@std@@@std@@UAE@XZ */
|
|
|
|
/* ??1?$basic_iostream@DU?$char_traits@D@std@@@std@@UEAA@XZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_iostream_char_dtor, 4)
|
|
|
|
void __thiscall basic_iostream_char_dtor(basic_iostream_char *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
basic_ostream_char_dtor(&this->base2);
|
|
|
|
basic_istream_char_dtor(&this->base1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??_D?$basic_iostream@DU?$char_traits@D@std@@@std@@QAEXXZ */
|
|
|
|
/* ??_D?$basic_iostream@DU?$char_traits@D@std@@@std@@QEAAXXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_iostream_char_vbase_dtor, 4)
|
|
|
|
void __thiscall basic_iostream_char_vbase_dtor(basic_iostream_char *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
basic_iostream_char_dtor(this);
|
|
|
|
basic_ios_char_dtor(basic_istream_char_get_basic_ios(&this->base1));
|
|
|
|
}
|
|
|
|
|
|
|
|
DEFINE_THISCALL_WRAPPER(MSVCP_basic_iostream_char_vector_dtor, 8)
|
|
|
|
basic_iostream_char* __thiscall MSVCP_basic_iostream_char_vector_dtor(basic_ios_char *base, unsigned int flags)
|
|
|
|
{
|
|
|
|
basic_iostream_char *this = (basic_iostream_char *)((char*)base - basic_iostream_char_vbtable1[1] + basic_iostream_char_vbtable1[0]);
|
|
|
|
|
|
|
|
TRACE("(%p %x)\n", this, flags);
|
|
|
|
|
|
|
|
if(flags & 2) {
|
|
|
|
/* we have an array, with the number of elements stored before the first object */
|
|
|
|
int i, *ptr = (int *)this-1;
|
|
|
|
|
|
|
|
for(i=*ptr-1; i>=0; i--)
|
|
|
|
basic_iostream_char_vbase_dtor(this+i);
|
|
|
|
MSVCRT_operator_delete(ptr);
|
|
|
|
} else {
|
|
|
|
basic_iostream_char_vbase_dtor(this);
|
|
|
|
if(flags & 1)
|
|
|
|
MSVCRT_operator_delete(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2012-06-13 13:22:29 +00:00
|
|
|
/* ??0?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAE@XZ */
|
|
|
|
/* ??0?$basic_ofstream@DU?$char_traits@D@std@@@std@@QEAA@XZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ofstream_char_ctor, 8)
|
|
|
|
basic_ofstream_char* __thiscall basic_ofstream_char_ctor(basic_ofstream_char *this, MSVCP_bool virt_init)
|
|
|
|
{
|
|
|
|
basic_ios_char *basic_ios;
|
|
|
|
|
|
|
|
TRACE("(%p %d)\n", this, virt_init);
|
|
|
|
|
|
|
|
if(virt_init) {
|
|
|
|
this->base.vbtable = basic_ofstream_char_vbtable;
|
|
|
|
basic_ios = basic_ostream_char_get_basic_ios(&this->base);
|
|
|
|
basic_ios_char_ctor(basic_ios);
|
|
|
|
}else {
|
|
|
|
basic_ios = basic_ostream_char_get_basic_ios(&this->base);
|
|
|
|
}
|
|
|
|
|
|
|
|
basic_filebuf_char_ctor(&this->filebuf);
|
|
|
|
basic_ostream_char_ctor(&this->base, &this->filebuf.base, FALSE, FALSE);
|
|
|
|
basic_ios->base.vtable = &MSVCP_basic_ofstream_char_vtable;
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??0?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAE@PAU_iobuf@@@Z */
|
|
|
|
/* ??0?$basic_ofstream@DU?$char_traits@D@std@@@std@@QEAA@PEAU_iobuf@@@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ofstream_char_ctor_file, 12)
|
|
|
|
basic_ofstream_char* __thiscall basic_ofstream_char_ctor_file(
|
|
|
|
basic_ofstream_char *this, FILE *file, MSVCP_bool virt_init)
|
|
|
|
{
|
|
|
|
basic_ios_char *basic_ios;
|
|
|
|
|
|
|
|
TRACE("(%p %p %d)\n", this, file, virt_init);
|
|
|
|
|
|
|
|
if(virt_init) {
|
|
|
|
this->base.vbtable = basic_ofstream_char_vbtable;
|
|
|
|
basic_ios = basic_ostream_char_get_basic_ios(&this->base);
|
|
|
|
basic_ios_char_ctor(basic_ios);
|
|
|
|
}else {
|
|
|
|
basic_ios = basic_ostream_char_get_basic_ios(&this->base);
|
|
|
|
}
|
|
|
|
|
|
|
|
basic_filebuf_char_ctor_file(&this->filebuf, file);
|
|
|
|
basic_ostream_char_ctor(&this->base, &this->filebuf.base, FALSE, FALSE);
|
|
|
|
basic_ios->base.vtable = &MSVCP_basic_ofstream_char_vtable;
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??0?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAE@PBDHH@Z */
|
|
|
|
/* ??0?$basic_ofstream@DU?$char_traits@D@std@@@std@@QEAA@PEBDHH@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ofstream_char_ctor_name, 20)
|
|
|
|
basic_ofstream_char* __thiscall basic_ofstream_char_ctor_name(basic_ofstream_char *this,
|
|
|
|
const char *name, int mode, int prot, MSVCP_bool virt_init)
|
|
|
|
{
|
|
|
|
TRACE("(%p %s %d %d %d)\n", this, name, mode, prot, virt_init);
|
|
|
|
|
|
|
|
basic_ofstream_char_ctor(this, virt_init);
|
|
|
|
|
|
|
|
if(!basic_filebuf_char_open(&this->filebuf, name, mode|OPENMODE_out, prot)) {
|
|
|
|
basic_ios_char *basic_ios = basic_ostream_char_get_basic_ios(&this->base);
|
|
|
|
basic_ios_char_setstate(basic_ios, IOSTATE_failbit);
|
|
|
|
}
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??0?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAE@PBGHH@Z */
|
|
|
|
/* ??0?$basic_ofstream@DU?$char_traits@D@std@@@std@@QEAA@PEBGHH@Z */
|
|
|
|
/* ??0?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAE@PB_WHH@Z */
|
|
|
|
/* ??0?$basic_ofstream@DU?$char_traits@D@std@@@std@@QEAA@PEB_WHH@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ofstream_char_ctor_name_wchar, 20)
|
|
|
|
basic_ofstream_char* __thiscall basic_ofstream_char_ctor_name_wchar(basic_ofstream_char *this,
|
|
|
|
const wchar_t *name, int mode, int prot, MSVCP_bool virt_init)
|
|
|
|
{
|
|
|
|
TRACE("(%p %s %d %d %d)\n", this, debugstr_w(name), mode, prot, virt_init);
|
|
|
|
|
|
|
|
basic_ofstream_char_ctor(this, virt_init);
|
|
|
|
|
|
|
|
if(!basic_filebuf_char_open_wchar(&this->filebuf, name, mode|OPENMODE_out, prot)) {
|
|
|
|
basic_ios_char *basic_ios = basic_ostream_char_get_basic_ios(&this->base);
|
|
|
|
basic_ios_char_setstate(basic_ios, IOSTATE_failbit);
|
|
|
|
}
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??1?$basic_ofstream@DU?$char_traits@D@std@@@std@@UAE@XZ */
|
|
|
|
/* ??1?$basic_ofstream@DU?$char_traits@D@std@@@std@@UEAA@XZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ofstream_char_dtor, 4)
|
|
|
|
void __thiscall basic_ofstream_char_dtor(basic_ofstream_char *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
|
|
|
|
basic_ostream_char_dtor(&this->base);
|
|
|
|
basic_filebuf_char_dtor(&this->filebuf);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??_D?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAEXXZ */
|
|
|
|
/* ??_D?$basic_ofstream@DU?$char_traits@D@std@@@std@@QEAAXXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ofstream_char_vbase_dtor, 4)
|
|
|
|
void __thiscall basic_ofstream_char_vbase_dtor(basic_ofstream_char *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
|
|
|
|
basic_ofstream_char_dtor(this);
|
|
|
|
basic_ios_char_dtor(basic_ostream_char_get_basic_ios(&this->base));
|
|
|
|
}
|
|
|
|
|
|
|
|
DEFINE_THISCALL_WRAPPER(MSVCP_basic_ofstream_char_vector_dtor, 8)
|
|
|
|
basic_ofstream_char* __thiscall MSVCP_basic_ofstream_char_vector_dtor(basic_ios_char *base, unsigned int flags)
|
|
|
|
{
|
|
|
|
basic_ofstream_char *this = (basic_ofstream_char *)((char*)base - basic_ofstream_char_vbtable[1] + basic_ofstream_char_vbtable[0]);
|
|
|
|
|
|
|
|
TRACE("(%p %x)\n", this, flags);
|
|
|
|
|
|
|
|
if(flags & 2) {
|
|
|
|
/* we have an array, with the number of elements stored before the first object */
|
|
|
|
int i, *ptr = (int *)this-1;
|
|
|
|
|
|
|
|
for(i=*ptr-1; i>=0; i--)
|
|
|
|
basic_ofstream_char_vbase_dtor(this+i);
|
|
|
|
MSVCRT_operator_delete(ptr);
|
|
|
|
} else {
|
|
|
|
basic_ofstream_char_vbase_dtor(this);
|
|
|
|
if(flags & 1)
|
|
|
|
MSVCRT_operator_delete(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?close@?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAEXXZ */
|
|
|
|
/* ?close@?$basic_ofstream@DU?$char_traits@D@std@@@std@@QEAAXXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ofstream_char_close, 4)
|
|
|
|
void __thiscall basic_ofstream_char_close(basic_ofstream_char *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
|
|
|
|
if(!basic_filebuf_char_close(&this->filebuf)) {
|
|
|
|
basic_ios_char *basic_ios = basic_ostream_char_get_basic_ios(&this->base);
|
|
|
|
basic_ios_char_setstate(basic_ios, IOSTATE_failbit);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?is_open@?$basic_ofstream@DU?$char_traits@D@std@@@std@@QBE_NXZ */
|
|
|
|
/* ?is_open@?$basic_ofstream@DU?$char_traits@D@std@@@std@@QEBA_NXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ofstream_char_is_open, 4)
|
|
|
|
MSVCP_bool __thiscall basic_ofstream_char_is_open(const basic_ofstream_char *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return basic_filebuf_char_is_open(&this->filebuf);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?open@?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAEXPBDHH@Z */
|
|
|
|
/* ?open@?$basic_ofstream@DU?$char_traits@D@std@@@std@@QEAAXPEBDHH@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ofstream_char_open, 16)
|
|
|
|
void __thiscall basic_ofstream_char_open(basic_ofstream_char *this,
|
|
|
|
const char *name, int mode, int prot)
|
|
|
|
{
|
|
|
|
TRACE("(%p %s %d %d)\n", this, name, mode, prot);
|
|
|
|
|
|
|
|
if(!basic_filebuf_char_open(&this->filebuf, name, mode|OPENMODE_out, prot)) {
|
|
|
|
basic_ios_char *basic_ios = basic_ostream_char_get_basic_ios(&this->base);
|
|
|
|
basic_ios_char_setstate(basic_ios, IOSTATE_failbit);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?open@?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAEXPBDI@Z */
|
|
|
|
/* ?open@?$basic_ofstream@DU?$char_traits@D@std@@@std@@QEAAXPEBDI@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ofstream_char_open_old, 12)
|
|
|
|
void __thiscall basic_ofstream_char_open_old(basic_ofstream_char *this,
|
|
|
|
const char *name, unsigned int mode)
|
|
|
|
{
|
|
|
|
basic_ofstream_char_open(this, name, mode, _SH_DENYNO);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?open@?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAEXPBGHH@Z */
|
|
|
|
/* ?open@?$basic_ofstream@DU?$char_traits@D@std@@@std@@QEAAXPEBGHH@Z */
|
|
|
|
/* ?open@?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAEXPB_WHH@Z */
|
|
|
|
/* ?open@?$basic_ofstream@DU?$char_traits@D@std@@@std@@QEAAXPEB_WHH@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ofstream_char_open_wchar, 16)
|
|
|
|
void __thiscall basic_ofstream_char_open_wchar(basic_ofstream_char *this,
|
|
|
|
const wchar_t *name, int mode, int prot)
|
|
|
|
{
|
|
|
|
TRACE("(%p %s %d %d)\n", this, debugstr_w(name), mode, prot);
|
|
|
|
|
|
|
|
if(!basic_filebuf_char_open_wchar(&this->filebuf, name, mode|OPENMODE_out, prot)) {
|
|
|
|
basic_ios_char *basic_ios = basic_ostream_char_get_basic_ios(&this->base);
|
|
|
|
basic_ios_char_setstate(basic_ios, IOSTATE_failbit);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?open@?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAEXPBGI@Z */
|
|
|
|
/* ?open@?$basic_ofstream@DU?$char_traits@D@std@@@std@@QEAAXPEBGI@Z */
|
|
|
|
/* ?open@?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAEXPB_WI@Z */
|
|
|
|
/* ?open@?$basic_ofstream@DU?$char_traits@D@std@@@std@@QEAAXPEB_WI@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ofstream_char_open_wchar_old, 12)
|
|
|
|
void __thiscall basic_ofstream_char_open_wchar_old(basic_ofstream_char *this,
|
|
|
|
const wchar_t *name, unsigned int mode)
|
|
|
|
{
|
|
|
|
basic_ofstream_char_open_wchar(this, name, mode, _SH_DENYNO);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?rdbuf@?$basic_ofstream@DU?$char_traits@D@std@@@std@@QBEPAV?$basic_filebuf@DU?$char_traits@D@std@@@2@XZ */
|
|
|
|
/* ?rdbuf@?$basic_ofstream@DU?$char_traits@D@std@@@std@@QEBAPEAV?$basic_filebuf@DU?$char_traits@D@std@@@2@XZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ofstream_char_rdbuf, 4)
|
|
|
|
basic_filebuf_char* __thiscall basic_ofstream_char_rdbuf(const basic_ofstream_char *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return (basic_filebuf_char*)&this->filebuf;
|
|
|
|
}
|
|
|
|
|
2012-06-12 16:13:50 +00:00
|
|
|
/* ??0?$basic_ifstream@DU?$char_traits@D@std@@@std@@QAE@XZ */
|
|
|
|
/* ??0?$basic_ifstream@DU?$char_traits@D@std@@@std@@QEAA@XZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ifstream_char_ctor, 8)
|
|
|
|
basic_ifstream_char* __thiscall basic_ifstream_char_ctor(basic_ifstream_char *this, MSVCP_bool virt_init)
|
|
|
|
{
|
|
|
|
basic_ios_char *basic_ios;
|
|
|
|
|
|
|
|
TRACE("(%p %d)\n", this, virt_init);
|
|
|
|
|
|
|
|
if(virt_init) {
|
|
|
|
this->base.vbtable = basic_ifstream_char_vbtable;
|
|
|
|
basic_ios = basic_istream_char_get_basic_ios(&this->base);
|
|
|
|
basic_ios_char_ctor(basic_ios);
|
|
|
|
}else {
|
|
|
|
basic_ios = basic_istream_char_get_basic_ios(&this->base);
|
|
|
|
}
|
|
|
|
|
|
|
|
basic_filebuf_char_ctor(&this->filebuf);
|
|
|
|
basic_istream_char_ctor(&this->base, &this->filebuf.base, FALSE, FALSE);
|
|
|
|
basic_ios->base.vtable = &MSVCP_basic_ifstream_char_vtable;
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??0?$basic_ifstream@DU?$char_traits@D@std@@@std@@QAE@PAU_iobuf@@@Z */
|
|
|
|
/* ??0?$basic_ifstream@DU?$char_traits@D@std@@@std@@QEAA@PEAU_iobuf@@@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ifstream_char_ctor_file, 12)
|
|
|
|
basic_ifstream_char* __thiscall basic_ifstream_char_ctor_file(
|
|
|
|
basic_ifstream_char *this, FILE *file, MSVCP_bool virt_init)
|
|
|
|
{
|
|
|
|
basic_ios_char *basic_ios;
|
|
|
|
|
|
|
|
TRACE("(%p %p %d)\n", this, file, virt_init);
|
|
|
|
|
|
|
|
if(virt_init) {
|
|
|
|
this->base.vbtable = basic_ifstream_char_vbtable;
|
|
|
|
basic_ios = basic_istream_char_get_basic_ios(&this->base);
|
|
|
|
basic_ios_char_ctor(basic_ios);
|
|
|
|
}else {
|
|
|
|
basic_ios = basic_istream_char_get_basic_ios(&this->base);
|
|
|
|
}
|
|
|
|
|
|
|
|
basic_filebuf_char_ctor_file(&this->filebuf, file);
|
|
|
|
basic_istream_char_ctor(&this->base, &this->filebuf.base, FALSE, FALSE);
|
|
|
|
basic_ios->base.vtable = &MSVCP_basic_ifstream_char_vtable;
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??0?$basic_ifstream@DU?$char_traits@D@std@@@std@@QAE@PBDHH@Z */
|
|
|
|
/* ??0?$basic_ifstream@DU?$char_traits@D@std@@@std@@QEAA@PEBDHH@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ifstream_char_ctor_name, 20)
|
|
|
|
basic_ifstream_char* __thiscall basic_ifstream_char_ctor_name(basic_ifstream_char *this,
|
|
|
|
const char *name, int mode, int prot, MSVCP_bool virt_init)
|
|
|
|
{
|
|
|
|
TRACE("(%p %s %d %d %d)\n", this, name, mode, prot, virt_init);
|
|
|
|
|
|
|
|
basic_ifstream_char_ctor(this, virt_init);
|
|
|
|
|
2012-06-13 13:23:35 +00:00
|
|
|
if(!basic_filebuf_char_open(&this->filebuf, name, mode|OPENMODE_in, prot)) {
|
2012-06-12 16:13:50 +00:00
|
|
|
basic_ios_char *basic_ios = basic_istream_char_get_basic_ios(&this->base);
|
|
|
|
basic_ios_char_setstate(basic_ios, IOSTATE_failbit);
|
|
|
|
}
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??0?$basic_ifstream@DU?$char_traits@D@std@@@std@@QAE@PBGHH@Z */
|
|
|
|
/* ??0?$basic_ifstream@DU?$char_traits@D@std@@@std@@QEAA@PEBGHH@Z */
|
2012-06-13 13:23:35 +00:00
|
|
|
/* ??0?$basic_ifstream@DU?$char_traits@D@std@@@std@@QAE@PB_WHH@Z */
|
|
|
|
/* ??0?$basic_ifstream@DU?$char_traits@D@std@@@std@@QEAA@PEB_WHH@Z */
|
2012-06-12 16:13:50 +00:00
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ifstream_char_ctor_name_wchar, 20)
|
|
|
|
basic_ifstream_char* __thiscall basic_ifstream_char_ctor_name_wchar(basic_ifstream_char *this,
|
|
|
|
const wchar_t *name, int mode, int prot, MSVCP_bool virt_init)
|
|
|
|
{
|
|
|
|
TRACE("(%p %s %d %d %d)\n", this, debugstr_w(name), mode, prot, virt_init);
|
|
|
|
|
|
|
|
basic_ifstream_char_ctor(this, virt_init);
|
|
|
|
|
2012-06-13 13:23:35 +00:00
|
|
|
if(!basic_filebuf_char_open_wchar(&this->filebuf, name, mode|OPENMODE_in, prot)) {
|
2012-06-12 16:13:50 +00:00
|
|
|
basic_ios_char *basic_ios = basic_istream_char_get_basic_ios(&this->base);
|
|
|
|
basic_ios_char_setstate(basic_ios, IOSTATE_failbit);
|
|
|
|
}
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??1?$basic_ifstream@DU?$char_traits@D@std@@@std@@UAE@XZ */
|
|
|
|
/* ??1?$basic_ifstream@DU?$char_traits@D@std@@@std@@UEAA@XZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ifstream_char_dtor, 4)
|
|
|
|
void __thiscall basic_ifstream_char_dtor(basic_ifstream_char *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
|
|
|
|
basic_istream_char_dtor(&this->base);
|
|
|
|
basic_filebuf_char_dtor(&this->filebuf);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??_D?$basic_ifstream@DU?$char_traits@D@std@@@std@@QAEXXZ */
|
|
|
|
/* ??_D?$basic_ifstream@DU?$char_traits@D@std@@@std@@QEAAXXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ifstream_char_vbase_dtor, 4)
|
|
|
|
void __thiscall basic_ifstream_char_vbase_dtor(basic_ifstream_char *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
|
|
|
|
basic_ifstream_char_dtor(this);
|
|
|
|
basic_ios_char_dtor(basic_istream_char_get_basic_ios(&this->base));
|
|
|
|
}
|
|
|
|
|
|
|
|
DEFINE_THISCALL_WRAPPER(MSVCP_basic_ifstream_char_vector_dtor, 8)
|
|
|
|
basic_ifstream_char* __thiscall MSVCP_basic_ifstream_char_vector_dtor(basic_ios_char *base, unsigned int flags)
|
|
|
|
{
|
|
|
|
basic_ifstream_char *this = (basic_ifstream_char *)((char*)base - basic_ifstream_char_vbtable[1] + basic_ifstream_char_vbtable[0]);
|
|
|
|
|
|
|
|
TRACE("(%p %x)\n", this, flags);
|
|
|
|
|
|
|
|
if(flags & 2) {
|
|
|
|
/* we have an array, with the number of elements stored before the first object */
|
|
|
|
int i, *ptr = (int *)this-1;
|
|
|
|
|
|
|
|
for(i=*ptr-1; i>=0; i--)
|
|
|
|
basic_ifstream_char_vbase_dtor(this+i);
|
|
|
|
MSVCRT_operator_delete(ptr);
|
|
|
|
} else {
|
|
|
|
basic_ifstream_char_vbase_dtor(this);
|
|
|
|
if(flags & 1)
|
|
|
|
MSVCRT_operator_delete(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?close@?$basic_ifstream@DU?$char_traits@D@std@@@std@@QAEXXZ */
|
|
|
|
/* ?close@?$basic_ifstream@DU?$char_traits@D@std@@@std@@QEAAXXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ifstream_char_close, 4)
|
|
|
|
void __thiscall basic_ifstream_char_close(basic_ifstream_char *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
|
|
|
|
if(!basic_filebuf_char_close(&this->filebuf)) {
|
|
|
|
basic_ios_char *basic_ios = basic_istream_char_get_basic_ios(&this->base);
|
|
|
|
basic_ios_char_setstate(basic_ios, IOSTATE_failbit);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?is_open@?$basic_ifstream@DU?$char_traits@D@std@@@std@@QBE_NXZ */
|
|
|
|
/* ?is_open@?$basic_ifstream@DU?$char_traits@D@std@@@std@@QEBA_NXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ifstream_char_is_open, 4)
|
|
|
|
MSVCP_bool __thiscall basic_ifstream_char_is_open(const basic_ifstream_char *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return basic_filebuf_char_is_open(&this->filebuf);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?open@?$basic_ifstream@DU?$char_traits@D@std@@@std@@QAEXPBDHH@Z */
|
|
|
|
/* ?open@?$basic_ifstream@DU?$char_traits@D@std@@@std@@QEAAXPEBDHH@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ifstream_char_open, 16)
|
|
|
|
void __thiscall basic_ifstream_char_open(basic_ifstream_char *this,
|
|
|
|
const char *name, int mode, int prot)
|
|
|
|
{
|
|
|
|
TRACE("(%p %s %d %d)\n", this, name, mode, prot);
|
|
|
|
|
2012-06-13 13:23:35 +00:00
|
|
|
if(!basic_filebuf_char_open(&this->filebuf, name, mode|OPENMODE_in, prot)) {
|
2012-06-12 16:13:50 +00:00
|
|
|
basic_ios_char *basic_ios = basic_istream_char_get_basic_ios(&this->base);
|
|
|
|
basic_ios_char_setstate(basic_ios, IOSTATE_failbit);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?open@?$basic_ifstream@DU?$char_traits@D@std@@@std@@QAEXPBDI@Z */
|
|
|
|
/* ?open@?$basic_ifstream@DU?$char_traits@D@std@@@std@@QEAAXPEBDI@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ifstream_char_open_old, 12)
|
|
|
|
void __thiscall basic_ifstream_char_open_old(basic_ifstream_char *this,
|
2012-06-13 13:23:35 +00:00
|
|
|
const char *name, unsigned int mode)
|
2012-06-12 16:13:50 +00:00
|
|
|
{
|
2012-06-13 13:23:35 +00:00
|
|
|
basic_ifstream_char_open(this, name, mode, _SH_DENYNO);
|
2012-06-12 16:13:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ?open@?$basic_ifstream@DU?$char_traits@D@std@@@std@@QAEXPBGHH@Z */
|
|
|
|
/* ?open@?$basic_ifstream@DU?$char_traits@D@std@@@std@@QEAAXPEBGHH@Z */
|
2012-06-13 13:23:35 +00:00
|
|
|
/* ?open@?$basic_ifstream@DU?$char_traits@D@std@@@std@@QAEXPB_WHH@Z */
|
|
|
|
/* ?open@?$basic_ifstream@DU?$char_traits@D@std@@@std@@QEAAXPEB_WHH@Z */
|
2012-06-12 16:13:50 +00:00
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ifstream_char_open_wchar, 16)
|
|
|
|
void __thiscall basic_ifstream_char_open_wchar(basic_ifstream_char *this,
|
|
|
|
const wchar_t *name, int mode, int prot)
|
|
|
|
{
|
|
|
|
TRACE("(%p %s %d %d)\n", this, debugstr_w(name), mode, prot);
|
|
|
|
|
2012-06-13 13:23:35 +00:00
|
|
|
if(!basic_filebuf_char_open_wchar(&this->filebuf, name, mode|OPENMODE_in, prot)) {
|
2012-06-12 16:13:50 +00:00
|
|
|
basic_ios_char *basic_ios = basic_istream_char_get_basic_ios(&this->base);
|
|
|
|
basic_ios_char_setstate(basic_ios, IOSTATE_failbit);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?open@?$basic_ifstream@DU?$char_traits@D@std@@@std@@QAEXPBGI@Z */
|
|
|
|
/* ?open@?$basic_ifstream@DU?$char_traits@D@std@@@std@@QEAAXPEBGI@Z */
|
2012-06-13 13:23:35 +00:00
|
|
|
/* ?open@?$basic_ifstream@DU?$char_traits@D@std@@@std@@QAEXPB_WI@Z */
|
|
|
|
/* ?open@?$basic_ifstream@DU?$char_traits@D@std@@@std@@QEAAXPEB_WI@Z */
|
2012-06-12 16:13:50 +00:00
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ifstream_char_open_wchar_old, 12)
|
|
|
|
void __thiscall basic_ifstream_char_open_wchar_old(basic_ifstream_char *this,
|
|
|
|
const wchar_t *name, unsigned int mode)
|
|
|
|
{
|
|
|
|
basic_ifstream_char_open_wchar(this, name, mode, _SH_DENYNO);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?rdbuf@?$basic_ifstream@DU?$char_traits@D@std@@@std@@QBEPAV?$basic_filebuf@DU?$char_traits@D@std@@@2@XZ */
|
|
|
|
/* ?rdbuf@?$basic_ifstream@DU?$char_traits@D@std@@@std@@QEBAPEAV?$basic_filebuf@DU?$char_traits@D@std@@@2@XZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_ifstream_char_rdbuf, 4)
|
|
|
|
basic_filebuf_char* __thiscall basic_ifstream_char_rdbuf(const basic_ifstream_char *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return (basic_filebuf_char*)&this->filebuf;
|
|
|
|
}
|
2012-06-14 13:35:45 +00:00
|
|
|
|
|
|
|
/* ??0?$basic_fstream@DU?$char_traits@D@std@@@std@@QAE@XZ */
|
|
|
|
/* ??0?$basic_fstream@DU?$char_traits@D@std@@@std@@QEAA@XZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_fstream_char_ctor, 8)
|
|
|
|
basic_fstream_char* __thiscall basic_fstream_char_ctor(basic_fstream_char *this, MSVCP_bool virt_init)
|
|
|
|
{
|
|
|
|
basic_ios_char *basic_ios;
|
|
|
|
|
|
|
|
TRACE("(%p %d)\n", this, virt_init);
|
|
|
|
|
|
|
|
if(virt_init) {
|
|
|
|
this->base.base1.vbtable = basic_fstream_char_vbtable1;
|
|
|
|
this->base.base2.vbtable = basic_fstream_char_vbtable2;
|
|
|
|
basic_ios = basic_istream_char_get_basic_ios(&this->base.base1);
|
|
|
|
basic_ios_char_ctor(basic_ios);
|
|
|
|
}else {
|
|
|
|
basic_ios = basic_istream_char_get_basic_ios(&this->base.base1);
|
|
|
|
}
|
|
|
|
|
|
|
|
basic_filebuf_char_ctor(&this->filebuf);
|
|
|
|
basic_iostream_char_ctor(&this->base, &this->filebuf.base, FALSE);
|
|
|
|
basic_ios->base.vtable = &MSVCP_basic_fstream_char_vtable;
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??0?$basic_fstream@DU?$char_traits@D@std@@@std@@QAE@PAU_iobuf@@@Z */
|
|
|
|
/* ??0?$basic_fstream@DU?$char_traits@D@std@@@std@@QEAA@PEAU_iobuf@@@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_fstream_char_ctor_file, 12)
|
|
|
|
basic_fstream_char* __thiscall basic_fstream_char_ctor_file(basic_fstream_char *this,
|
|
|
|
FILE *file, MSVCP_bool virt_init)
|
|
|
|
{
|
|
|
|
basic_ios_char *basic_ios;
|
|
|
|
|
|
|
|
TRACE("(%p %p %d)\n", this, file, virt_init);
|
|
|
|
|
|
|
|
if(virt_init) {
|
|
|
|
this->base.base1.vbtable = basic_fstream_char_vbtable1;
|
|
|
|
this->base.base2.vbtable = basic_fstream_char_vbtable2;
|
|
|
|
basic_ios = basic_istream_char_get_basic_ios(&this->base.base1);
|
|
|
|
basic_ios_char_ctor(basic_ios);
|
|
|
|
}else {
|
|
|
|
basic_ios = basic_istream_char_get_basic_ios(&this->base.base1);
|
|
|
|
}
|
|
|
|
|
|
|
|
basic_filebuf_char_ctor_file(&this->filebuf, file);
|
|
|
|
basic_iostream_char_ctor(&this->base, &this->filebuf.base, FALSE);
|
|
|
|
basic_ios->base.vtable = &MSVCP_basic_fstream_char_vtable;
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??0?$basic_fstream@DU?$char_traits@D@std@@@std@@QAE@PBDHH@Z */
|
|
|
|
/* ??0?$basic_fstream@DU?$char_traits@D@std@@@std@@QEAA@PEBDHH@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_fstream_char_ctor_name, 20)
|
|
|
|
basic_fstream_char* __thiscall basic_fstream_char_ctor_name(basic_fstream_char *this,
|
|
|
|
const char *name, int mode, int prot, MSVCP_bool virt_init)
|
|
|
|
{
|
|
|
|
TRACE("(%p %s %d %d %d)\n", this, name, mode, prot, virt_init);
|
|
|
|
|
|
|
|
basic_fstream_char_ctor(this, virt_init);
|
|
|
|
|
|
|
|
if(!basic_filebuf_char_open(&this->filebuf, name, mode, prot)) {
|
|
|
|
basic_ios_char *basic_ios = basic_istream_char_get_basic_ios(&this->base.base1);
|
|
|
|
basic_ios_char_setstate(basic_ios, IOSTATE_failbit);
|
|
|
|
}
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??0?$basic_fstream@DU?$char_traits@D@std@@@std@@QAE@PBGHH@Z */
|
|
|
|
/* ??0?$basic_fstream@DU?$char_traits@D@std@@@std@@QEAA@PEBGHH@Z */
|
|
|
|
/* ??0?$basic_fstream@DU?$char_traits@D@std@@@std@@QAE@PB_WHH@Z */
|
|
|
|
/* ??0?$basic_fstream@DU?$char_traits@D@std@@@std@@QEAA@PEB_WHH@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_fstream_char_ctor_name_wchar, 20)
|
|
|
|
basic_fstream_char* __thiscall basic_fstream_char_ctor_name_wchar(basic_fstream_char *this,
|
|
|
|
const wchar_t *name, int mode, int prot, MSVCP_bool virt_init)
|
|
|
|
{
|
|
|
|
TRACE("(%p %s %d %d %d)\n", this, debugstr_w(name), mode, prot, virt_init);
|
|
|
|
|
|
|
|
basic_fstream_char_ctor(this, virt_init);
|
|
|
|
|
|
|
|
if(!basic_filebuf_char_open_wchar(&this->filebuf, name, mode, prot)) {
|
|
|
|
basic_ios_char *basic_ios = basic_istream_char_get_basic_ios(&this->base.base1);
|
|
|
|
basic_ios_char_setstate(basic_ios, IOSTATE_failbit);
|
|
|
|
}
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??1?$basic_fstream@DU?$char_traits@D@std@@@std@@UAE@XZ */
|
|
|
|
/* ??1?$basic_fstream@DU?$char_traits@D@std@@@std@@UEAA@XZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_fstream_char_dtor, 4)
|
|
|
|
void __thiscall basic_fstream_char_dtor(basic_fstream_char *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
|
|
|
|
basic_iostream_char_dtor(&this->base);
|
|
|
|
basic_filebuf_char_dtor(&this->filebuf);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ??_D?$basic_fstream@DU?$char_traits@D@std@@@std@@QAEXXZ */
|
|
|
|
/* ??_D?$basic_fstream@DU?$char_traits@D@std@@@std@@QEAAXXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_fstream_char_vbase_dtor, 4)
|
|
|
|
void __thiscall basic_fstream_char_vbase_dtor(basic_fstream_char *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
|
|
|
|
basic_fstream_char_dtor(this);
|
|
|
|
basic_ios_char_dtor(basic_istream_char_get_basic_ios(&this->base.base1));
|
|
|
|
}
|
|
|
|
|
|
|
|
DEFINE_THISCALL_WRAPPER(MSVCP_basic_fstream_char_vector_dtor, 8)
|
|
|
|
basic_fstream_char* __thiscall MSVCP_basic_fstream_char_vector_dtor(basic_ios_char *base, unsigned int flags)
|
|
|
|
{
|
|
|
|
basic_fstream_char *this = (basic_fstream_char *)((char*)base - basic_fstream_char_vbtable1[1] + basic_fstream_char_vbtable1[0]);
|
|
|
|
|
|
|
|
TRACE("(%p %x)\n", this, flags);
|
|
|
|
|
|
|
|
if(flags & 2) {
|
|
|
|
/* we have an array, with the number of elements stored before the first object */
|
|
|
|
int i, *ptr = (int *)this-1;
|
|
|
|
|
|
|
|
for(i=*ptr-1; i>=0; i--)
|
|
|
|
basic_fstream_char_vbase_dtor(this+i);
|
|
|
|
MSVCRT_operator_delete(ptr);
|
|
|
|
} else {
|
|
|
|
basic_fstream_char_vbase_dtor(this);
|
|
|
|
if(flags & 1)
|
|
|
|
MSVCRT_operator_delete(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?close@?$basic_fstream@DU?$char_traits@D@std@@@std@@QAEXXZ */
|
|
|
|
/* ?close@?$basic_fstream@DU?$char_traits@D@std@@@std@@QEAAXXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_fstream_char_close, 4)
|
|
|
|
void __thiscall basic_fstream_char_close(basic_fstream_char *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
|
|
|
|
if(!basic_filebuf_char_close(&this->filebuf)) {
|
|
|
|
basic_ios_char *basic_ios = basic_istream_char_get_basic_ios(&this->base.base1);
|
|
|
|
basic_ios_char_setstate(basic_ios, IOSTATE_failbit);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?is_open@?$basic_fstream@DU?$char_traits@D@std@@@std@@QBE_NXZ */
|
|
|
|
/* ?is_open@?$basic_fstream@DU?$char_traits@D@std@@@std@@QEBA_NXZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_fstream_char_is_open, 4)
|
|
|
|
MSVCP_bool __thiscall basic_fstream_char_is_open(const basic_fstream_char *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return basic_filebuf_char_is_open(&this->filebuf);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?open@?$basic_fstream@DU?$char_traits@D@std@@@std@@QAEXPBDHH@Z */
|
|
|
|
/* ?open@?$basic_fstream@DU?$char_traits@D@std@@@std@@QEAAXPEBDHH@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_fstream_char_open, 16)
|
|
|
|
void __thiscall basic_fstream_char_open(basic_fstream_char *this,
|
|
|
|
const char *name, int mode, int prot)
|
|
|
|
{
|
|
|
|
TRACE("(%p %s %d %d)\n", this, name, mode, prot);
|
|
|
|
|
|
|
|
if(!basic_filebuf_char_open(&this->filebuf, name, mode, prot)) {
|
|
|
|
basic_ios_char *basic_ios = basic_istream_char_get_basic_ios(&this->base.base1);
|
|
|
|
basic_ios_char_setstate(basic_ios, IOSTATE_failbit);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?open@?$basic_fstream@DU?$char_traits@D@std@@@std@@QAEXPBDI@Z */
|
|
|
|
/* ?open@?$basic_fstream@DU?$char_traits@D@std@@@std@@QEAAXPEBDI@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_fstream_char_open_old, 12)
|
|
|
|
void __thiscall basic_fstream_char_open_old(basic_fstream_char *this,
|
|
|
|
const char *name, unsigned int mode)
|
|
|
|
{
|
|
|
|
basic_fstream_char_open(this, name, mode, _SH_DENYNO);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?open@?$basic_fstream@DU?$char_traits@D@std@@@std@@QAEXPBGHH@Z */
|
|
|
|
/* ?open@?$basic_fstream@DU?$char_traits@D@std@@@std@@QEAAXPEBGHH@Z */
|
|
|
|
/* ?open@?$basic_fstream@DU?$char_traits@D@std@@@std@@QAEXPB_WHH@Z */
|
|
|
|
/* ?open@?$basic_fstream@DU?$char_traits@D@std@@@std@@QEAAXPEB_WHH@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_fstream_char_open_wchar, 16)
|
|
|
|
void __thiscall basic_fstream_char_open_wchar(basic_fstream_char *this,
|
|
|
|
const wchar_t *name, int mode, int prot)
|
|
|
|
{
|
|
|
|
TRACE("(%p %s %d %d)\n", this, debugstr_w(name), mode, prot);
|
|
|
|
|
|
|
|
if(!basic_filebuf_char_open_wchar(&this->filebuf, name, mode, prot)) {
|
|
|
|
basic_ios_char *basic_ios = basic_istream_char_get_basic_ios(&this->base.base1);
|
|
|
|
basic_ios_char_setstate(basic_ios, IOSTATE_failbit);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?open@?$basic_fstream@DU?$char_traits@D@std@@@std@@QAEXPBGI@Z */
|
|
|
|
/* ?open@?$basic_fstream@DU?$char_traits@D@std@@@std@@QEAAXPEBGI@Z */
|
|
|
|
/* ?open@?$basic_fstream@DU?$char_traits@D@std@@@std@@QAEXPB_WI@Z */
|
|
|
|
/* ?open@?$basic_fstream@DU?$char_traits@D@std@@@std@@QEAAXPEB_WI@Z */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_fstream_char_open_wchar_old, 12)
|
|
|
|
void __thiscall basic_fstream_char_open_wchar_old(basic_fstream_char *this,
|
|
|
|
const wchar_t *name, unsigned int mode)
|
|
|
|
{
|
|
|
|
basic_fstream_char_open_wchar(this, name, mode, _SH_DENYNO);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?rdbuf@?$basic_fstream@DU?$char_traits@D@std@@@std@@QBEPAV?$basic_filebuf@DU?$char_traits@D@std@@@2@XZ */
|
|
|
|
/* ?rdbuf@?$basic_fstream@DU?$char_traits@D@std@@@std@@QEBAPEAV?$basic_filebuf@DU?$char_traits@D@std@@@2@XZ */
|
|
|
|
DEFINE_THISCALL_WRAPPER(basic_fstream_char_rdbuf, 4)
|
|
|
|
basic_filebuf_char* __thiscall basic_fstream_char_rdbuf(const basic_fstream_char *this)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", this);
|
|
|
|
return (basic_filebuf_char*)&this->filebuf;
|
|
|
|
}
|
2012-06-15 09:07:49 +00:00
|
|
|
|
2012-06-15 09:08:31 +00:00
|
|
|
static void __cdecl setprecision_func(ios_base *base, streamsize prec)
|
|
|
|
{
|
|
|
|
ios_base_precision_set(base, prec);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?setprecision@std@@YA?AU?$_Smanip@H@1@H@Z */
|
|
|
|
/* ?setprecision@std@@YA?AU?$_Smanip@_J@1@_J@Z */
|
|
|
|
manip_streamsize* __cdecl setprecision(manip_streamsize *ret, streamsize prec)
|
|
|
|
{
|
|
|
|
TRACE("(%p %ld)\n", ret, prec);
|
|
|
|
|
|
|
|
ret->pfunc = setprecision_func;
|
|
|
|
ret->arg = prec;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-06-15 09:08:47 +00:00
|
|
|
static void __cdecl setw_func(ios_base *base, streamsize width)
|
|
|
|
{
|
|
|
|
ios_base_width_set(base, width);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ?setw@std@@YA?AU?$_Smanip@H@1@H@Z */
|
|
|
|
/* ?setw@std@@YA?AU?$_Smanip@_J@1@_J@Z */
|
|
|
|
manip_streamsize* __cdecl setw(manip_streamsize *ret, streamsize width)
|
|
|
|
{
|
|
|
|
TRACE("(%p %ld)\n", ret, width);
|
|
|
|
|
|
|
|
ret->pfunc = setw_func;
|
|
|
|
ret->arg = width;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-06-15 09:07:49 +00:00
|
|
|
static basic_filebuf_char filebuf_stdin;
|
|
|
|
/* ?cin@std@@3V?$basic_istream@DU?$char_traits@D@std@@@1@A */
|
|
|
|
struct {
|
|
|
|
basic_istream_char obj;
|
|
|
|
basic_ios_char vbase;
|
|
|
|
} cin = { { 0 } };
|
|
|
|
/* ?_Ptr_cin@std@@3PAV?$basic_istream@DU?$char_traits@D@std@@@1@A */
|
|
|
|
/* ?_Ptr_cin@std@@3PEAV?$basic_istream@DU?$char_traits@D@std@@@1@EA */
|
|
|
|
basic_istream_char *_Ptr_cin = &cin.obj;
|
|
|
|
|
|
|
|
static basic_filebuf_char filebuf_stdout;
|
|
|
|
/* ?cout@std@@3V?$basic_ostream@DU?$char_traits@D@std@@@1@A */
|
|
|
|
struct {
|
|
|
|
basic_ostream_char obj;
|
|
|
|
basic_ios_char vbase;
|
|
|
|
} cout = { { 0 } };
|
|
|
|
/* ?_Ptr_cout@std@@3PAV?$basic_ostream@DU?$char_traits@D@std@@@1@A */
|
|
|
|
/* ?_Ptr_cout@std@@3PEAV?$basic_ostream@DU?$char_traits@D@std@@@1@EA */
|
|
|
|
basic_ostream_char *_Ptr_cout = &cout.obj;
|
|
|
|
|
|
|
|
static basic_filebuf_char filebuf_stderr;
|
|
|
|
/* ?cerr@std@@3V?$basic_ostream@DU?$char_traits@D@std@@@1@A */
|
|
|
|
struct {
|
|
|
|
basic_ostream_char obj;
|
|
|
|
basic_ios_char vbase;
|
|
|
|
} cerr = { { 0 } };
|
|
|
|
/* ?_Ptr_cerr@std@@3PAV?$basic_ostream@DU?$char_traits@D@std@@@1@A */
|
|
|
|
/* ?_Ptr_cerr@std@@3PEAV?$basic_ostream@DU?$char_traits@D@std@@@1@EA */
|
|
|
|
basic_ostream_char *_Ptr_cerr = &cerr.obj;
|
|
|
|
|
|
|
|
void init_io(void)
|
|
|
|
{
|
|
|
|
basic_filebuf_char_ctor_file(&filebuf_stdin, stdin);
|
|
|
|
basic_istream_char_ctor(&cin.obj, &filebuf_stdin.base, FALSE/*FIXME*/, TRUE);
|
|
|
|
|
|
|
|
basic_filebuf_char_ctor_file(&filebuf_stdout, stdout);
|
|
|
|
basic_ostream_char_ctor(&cout.obj, &filebuf_stdout.base, FALSE/*FIXME*/, TRUE);
|
|
|
|
|
|
|
|
basic_filebuf_char_ctor_file(&filebuf_stderr, stderr);
|
|
|
|
basic_ostream_char_ctor(&cerr.obj, &filebuf_stderr.base, FALSE/*FIXME*/, TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
void free_io(void)
|
|
|
|
{
|
|
|
|
basic_istream_char_dtor(&cin.obj);
|
|
|
|
basic_filebuf_char_dtor(&filebuf_stdin);
|
|
|
|
|
|
|
|
basic_ostream_char_dtor(&cout.obj);
|
|
|
|
basic_filebuf_char_dtor(&filebuf_stdout);
|
|
|
|
|
|
|
|
basic_ostream_char_dtor(&cerr.obj);
|
|
|
|
basic_filebuf_char_dtor(&filebuf_stderr);
|
|
|
|
}
|