Minor fixes. Use OutputDebugString for native logging on Windows.

This commit is contained in:
Henrik Rydgard
2013-06-09 11:20:15 +02:00
parent fdb1ad3f0e
commit 2143b5b608
8 changed files with 45 additions and 24 deletions
+5
View File
@@ -1,3 +1,4 @@
#include <windows.h>
#include <string.h>
#include <stdarg.h>
#include <errno.h>
@@ -15,6 +16,10 @@
#define strcasecmp _stricmp
#endif
void __ods__(const char *p) {
OutputDebugString(p);
}
unsigned int parseHex(const char *_szValue)
{
int Value = 0;