mirror of https://github.com/snes9xgit/snes9x.git
127 lines
3.1 KiB
C++
127 lines
3.1 KiB
C++
/*****************************************************************************\
|
|
Snes9x - Portable Super Nintendo Entertainment System (TM) emulator.
|
|
This file is licensed under the Snes9x License.
|
|
For further information, consult the LICENSE file in the root directory.
|
|
\*****************************************************************************/
|
|
|
|
#ifndef _TFWOPEN_H
|
|
#define _TFWOPEN_H
|
|
|
|
#ifdef UNICODE
|
|
|
|
#include <stdio.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
FILE *_tfwopen(const char *filename, const char *mode );
|
|
int _twremove(const char *filename );
|
|
int _twopen(const char *filename, int oflag, int pmode);
|
|
char *_twfullpath(char* dst, const char* src, int len);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // UNICODE
|
|
|
|
#ifdef __cplusplus
|
|
|
|
class Utf8ToWide {
|
|
private:
|
|
wchar_t *wideChars;
|
|
public:
|
|
Utf8ToWide(const char *utf8Chars);
|
|
~Utf8ToWide() { delete [] wideChars; }
|
|
operator wchar_t *() { return wideChars; }
|
|
};
|
|
|
|
class WideToUtf8 {
|
|
private:
|
|
char *utf8Chars;
|
|
public:
|
|
WideToUtf8(const wchar_t *wideChars);
|
|
~WideToUtf8() { delete [] utf8Chars; }
|
|
operator char *() { return utf8Chars; }
|
|
};
|
|
|
|
class CPToWide {
|
|
private:
|
|
wchar_t *wideChars;
|
|
public:
|
|
CPToWide(const char *chars, unsigned int cp);
|
|
~CPToWide() { delete [] wideChars; }
|
|
operator wchar_t *() { return wideChars; }
|
|
};
|
|
|
|
class WideToCP {
|
|
private:
|
|
char *cpchars;
|
|
public:
|
|
WideToCP(const wchar_t *wideChars, unsigned int cp);
|
|
~WideToCP() { delete [] cpchars; }
|
|
operator char *() { return cpchars; }
|
|
};
|
|
|
|
#endif // __cplusplus
|
|
|
|
#ifdef UNICODE
|
|
#ifdef __cplusplus
|
|
#include <fstream>
|
|
|
|
namespace std {
|
|
class u8nifstream: public std::ifstream
|
|
{
|
|
public:
|
|
void __CLR_OR_THIS_CALL open(const char *_Filename, ios_base::open_mode _Mode)
|
|
{
|
|
std::ifstream::open(Utf8ToWide(_Filename), (ios_base::openmode)_Mode);
|
|
}
|
|
|
|
void __CLR_OR_THIS_CALL open(const wchar_t *_Filename, ios_base::open_mode _Mode)
|
|
{
|
|
std::ifstream::open(_Filename, (ios_base::openmode)_Mode);
|
|
}
|
|
|
|
__CLR_OR_THIS_CALL u8nifstream()
|
|
: std::ifstream() {}
|
|
|
|
explicit __CLR_OR_THIS_CALL u8nifstream(const char *_Filename,
|
|
ios_base::openmode _Mode = ios_base::in,
|
|
int _Prot = (int)ios_base::_Openprot)
|
|
: std::ifstream(Utf8ToWide(_Filename),_Mode) {}
|
|
|
|
explicit __CLR_OR_THIS_CALL u8nifstream(const wchar_t *_Filename,
|
|
ios_base::openmode _Mode = ios_base::in,
|
|
int _Prot = (int)ios_base::_Openprot)
|
|
: std::ifstream(_Filename,_Mode,_Prot) {}
|
|
|
|
#ifdef _NATIVE_WCHAR_T_DEFINED
|
|
explicit __CLR_OR_THIS_CALL u8nifstream(const unsigned short *_Filename,
|
|
ios_base::openmode _Mode = ios_base::in,
|
|
int _Prot = (int)ios_base::_Openprot)
|
|
: std::ifstream(_Filename,_Mode,_Prot) {}
|
|
#endif /* _NATIVE_WCHAR_T_DEFINED */
|
|
|
|
explicit __CLR_OR_THIS_CALL u8nifstream(FILE *_File)
|
|
: std::ifstream(_File) {}
|
|
};
|
|
}
|
|
#define ifstream u8nifstream
|
|
#endif // __cplusplus
|
|
|
|
#define fopen _tfwopen
|
|
#undef remove
|
|
__forceinline static int remove(const char *filename) {
|
|
return _twremove(filename);
|
|
}
|
|
#undef open
|
|
__forceinline static int open(const char *filename, int oflag, int pmode) {
|
|
return _twopen(filename, oflag, pmode);
|
|
}
|
|
|
|
#endif // UNICODE
|
|
|
|
#endif // _TFWOPEN_H
|