Files @ 9388d599156c
Branch filter:

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

HanzZ
Store last tweet ID in database so all tweets are not forwarded on reconnect. Send proper timestamp of tweets
#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();