random ai stuff
This commit is contained in:
25
telldus-core/service/main_win.cpp
Normal file
25
telldus-core/service/main_win.cpp
Normal file
@@ -0,0 +1,25 @@
|
||||
//
|
||||
// Copyright (C) 2012 Telldus Technologies AB. All rights reserved.
|
||||
//
|
||||
// Copyright: See COPYING file that comes with this distribution
|
||||
//
|
||||
//
|
||||
#include <windows.h>
|
||||
#include <Dbt.h>
|
||||
|
||||
#include "service/TelldusWinService_win.h"
|
||||
// #include <QCoreApplication>
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
g_argc = argc;
|
||||
g_argv = argv;
|
||||
|
||||
SERVICE_TABLE_ENTRY serviceTable[] = {
|
||||
{serviceName, TelldusWinService::serviceMain },
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
||||
StartServiceCtrlDispatcher( serviceTable );
|
||||
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user