NativeReactLikeInMacintosh/types.h

9 lines
131 B
C

#ifndef __TYPES_H
#define __TYPES_H
typedef struct PascalString {
unsigned char len;
char content[255];
} PString;
#endif