mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-11 02:28:18 +00:00
23 lines
395 B
C++
23 lines
395 B
C++
#ifndef ENGINE_FIFOCONSOLE_H
|
|
#define ENGINE_FIFOCONSOLE_H
|
|
|
|
#include <engine/console.h>
|
|
|
|
#if defined(CONF_FAMILY_UNIX)
|
|
|
|
class FifoConsole
|
|
{
|
|
static void ListenFifoThread(void *pUser);
|
|
IConsole *m_pConsole;
|
|
void *m_pFifoThread;
|
|
char *m_pFifoFile;
|
|
int m_flag;
|
|
|
|
public:
|
|
FifoConsole(IConsole *pConsole, char *pFifoFile, int flag);
|
|
~FifoConsole();
|
|
};
|
|
#endif
|
|
|
|
#endif // FILE_ENGINE_FIFOCONSOLE_H
|