mariadb/server-tools/instance-manager/IMService.h

15 lines
228 B
C
Raw Normal View History

2005-07-20 10:55:40 -05:00
#pragma once
#include "windowsservice.h"
class IMService : public WindowsService
{
public:
IMService(void);
~IMService(void);
protected:
void Log(const char *msg);
void Stop();
2005-09-13 14:53:19 -05:00
void Run(DWORD argc, LPTSTR *argv);
2005-07-20 10:55:40 -05:00
};