fix function to take the hook param
[AROS.git] / workbench / libs / gl / gl_intern.h
blob96384cf34804d08bc39aa67ef2bf3f947be81bc1
1 /*
2 Copyright 2015, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #ifndef GL_INTERN_H
7 #define GL_INTERN_H
9 #ifndef EXEC_LIBRARIES_H
10 # include <exec/libraries.h>
11 #endif
13 #ifndef PROTO_EXEC_H
14 # include <proto/exec.h>
15 #endif
17 #ifndef EXEC_SEMAPHORES_H
18 # include <exec/semaphores.h>
19 #endif
21 #include <dos/notify.h>
23 #include "gl_libdefs.h"
25 struct LIBBASE
27 struct Library glb_Lib;
28 struct Library *glb_DOS;
29 struct SignalSemaphore glb_Sem;
30 struct NotifyRequest glb_Notify;
31 char *glb_GLImpl;
34 #define GLB(lb) ((struct LIBBASE *)lb)
36 #endif /* GL_INTERN_H */