NativeReactLikeInMacintosh/types.h

9 lines
131 B
C
Raw Permalink Normal View History

2020-05-03 14:12:49 +00:00
#ifndef __TYPES_H
#define __TYPES_H
typedef struct PascalString {
unsigned char len;
char content[255];
} PString;
#endif