mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-19 01:52:35 -05:00
There are some real bugs in here, but we're drowning in warnings. Change-Id: I7c2c0eafc8426327521bdd8a3ac2d3742ac16864
19 lines
518 B
C
19 lines
518 B
C
#ifndef _CONSOLE_H_
|
|
#define _CONSOLE_H_
|
|
|
|
|
|
// Public member functions
|
|
void CONSOLE_Init(void);
|
|
void CONSOLE_Reset(void);
|
|
void CONSOLE_Term(void);
|
|
void CONSOLE_ParseStartupScript(void);
|
|
void CONSOLE_HandleInput(void);
|
|
void CONSOLE_Render(void);
|
|
void CONSOLE_ParseCommand(char * command);
|
|
void CONSOLE_Printf(const char *newmsg, ...);
|
|
int CONSOLE_GetArgc(void);
|
|
char * CONSOLE_GetArgv(unsigned int var);
|
|
int CONSOLE_IsActive(void);
|
|
void CONSOLE_SetActive(int i);
|
|
|
|
#endif
|