Add new string typedefs

This commit is contained in:
Iliyas Jorio 2021-01-03 17:25:18 +01:00
parent 833dab9a85
commit 19b84a4107

View File

@ -69,7 +69,10 @@ typedef void (*ProcPtr);
//-----------------------------------------------------------------------------
// (Pascal) String types
typedef char Str15[16];
typedef char Str31[32];
typedef char Str32[33];
typedef char Str63[64];
typedef char Str255[256];
typedef char* StringPtr;
typedef const char* ConstStr255Param;