changed qse_runmain() to ignore mbwc error by calling qse_mbstowcsalldup().

added qse_mbstowcsalldup() and its variants
This commit is contained in:
2012-01-15 15:25:28 +00:00
parent 52710a87c9
commit fa850168ee
16 changed files with 246 additions and 46 deletions

View File

@ -48,8 +48,9 @@ public:
{
public:
FileStream (const char_t* infile = QSE_NULL,
const char_t* outfile = QSE_NULL):
infile(infile), outfile(outfile)
const char_t* outfile = QSE_NULL,
qse_cmgr_t* cmgr = QSE_NULL):
infile(infile), outfile(outfile), cmgr(cmgr)
{
}
@ -61,6 +62,7 @@ public:
protected:
const char_t* infile;
const char_t* outfile;
qse_cmgr_t* cmgr;
};
class StringStream: public Stream