mirror of
https://github.com/openmoh/openmohaa.git
synced 2025-05-07 03:03:43 +03:00
19 lines
256 B
C
19 lines
256 B
C
#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
|