mirror of
https://github.com/encounter/tp.git
synced 2026-07-11 06:18:46 -07:00
i previously had a bad habit of using double underscores in include guard macro names, which are implementation-reserved per the C++98 standard (see 17.4.3.1.2 Global names). Co-authored-by: Pheenoh <pheenoh@gmail.com>
19 lines
340 B
C
19 lines
340 B
C
|
|
#ifndef F_PC_DRAW_PRIORITY_H_
|
|
#define F_PC_DRAW_PRIORITY_H_
|
|
|
|
#include "global.h"
|
|
|
|
typedef struct draw_priority_class {
|
|
s16 mPriority;
|
|
} draw_priority_class;
|
|
|
|
extern "C" {
|
|
|
|
s32 fpcDwPi_Get(draw_priority_class* pDwPi);
|
|
void fpcDwPi_Set(draw_priority_class* pDwPi, s32 p);
|
|
void fpcDwPi_Init(draw_priority_class* pDwPi, s32 p);
|
|
};
|
|
|
|
#endif
|