mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
420 B
19 lines
420 B
#include "cabinet.h"
|
|
|
|
|
|
// BUGBUG - BobDay - USER32 needs to implement this.
|
|
//normally: ChangeDisplaySettings (mapped in cabinet.h)
|
|
LONG WINAPI NoThkChangeDisplaySettings(
|
|
LPDEVMODE lpdv,
|
|
DWORD dwFlags
|
|
) {
|
|
return 0x12345678; // Non-zero is error condition
|
|
}
|
|
|
|
// BUGBUG - BobDay - KERNEL32 needs to export this.
|
|
BOOL WINAPI SetSystemPowerState(
|
|
BOOL fSuspend,
|
|
BOOL fForce
|
|
) {
|
|
return FALSE;
|
|
}
|