Enhanced SetThreadExecutionState stub.

diff --git a/include/winnt.h b/include/winnt.h
index 44459a3..46b6c33 100644
--- a/include/winnt.h
+++ b/include/winnt.h
@@ -544,6 +544,12 @@
 #define PF_RDTSC_INSTRUCTION_AVAILABLE		8
 
 
+/* Execution state flags */
+#define ES_SYSTEM_REQUIRED    0x00000001
+#define ES_DISPLAY_REQUIRED   0x00000002
+#define ES_USER_PRESENT       0x00000004
+#define ES_CONTINUOUS         0x80000000
+
 /* The Win32 register context */
 
 /* CONTEXT is the CPU-dependent context; it should be used        */
diff --git a/scheduler/thread.c b/scheduler/thread.c
index 5475e43..9bc1f64 100644
--- a/scheduler/thread.c
+++ b/scheduler/thread.c
@@ -767,8 +767,8 @@
  */ 
 EXECUTION_STATE WINAPI SetThreadExecutionState(EXECUTION_STATE flags)
 {
-    FIXME("(%ld): stub\n", flags);
-    return 0;
+    FIXME("(0x%lx): stub\n", flags);
+    return ES_SYSTEM_REQUIRED|ES_DISPLAY_REQUIRED|ES_USER_PRESENT;
 }