From 49d9ff57e972dd99a4b4cdd9928497689ad08133 Mon Sep 17 00:00:00 2001 From: Stefan Ginsberg Date: Sun, 16 Aug 2009 12:42:18 +0000 Subject: [PATCH] - Fix ntstrsafe.h's dependency on debug.h svn path=/trunk/; revision=42733 --- reactos/include/ddk/ntstrsafe.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/reactos/include/ddk/ntstrsafe.h b/reactos/include/ddk/ntstrsafe.h index 688614246ba..8bb4d141235 100644 --- a/reactos/include/ddk/ntstrsafe.h +++ b/reactos/include/ddk/ntstrsafe.h @@ -31,6 +31,10 @@ // typedef unsigned long DWORD; +#ifndef UNIMPLEMENTED +#define UNIMPLEMENTED DbgPrint("WARNING: %s at %s:%d is UNIMPLEMENTED!\n",__FUNCTION__,__FILE__,__LINE__); +#endif + /* PRIVATE FUNCTIONS *********************************************************/ FORCEINLINE -- 2.17.1