mirror of
https://gitee.com/anod/open_agb_firm.git
synced 2025-05-06 22:04:10 +08:00
13 lines
389 B
C
13 lines
389 B
C
#ifndef __OAF_PAGES_H__
|
|
#define __OAF_PAGES_H__
|
|
|
|
#include "arm11/atp.h"
|
|
#include "arm11/cheat.h"
|
|
#include "arm11/open_agb_firm.h"
|
|
|
|
extern atp_error_t use_config_page( struct global_oaf_config* );
|
|
extern atp_error_t help_page( atp_text_t *wording, atp_counter_t length );
|
|
|
|
#define use_help_page(text) help_page((text), sizeof((text))/sizeof(atp_text_t))
|
|
|
|
#endif//__OAF_PAGES_H__
|