mirror of
https://github.com/AxioDL/PrimeAPI.git
synced 2026-03-30 11:38:46 -07:00
17 lines
275 B
C++
17 lines
275 B
C++
#ifndef CIOWIN_HPP
|
|
#define CIOWIN_HPP
|
|
|
|
class CIOWin
|
|
{
|
|
public:
|
|
enum EMessageReturn
|
|
{
|
|
kMessageReturn_Normal = 0,
|
|
kMessageReturn_Exit = 1,
|
|
kMessageReturn_RemoveIOWinAndExit = 2,
|
|
kMessageReturn_RemoveIOWin = 3
|
|
};
|
|
};
|
|
|
|
#endif // CIOWIN_HPP
|