mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 14:54:20 +01:00
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();
|
||
|
};
|