[host] cleanup some missing (void) parameters

This commit is contained in:
Tudor Brindus
2022-02-08 00:10:31 -05:00
committed by Geoffrey McRae
parent 0ea188faf8
commit 9ddfa585ec
5 changed files with 12 additions and 12 deletions

View File

@@ -35,17 +35,17 @@
#define LG_HOST_EXIT_FATAL 0x50
int app_main(int argc, char * argv[]);
bool app_init();
void app_shutdown();
void app_quit();
bool app_init(void);
void app_shutdown(void);
void app_quit(void);
// these must be implemented for each OS
const char * os_getExecutable();
const char * os_getDataPath();
const char * os_getExecutable(void);
const char * os_getDataPath(void);
void os_showMessage(const char * caption, const char * msg);
bool os_getAndClearPendingActivationRequest(void);
bool os_blockScreensaver();
bool os_blockScreensaver(void);
bool os_hasSetCursorPos(void);
void os_setCursorPos(int x, int y);