mirror of
https://gitea.sffempire.ru/Kolyah35/minecraft-pe-0.6.1.git
synced 2026-03-20 23:13:33 +00:00
17 lines
268 B
C++
Executable File
17 lines
268 B
C++
Executable File
#ifndef __WSA_STARTUP_SINGLETON_H
|
|
#define __WSA_STARTUP_SINGLETON_H
|
|
|
|
class WSAStartupSingleton
|
|
{
|
|
public:
|
|
WSAStartupSingleton();
|
|
~WSAStartupSingleton();
|
|
static void AddRef(void);
|
|
static void Deref(void);
|
|
|
|
protected:
|
|
static int refCount;
|
|
};
|
|
|
|
#endif
|