wsa_init.cpp
Go to the documentation of this file.
1 
2 #ifdef _MSC_VER
3 #include <WinSock2.h>
4 #endif
5 
7 {
8 public:
11  {
12 #if defined _MSC_VER && __ROS_VERSION == 0
13  if (m_wsastartup > 0)
14  {
15  WSACleanup();
16  m_wsastartup = 0;
17  }
18 #endif
19  }
20  void init()
21  {
22 #if defined _MSC_VER && __ROS_VERSION == 0
23  if (m_wsastartup == 0)
24  {
25  WSADATA wsaData;
26  WSAStartup(MAKEWORD(2, 2), &wsaData);
27  }
28 #endif
29  }
30 protected:
32 };
33 
35 
36 void wsa_init(void)
37 {
39 }
40 
WSA_AUTO_INIT::WSA_AUTO_INIT
WSA_AUTO_INIT()
Definition: wsa_init.cpp:9
WSA_AUTO_INIT::init
void init()
Definition: wsa_init.cpp:20
WSA_AUTO_INIT::m_wsastartup
int m_wsastartup
Definition: wsa_init.cpp:31
WSA_AUTO_INIT
Definition: wsa_init.cpp:6
wsa_init
void wsa_init(void)
Definition: wsa_init.cpp:36
WSA_AUTO_INIT::~WSA_AUTO_INIT
~WSA_AUTO_INIT()
Definition: wsa_init.cpp:10
s_wsa_auto_init_singleton
static WSA_AUTO_INIT s_wsa_auto_init_singleton
Definition: wsa_init.cpp:34


sick_scan_xd
Author(s): Michael Lehning , Jochen Sprickerhof , Martin Günther
autogenerated on Fri Oct 25 2024 02:47:13