hedgewars/pas2c.h
changeset 6894 555a8d8db228
parent 6891 ab9843957664
child 6895 31def088a870
equal deleted inserted replaced
6893:69cc0166be8d 6894:555a8d8db228
    36 typedef Byte * PByte;
    36 typedef Byte * PByte;
    37 typedef char * PChar;
    37 typedef char * PChar;
    38 typedef LongInt * PLongInt;
    38 typedef LongInt * PLongInt;
    39 typedef Integer * PInteger;
    39 typedef Integer * PInteger;
    40 
    40 
       
    41 #define new(a) __new(a, sizeof(*(a)))
       
    42 void __new(pointer p);
       
    43 
       
    44 #define FillChar(a, b, c) __FillChar(&(a), b, c)
       
    45 
       
    46 void __FillChar(pointer p, int size, char fill);
       
    47 string255 _strconcat(string255 a, string255 b);
       
    48