19 lines
488 B
C
19 lines
488 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();
|
|
void interfaceLoop();
|
|
void interfaceDraw();
|
|
void interfaceClose();
|
|
|
|
/* non-main() Interface functions */
|
|
void interfacePrint(const char *input_string);
|
|
void interfacePrintf(const char *input_string, ...);
|
|
|
|
int netInit();
|
|
void netLoop();
|
|
|
|
#endif
|