2016-03-07 14:54:57 -05:00
|
|
|
#ifndef WIN32APP_H__
|
|
|
|
#define WIN32APP_H__
|
|
|
|
|
|
|
|
#define I2PD_WIN32_CLASSNAME "i2pd main window"
|
|
|
|
|
2016-03-09 14:41:14 -05:00
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
namespace win32
|
|
|
|
{
|
2017-09-27 23:28:58 +03:00
|
|
|
bool StartWin32App ();
|
|
|
|
void StopWin32App ();
|
|
|
|
int RunWin32App ();
|
|
|
|
bool GracefulShutdown ();
|
|
|
|
bool StopGracefulShutdown ();
|
2016-03-09 14:41:14 -05:00
|
|
|
}
|
|
|
|
}
|
2016-03-07 14:54:57 -05:00
|
|
|
#endif // WIN32APP_H__
|