mirror of https://github.com/snes9xgit/snes9x.git
win32: make __forceinline tfw functions static (gocha)
This commit is contained in:
parent
365f30fcd8
commit
fcdc393e2b
|
@ -267,11 +267,11 @@ public:
|
||||||
|
|
||||||
#define fopen _tfwopen
|
#define fopen _tfwopen
|
||||||
#undef remove
|
#undef remove
|
||||||
__forceinline int remove(const char *filename) {
|
__forceinline static int remove(const char *filename) {
|
||||||
return _twremove(filename);
|
return _twremove(filename);
|
||||||
}
|
}
|
||||||
#undef open
|
#undef open
|
||||||
__forceinline int open(const char *filename, int oflag, int pmode) {
|
__forceinline static int open(const char *filename, int oflag, int pmode) {
|
||||||
return _twopen(filename, oflag, pmode);
|
return _twopen(filename, oflag, pmode);
|
||||||
}
|
}
|
||||||
#endif // _TFWOPEN_H
|
#endif // _TFWOPEN_H
|
||||||
|
|
Loading…
Reference in New Issue