win32: make __forceinline tfw functions static (gocha)

This commit is contained in:
OV2 2012-07-30 19:48:21 +02:00
parent 365f30fcd8
commit fcdc393e2b
1 changed files with 2 additions and 2 deletions

View File

@ -267,11 +267,11 @@ public:
#define fopen _tfwopen
#undef remove
__forceinline int remove(const char *filename) {
__forceinline static int remove(const char *filename) {
return _twremove(filename);
}
#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);
}
#endif // _TFWOPEN_H