23 lines
585 B
C
23 lines
585 B
C
#ifndef STUBS_H
|
|
#define STUBS_H
|
|
/**** stubs.h
|
|
This file defines the interface, and network stubs. During linking, the functions declared in this file will be linked to their compiled interface, or network functions.
|
|
****/
|
|
int interfaceInit();
|
|
int interfaceLoop();
|
|
void interfaceDraw();
|
|
void interfaceClose();
|
|
|
|
/* non-main() Interface functions */
|
|
void interfacePrint(const char *input_string);
|
|
void interfacePrintf(const char *input_string, ...);
|
|
|
|
void interfaceDrawConsole();
|
|
|
|
/* common console commands */
|
|
void interfaceSetInterval(const char *input_string);
|
|
|
|
int netInit();
|
|
|
|
#endif
|