1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-22 04:04:16 +00:00

invoke daemon

This commit is contained in:
orignal 2016-03-07 16:17:06 -05:00
parent 9096cacba8
commit 4cfdc77015

View File

@ -1,6 +1,7 @@
#include <string.h>
#include <windows.h>
#include <shellapi.h>
#include "../Daemon.h"
#include "Win32App.h"
#define ID_ABOUT 2000
@ -130,10 +131,8 @@ static LRESULT CALLBACK WndProc (HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lPa
}
// init
int argc;
auto argv = CommandLineToArgvW (cmdline, &argc)
Daemon.init(argc, argv);
LocalFree (argv);
char * argv[] = { (char *)"i2pd" };
Daemon.init(sizeof (argv)/sizeof (argv[0]), argv);
// start
Daemon.start ();
// main loop