mirror of
https://github.com/pmret/papermario.git
synced 2024-11-08 12:02:30 +01:00
13 lines
227 B
C
13 lines
227 B
C
#ifndef _TYPES_H_
|
|
#define _TYPES_H_
|
|
|
|
#define UNK_TYPE s32
|
|
#define UNK_PTR void*
|
|
#define UNK_RET void
|
|
#define UNK_FUN_ARG void(*)(void)
|
|
#define UNK_FUN_PTR(name) void(*name)(void)
|
|
#define UNK_ARGS
|
|
|
|
typedef s32* bytecode;
|
|
|
|
#endif |