diff options
author | Torrey Lyons <torrey@mrcla.com> | 2004-07-27 20:26:47 +0000 |
---|---|---|
committer | Torrey Lyons <torrey@mrcla.com> | 2004-07-27 20:26:47 +0000 |
commit | 1498414cc85c148ef15b9b57d9f9b6b850bf2702 (patch) | |
tree | 23ed5b1a20b1a20b75a0e802a8e37508a92788c2 /Xprint | |
parent | ddd58356123f61b863754eb0bdd42a8defa0461b (diff) |
Fix Xprint build on Darwin.
Diffstat (limited to 'Xprint')
-rw-r--r-- | Xprint/ddxInit.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Xprint/ddxInit.c b/Xprint/ddxInit.c index 3ed864b1a..54f9b611a 100644 --- a/Xprint/ddxInit.c +++ b/Xprint/ddxInit.c @@ -197,10 +197,26 @@ ProcessInputEvents(void) } #ifdef __DARWIN__ +#include "micmap.h" + +void GlxExtensionInit(void); +void GlxWrapInitVisuals(miInitVisualsProcPtr *procPtr); + void DarwinHandleGUI(int argc, char *argv[]) { } + +void DarwinGlxExtensionInit(void) +{ + GlxExtensionInit(); +} + +void DarwinGlxWrapInitVisuals( + miInitVisualsProcPtr *procPtr) +{ + GlxWrapInitVisuals(procPtr); +} #endif #ifdef DDXOSINIT |