mirror of
https://github.com/MariaDB/server.git
synced 2025-01-21 22:34:18 +01:00
14 lines
228 B
C++
14 lines
228 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(DWORD argc, LPTSTR *argv);
|
|
};
|