Files @ e0f560a64814
Branch filter:

Location: libtransport.git/spectrum/src/win32/ServiceWrapper.h - annotation

Jan Kaluza
Added database.vip_statement, database.vip_only and database.vip_message variables
#pragma once
#include "transport/config.h"
#include <windows.h>
#include <tchar.h>

class ServiceWrapper
{
public:
	ServiceWrapper(LPSTR serviceName);
	~ServiceWrapper(void);
	bool Install(LPSTR commandLine);
	bool UnInstall();
	bool IsInstalled();
	void RunService();
};

int mainloop();
void stop();