From 45b01c6033a49183b9d7b22f7fc58484897edd48 Mon Sep 17 00:00:00 2001 From: dos-reis Date: Wed, 28 May 2008 07:01:18 +0000 Subject: * include/open-axiom.h (openaxiom_handle): New datatype. * hyper/node.h [!X_DISPLAY_MISSING]: Use it. --- src/include/open-axiom.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/include') diff --git a/src/include/open-axiom.h b/src/include/open-axiom.h index e2c545a7..1ae28921 100644 --- a/src/include/open-axiom.h +++ b/src/include/open-axiom.h @@ -34,6 +34,8 @@ #ifndef OPENAXIOM_included #define OPENAXIOM_included +#include "openaxiom-c-macros.h" + /* Cope with MS-platform oddities. */ #ifdef __MINGW32__ # ifdef DLL_EXPORT @@ -53,4 +55,11 @@ #endif typedef uint8_t openaxiom_byte; +/* The opaque datatype. */ +#ifdef __MINGW32__ +typedef HANDLE openaxiom_handle; +#else +typedef void* openaxiom_handle; +#endif + #endif /* OPENAXIOM_included */ -- cgit v1.2.3