This repository has been archived on 2023-11-05. You can view files and clone it, but cannot push or open issues or pull requests.
wrt/utils/defs.h
2023-02-07 23:19:28 +08:00

19 lines
317 B
C

#ifndef WRT_DEFS_H
#define WRT_DEFS_H
typedef enum {
WRT_OK = 0,
WRT_ERROR = -1,
} Status;
typedef void *(*Allocator)(unsigned long);
typedef void (*DeAllocator)(void *);
typedef char *_va_list;
#define DL_MAX_HANDLES 8
#define DL_MAX_SYMBOLS 16
#define DL_SYM_TABLE_SIZE 5
#endif // WRT_DEFS_H