How can I tell Windows XP to switch to standby mode programmatically with C/C++ native code?
Seems this call has been superseded by SetSuspendState
Elemental
2010-07-21 19:20:28
+3
A:
A likely function in the Win32 API is SetSuspendState
:
SetSuspendState(TRUE, FALSE, FALSE);
From: http://msdn.microsoft.com/en-us/library/aa373201(VS.85).aspx
mattbasta
2010-07-21 18:09:47