You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// C:\Program Files (x86)\Windows Kits\10\Include\10.0.17134.0\um\WinBase.h, line 94
47
49
#region GetCurrentTime macro
48
-
// TODO: #define GetCurrentTime() GetTickCount()
50
+
/// <inheritdoc cref="GetTickCount"/>
51
+
[Obsolete("GetCurrentTime overflows roughly every 49 days. Code that does not take that into account can loop indefinitely. "+nameof(GetTickCount64)+" operates on 64 bit values and does not have that problem.")]
52
+
publicstaticuintGetCurrentTime()=>GetTickCount();
53
+
#endregion
54
+
// C:\Program Files (x86)\Windows Kits\10\Include\10.0.17134.0\um\WinBase.h, line 102
55
+
#region Yield macro
56
+
publicstaticvoidYield(){}
49
57
#endregion
50
58
// C:\Program Files (x86)\Windows Kits\10\Include\10.0.17134.0\um\WinBase.h, line 116
0 commit comments