Check for SYS/GL during library init. Reason is that
[AROS.git] / workbench / devs / diskimage / raauto / window_autoopenlib.c
blob4167f04185dc43f37fcd26b6107217c44c78bce9
1 #include <exec/libraries.h>
2 #include <proto/exec.h>
3 #include <stdlib.h>
4 #include "raauto_alerts.h"
6 static CONST TEXT class_name[] = "window.class";
7 struct Library * WindowBase = 0;
8 extern unsigned long _WindowBaseVer;
10 void _INIT_5_WindowBase(void)
12 if(!(WindowBase = OpenLibrary(class_name, _WindowBaseVer))) {
13 RAAutoClassNotFound(class_name);
14 exit(EXIT_FAILURE);
18 void _EXIT_5_WindowBase(void)
20 if(WindowBase)
21 CloseLibrary(WindowBase);