Win32App.h 296 B

123456789101112131415161718
  1. #ifndef WIN32APP_H__
  2. #define WIN32APP_H__
  3. #define I2PD_WIN32_CLASSNAME "i2pd main window"
  4. namespace i2p
  5. {
  6. namespace win32
  7. {
  8. bool StartWin32App ();
  9. void StopWin32App ();
  10. int RunWin32App ();
  11. bool GracefulShutdown ();
  12. bool StopGracefulShutdown ();
  13. }
  14. }
  15. #endif // WIN32APP_H__