mirror of
https://github.com/MariaDB/server.git
synced 2025-08-29 00:08:14 +03:00
server-tools/instance-manager/WindowsService.cpp: Change mode to -rw-rw-r-- server-tools/instance-manager/WindowsService.h: Change mode to -rw-rw-r-- server-tools/instance-manager/port.h: Change mode to -rw-rw-r-- server-tools/instance-manager/mysqlmanager.vcproj: Change mode to -rw-rw-r-- server-tools/instance-manager/IMService.cpp: Change mode to -rw-rw-r-- server-tools/instance-manager/IMService.h: Change mode to -rw-rw-r--
15 lines
204 B
C++
15 lines
204 B
C++
#pragma once
|
|
#include "windowsservice.h"
|
|
|
|
class IMService : public WindowsService
|
|
{
|
|
public:
|
|
IMService(void);
|
|
~IMService(void);
|
|
|
|
protected:
|
|
void Log(const char *msg);
|
|
void Stop();
|
|
void Run();
|
|
};
|