hedgewars/pas2c.h
author unc0rr
Sat, 14 Apr 2012 23:19:45 +0400
changeset 6888 32a54322d262
parent 6886 4463ee51c9ec
child 6889 149638c9cbc4
permissions -rw-r--r--
Get rid of TGearsType to simplify pas2c

#pragma once

#include <stdbool.h>

typedef struct string255_
    {
        char s[256];
    } string255;

typedef int SmallInt;
typedef int Word;
typedef int LongInt;
typedef int LongWord;
typedef int Byte;
typedef int Integer;
typedef long long int QWord;

typedef float extended;
typedef float real;

typedef bool boolean;

typedef void * pointer;
typedef Byte * PByte;
typedef char * PChar;
typedef LongInt * PLongInt;
typedef Integer * PInteger;