Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
p
q
r
s
t
u
v
w
x
y
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Enumerations
Enumerator
a
c
d
e
f
i
l
m
n
o
r
t
u
w
Classes
Class List
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
i
l
m
n
o
p
q
r
s
t
v
Enumerations
Enumerator
a
b
c
d
e
f
h
i
k
l
m
n
o
p
r
s
t
u
v
w
Related Functions
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
Functions
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
y
Variables
_
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
Typedefs
b
c
f
h
i
l
p
r
s
t
u
Enumerations
Enumerator
c
d
e
i
o
p
r
s
t
w
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
driver
src
tcp
wsa_init.cpp
Go to the documentation of this file.
1
2
#ifdef _MSC_VER
3
#include <WinSock2.h>
4
#endif
5
6
class
WSA_AUTO_INIT
7
{
8
public
:
9
WSA_AUTO_INIT
() :
m_wsastartup
(0) {}
10
~WSA_AUTO_INIT
()
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
:
31
int
m_wsastartup
;
32
};
33
34
static
WSA_AUTO_INIT
s_wsa_auto_init_singleton
;
35
36
void
wsa_init
(
void
)
37
{
38
s_wsa_auto_init_singleton
.
init
();
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