hedgewars/pas2c.h
author koda
Fri, 13 Apr 2012 00:18:10 +0200
changeset 6884 85e810230372
parent 6883 70aec33185e2
child 6886 4463ee51c9ec
permissions -rw-r--r--
disable png screenshots on mobile for now

#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 float extended;
typedef float real;

typedef bool boolean;

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