hedgewars/pas2c.h
changeset 6878 0af34406b83d
parent 6875 6528171ce36d
child 6883 70aec33185e2
--- a/hedgewars/pas2c.h	Mon Apr 09 23:20:42 2012 +0200
+++ b/hedgewars/pas2c.h	Wed Apr 11 01:04:58 2012 +0400
@@ -1,5 +1,7 @@
 #pragma once
 
+#include <stdbool.h>
+
 typedef char string255[];
 
 typedef int SmallInt;
@@ -7,7 +9,16 @@
 typedef int LongInt;
 typedef int LongWord;
 typedef int Byte;
-typedef Byte * PByte;
+typedef int Integer;
+
+typedef float extended;
+typedef float real;
+
+typedef bool boolean;
 
 typedef void * pointer;
+typedef Byte * PByte;
+typedef char * PChar;
+typedef LongInt * PLongInt;
+typedef Integer * PInteger;