Changed so that it works under windows.

This commit is contained in:
Juan Carlos Luciani 2006-04-28 18:56:00 +00:00
parent 3374e28a99
commit 492b8ee45c

View File

@ -30,7 +30,7 @@ extern "C"
//===[ Include files ]===================================================== //===[ Include files ]=====================================================
#include <micasa_types.h> //#include <micasa_types.h>
//===[ Type definitions ]================================================== //===[ Type definitions ]==================================================
@ -54,6 +54,7 @@ extern "C"
#define INOUT #define INOUT
#endif #endif
#ifndef WIN32
// //
// LIST_ENTRY Type // LIST_ENTRY Type
// Doubly linked list structure // Doubly linked list structure
@ -63,7 +64,7 @@ typedef struct _LIST_ENTRY
struct _LIST_ENTRY * volatile Flink; struct _LIST_ENTRY * volatile Flink;
struct _LIST_ENTRY * volatile Blink; struct _LIST_ENTRY * volatile Blink;
} LIST_ENTRY, *PLIST_ENTRY; } LIST_ENTRY, *PLIST_ENTRY;
#endif
//===[ Inlines functions ]=============================================== //===[ Inlines functions ]===============================================