This repository has been archived on 2026-04-01. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
original-mcpe-0.6.1/handheld/project/lib_projects/raknet/jni/RaknetSources/WSAStartupSingleton.h
2026-04-01 23:13:15 +02:00

17 lines
268 B
C++

#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