2014-06-11 08:01:13 +00:00
|
|
|
#include <stdlib.h>
|
2014-04-20 01:54:34 +00:00
|
|
|
#include "Daemon.h"
|
2014-02-05 00:28:18 +00:00
|
|
|
|
2014-01-30 00:56:48 +00:00
|
|
|
int main( int argc, char* argv[] )
|
2013-12-10 13:05:42 +00:00
|
|
|
{
|
2016-03-10 06:12:46 +00:00
|
|
|
if (Daemon.init(argc, argv))
|
|
|
|
{
|
|
|
|
if (Daemon.start())
|
|
|
|
Daemon.run ();
|
|
|
|
Daemon.stop();
|
|
|
|
}
|
2014-12-10 17:10:07 +00:00
|
|
|
return EXIT_SUCCESS;
|
2013-12-10 13:05:42 +00:00
|
|
|
}
|
2015-11-03 14:15:49 +00:00
|
|
|
|
2016-03-10 06:12:46 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
#include <windows.h>
|
|
|
|
|
|
|
|
int CALLBACK WinMain(
|
|
|
|
_In_ HINSTANCE hInstance,
|
|
|
|
_In_ HINSTANCE hPrevInstance,
|
|
|
|
_In_ LPSTR lpCmdLine,
|
|
|
|
_In_ int nCmdShow
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return main(__argc, __argv);
|
|
|
|
}
|
|
|
|
#endif
|