Files
2026-03-02 22:04:18 +03:00

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