Stroika Library 3.0d16
 
Loading...
Searching...
No Matches
WaitSupport.inl
1/*
2 * Copyright(c) Sophist Solutions, Inc. 1990-2025. All rights reserved
3 */
4
6
7 inline DWORD Duration2Milliseconds (Time::DurationSeconds nSeconds)
8 {
9 return (nSeconds.count () > numeric_limits<DWORD>::max () / 2) ? INFINITE : static_cast<DWORD> (nSeconds.count () * 1000);
10 }
11
12}