#include "wx/intl.h"
#include <string.h>
-#ifdef __VISUALC__
#include <ctype.h>
-#endif
#include "wx/xpmdecod.h"
if ( !stream.Read(buf, WXSIZEOF(buf)) )
return FALSE;
- stream.SeekI(-WXSIZEOF(buf), wxFromCurrent);
+ stream.SeekI(-(off_t)WXSIZEOF(buf), wxFromCurrent);
return memcmp(buf, "/* XPM */", WXSIZEOF(buf)) == 0;
}