From 492b8ee45c440ef88f3f648724e0a7eb33b734a9 Mon Sep 17 00:00:00 2001 From: Juan Carlos Luciani Date: Fri, 28 Apr 2006 18:56:00 +0000 Subject: [PATCH] Changed so that it works under windows. --- auth_token/include/list_entry.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/auth_token/include/list_entry.h b/auth_token/include/list_entry.h index 7d4adaac..f482b464 100644 --- a/auth_token/include/list_entry.h +++ b/auth_token/include/list_entry.h @@ -30,7 +30,7 @@ extern "C" //===[ Include files ]===================================================== -#include +//#include //===[ Type definitions ]================================================== @@ -54,6 +54,7 @@ extern "C" #define INOUT #endif +#ifndef WIN32 // // LIST_ENTRY Type // Doubly linked list structure @@ -63,7 +64,7 @@ typedef struct _LIST_ENTRY struct _LIST_ENTRY * volatile Flink; struct _LIST_ENTRY * volatile Blink; } LIST_ENTRY, *PLIST_ENTRY; - +#endif //===[ Inlines functions ]===============================================