mirror of
https://github.com/RetroDECK/Supermodel.git
synced 2024-11-29 17:15:40 +00:00
14 lines
157 B
C
14 lines
157 B
C
|
#ifndef _WINSOCKWRAP_H_
|
||
|
#define _WINSOCKWRAP_H_
|
||
|
|
||
|
class WinSockWrap
|
||
|
{
|
||
|
public:
|
||
|
WinSockWrap();
|
||
|
~WinSockWrap();
|
||
|
|
||
|
private:
|
||
|
int m_count;
|
||
|
};
|
||
|
|
||
|
#endif
|