Files
tp/include/f/f_pc/f_pc_draw_priority.h
T
c70d485d35 normalize header guards to {tu_name}_H_ (#87)
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>
2021-01-18 14:02:51 -05:00

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