Files @ 8d9a5fe3d8e3
Branch filter:

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

ThUnD3r|Gr33n
add new repo for yowsup

Changed yowsup repo to maintained one
#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();
BOOL spectrum_control_handler( DWORD fdwCtrlType );