mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
9649319ec4
* Reorganize files into libs/{dolphin,JSystem,PowerPC_EABI_Support,revolution,TRK_MINNOW_DOLPHIN}
* Update configure.py and project.py for new libs structure
* Refactor `#include <dolphin/x.h>` -> `<x.h>`
* Remove `__REVOLUTION_SDK__` forwards from dolphin
* Fix dolphin/ references in revolution
* Wrap `#include <dolphin.h>` in `!__REVOLUTION_SDK__`
* Always build TRK against dolphin headers
* Resolve revolution SDK header resolution issues
16 lines
372 B
C
16 lines
372 B
C
|
|
#ifndef F_PC_DRAW_PRIORITY_H_
|
|
#define F_PC_DRAW_PRIORITY_H_
|
|
|
|
#include <types.h>
|
|
|
|
typedef struct draw_priority_class {
|
|
s16 priority;
|
|
} draw_priority_class;
|
|
|
|
s16 fpcDwPi_Get(const draw_priority_class* i_drawpriority);
|
|
void fpcDwPi_Set(draw_priority_class* i_drawpriority, s16 i_priority);
|
|
void fpcDwPi_Init(draw_priority_class* i_drawpriority, s16 i_priority);
|
|
|
|
#endif
|