timesynk/stubs.h

15 lines
350 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();
int netInit();
void netLoop();
#endif