aboutsummaryrefslogtreecommitdiff
path: root/tools/skycpt/stdafx.h
diff options
context:
space:
mode:
authorRobert Göffringmann2005-11-04 00:42:30 +0000
committerRobert Göffringmann2005-11-04 00:42:30 +0000
commitcbe5f667c203de9afc52b892eb19431322537884 (patch)
tree873027a997656d9b80c164b3d8604dad1d35a504 /tools/skycpt/stdafx.h
parent4a2bbb0e523c07915ff1eb3eac68bd3d6147a437 (diff)
downloadscummvm-rg350-cbe5f667c203de9afc52b892eb19431322537884.tar.gz
scummvm-rg350-cbe5f667c203de9afc52b892eb19431322537884.tar.bz2
scummvm-rg350-cbe5f667c203de9afc52b892eb19431322537884.zip
Changed the tool so it compiles with g++
svn-id: r19414
Diffstat (limited to 'tools/skycpt/stdafx.h')
-rw-r--r--tools/skycpt/stdafx.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/tools/skycpt/stdafx.h b/tools/skycpt/stdafx.h
index 8f91c95095..a477c70f55 100644
--- a/tools/skycpt/stdafx.h
+++ b/tools/skycpt/stdafx.h
@@ -2,13 +2,15 @@
// oder projektspezifische Includedateien, die häufig benutzt, aber
// in unregelmäßigen Abständen geändert werden.
//
+#ifndef __STDAFX_H__
+#define __STDAFX_H__
+#ifdef _MSC_VER
#pragma once
-
#include <iostream>
#include <tchar.h>
-
+#endif
typedef unsigned char byte;
typedef unsigned char uint8;
@@ -30,4 +32,5 @@ struct CptObj {
uint16 type;
//uint16 id;
};
-// TODO: Verweisen Sie hier auf zusätzliche Header, die Ihr Programm erfordert
+
+#endif // __STDAFX_H__