mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-11 03:39:59 +00:00
e3f1ccd902
* Fix all headers to comply with C standard * fix a file in libultra * Update include/stdbool.h Co-authored-by: Dragorn421 <Dragorn421@users.noreply.github.com> * Update stdbool.h * Update z64animation.h Co-authored-by: Dragorn421 <Dragorn421@users.noreply.github.com>
16 lines
299 B
C
16 lines
299 B
C
#ifndef UNK_H
|
|
#define UNK_H
|
|
|
|
#define UNK_TYPE s32
|
|
#define UNK_TYPE1 s8
|
|
#define UNK_TYPE2 s16
|
|
#define UNK_TYPE4 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
|
|
#define UNK_SIZE 1
|
|
#define UNK_LINE 1
|
|
|
|
#endif
|