1 #include <exec/libraries.h>
2 #include <proto/exec.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
);
18 void _EXIT_5_WindowBase(void)
21 CloseLibrary(WindowBase
);