mirror of
https://github.com/HarbourMasters/Starship.git
synced 2025-02-03 00:33:55 +03:00
59475cd4f6
* func_800B8E14 & func_800B8DD0 * func_800B94D0 * func_800B9618 * func_800B9760 * func_800B9790 * func_800B98A8 * func_800B99C0 * func_800B99F0 * func_800B9A20 * func_800B9B38 * func_800B9C50 * func_800B9D68 * func_800B9E80 * func_800B9EB0 * func_800B9FC8 * func_800BA0E0 * func_800BA110 * func_800BA140 * func_800BA1A0 * func_800BA1D0 * func_800BA2E8 * func_800BA400 * func_800BA430 * func_800BA460 * func_800BA490 * func_800BA4C0 * func_800BA520 * func_800BA550 * func_800BA5E0 * func_800BA640 * func_800843FC * func_80084370 * func_80084688 * gSetupDLs * gSetupDLs * fox_rcp * break * newline * mvoe screen_width and screen_height to gfx.h * remove space * correct size * clang-tidy from mm
57 lines
1.0 KiB
C
57 lines
1.0 KiB
C
#ifndef GLOBAL_H
|
|
#define GLOBAL_H
|
|
|
|
#include "PR/xstdio.h"
|
|
#include "PR/os_internal.h"
|
|
#include "PR/controller.h"
|
|
#include "libultra/ultra64.h"
|
|
#include "libc/math.h"
|
|
#include "libc/stdarg.h"
|
|
#include "libc/stdbool.h"
|
|
#include "libc/stdint.h"
|
|
#include "libc/stddef.h"
|
|
#include "libc/string.h"
|
|
#include "functions.h"
|
|
#include "variables.h"
|
|
#include "structs.h"
|
|
#include "macros.h"
|
|
#include "sf64math.h"
|
|
#include "gfx.h"
|
|
|
|
typedef enum {
|
|
SI_MESG_10 = 10,
|
|
SI_MESG_11,
|
|
SI_MESG_12,
|
|
SI_MESG_13,
|
|
SI_MESG_14,
|
|
SI_MESG_15,
|
|
SI_MESG_16,
|
|
} SerialMesg;
|
|
|
|
#define MSG_QUEUE_EMPTY -1
|
|
|
|
#define FAULT_MESG_BREAK 1
|
|
#define FAULT_MESG_FAULT 2
|
|
|
|
#define TASK_MESG_1 1
|
|
#define TASK_MESG_2 2
|
|
|
|
#define EVENT_MESG_SP 1
|
|
#define EVENT_MESG_DP 2
|
|
#define EVENT_MESG_VI 3
|
|
#define EVENT_MESG_PRENMI 4
|
|
|
|
typedef enum {
|
|
THREAD_ID_SYSTEM,
|
|
THREAD_ID_IDLE,
|
|
THREAD_ID_FAULT,
|
|
THREAD_ID_MAIN,
|
|
THREAD_ID_4,
|
|
THREAD_ID_AUDIO,
|
|
THREAD_ID_GRAPHICS,
|
|
THREAD_ID_7,
|
|
THREAD_ID_SERIAL,
|
|
} ThreadID;
|
|
|
|
#endif // GLOBAL_H
|