From dd221de7091e04f79a84953afb1cfa919a6f22f7 Mon Sep 17 00:00:00 2001 From: Johannes Anderwald Date: Tue, 6 Jun 2006 22:54:18 +0000 Subject: [PATCH] small compilation fix svn path=/trunk/; revision=22256 --- reactos/include/powrprof.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/reactos/include/powrprof.h b/reactos/include/powrprof.h index c5f07cd0f4c..89df29feefb 100644 --- a/reactos/include/powrprof.h +++ b/reactos/include/powrprof.h @@ -16,7 +16,10 @@ extern "C" { #define NEWSCHEME (UINT)-1 #ifndef RC_INVOKED -#include /* for NTSTATUS */ +#ifndef NTSTATUS +typedef LONG NTSTATUS, *PNTSTATUS; +#endif + typedef struct _GLOBAL_MACHINE_POWER_POLICY{ ULONG Revision; SYSTEM_POWER_STATE LidOpenWakeAc;