mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2024-10-31 09:20:38 +00:00
dd4f066e95
add stop graceful shutdown menu item add reload menu item
18 lines
296 B
C++
18 lines
296 B
C++
#ifndef WIN32APP_H__
|
|
#define WIN32APP_H__
|
|
|
|
#define I2PD_WIN32_CLASSNAME "i2pd main window"
|
|
|
|
namespace i2p
|
|
{
|
|
namespace win32
|
|
{
|
|
bool StartWin32App ();
|
|
void StopWin32App ();
|
|
int RunWin32App ();
|
|
bool GracefulShutdown ();
|
|
bool StopGracefulShutdown ();
|
|
}
|
|
}
|
|
#endif // WIN32APP_H__
|