openmohaa/code/tools/testutils/ubersdk.h

20 lines
256 B
C
Raw Normal View History

2016-03-27 11:49:47 +02:00
#ifndef __UBERSDK_H__
#define __UBERSDK_H__
#ifdef WIN32
#include <Windows.h>
#include <conio.h>
#else
#include <termios.h>
#include <unistd.h>
#include <pthread.h>
#endif
#undef STRING_NONE
#include <console.h>
extern ConsoleInput *g_console;
#endif