(svn r26772) -Cleanup [Squirrel]: remove traces to SQUNICODE define

This commit is contained in:
rubidium
2014-09-06 17:36:29 +00:00
parent 7c4e9dd71d
commit ad315ef6d9
7 changed files with 0 additions and 92 deletions

View File

@@ -9,11 +9,7 @@
//basic API
SQFILE sqstd_fopen(const SQChar *filename ,const SQChar *mode)
{
#ifndef SQUNICODE
return (SQFILE)fopen(filename,mode);
#else
return (SQFILE)_wfopen(filename,mode);
#endif
}
SQInteger sqstd_fread(void* buffer, SQInteger size, SQInteger count, SQFILE file)