mirror of
https://github.com/zeldaret/mm.git
synced 2024-11-23 12:59:44 +00:00
14 lines
233 B
C
14 lines
233 B
C
#ifndef _UNK_H_
|
|
#define _UNK_H_
|
|
|
|
#include <PR/ultratypes.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 void
|
|
|
|
#endif
|