mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-13 11:38:19 +00:00
23 lines
303 B
C++
23 lines
303 B
C++
#ifndef ENGINE_SHARED_FIFO_H
|
|
#define ENGINE_SHARED_FIFO_H
|
|
|
|
#include <engine/console.h>
|
|
|
|
#if defined(CONF_FAMILY_UNIX)
|
|
|
|
class CFifo
|
|
{
|
|
IConsole *m_pConsole;
|
|
int m_Flag;
|
|
int m_File;
|
|
|
|
public:
|
|
void Init(IConsole *pConsole, char *pFifoFile, int Flag);
|
|
void Update();
|
|
void Shutdown();
|
|
};
|
|
|
|
#endif
|
|
|
|
#endif
|