Stroika Library
3.0d16
Help-Home
Loading...
Searching...
No Matches
WinSock.inl
1
/*
2
* Copyright(c) Sophist Solutions, Inc. 1990-2025. All rights reserved
3
*/
4
#include "
Stroika/Foundation/Debug/Assertions.h
"
5
6
namespace
Stroika::Foundation::IO::Network::Platform::Windows {
7
8
/*
9
********************************************************************************
10
************************ Network::Platform::Windows::WinSock *******************
11
********************************************************************************
12
*/
13
inline
void
WinSock::NoteExternallyStarted ()
14
{
15
Require (not sStarted_);
16
sStarted_ =
true
;
17
}
18
inline
bool
WinSock::IsStarted ()
19
{
20
return
sStarted_;
21
}
22
inline
void
WinSock::AssureStarted ()
23
{
24
if
(not sStarted_) {
25
ForceStartup ();
26
}
27
}
28
29
}
Assertions.h
Library
Sources
Stroika
Foundation
IO
Network
Platform
Windows
WinSock.inl
Generated by
1.9.8