mirror of
https://gitee.com/anod/open_agb_firm.git
synced 2025-05-06 22:04:10 +08:00
13 lines
202 B
C
13 lines
202 B
C
#ifndef __ANO_PATCH_H__
|
|
#define __ANO_PATCH_H__
|
|
|
|
#include "types.h"
|
|
|
|
#define INPUT(type) type
|
|
#define OUTPUT(type) type*
|
|
|
|
extern void setBrightness(
|
|
INPUT(u16) brightness
|
|
);
|
|
|
|
#endif//__ANO_PATCH_H__
|