1 #include <proto/exec.h>
2 #include <proto/vega.h>
3 #include <aros/symbolsets.h>
7 struct Library
* VegaBase
= NULL
;
9 PUBLIC
struct st_api
* vg_api_get(void)
12 VegaBase
= OpenLibrary("vega.library", 0L);
15 return (struct st_api
*) GetOpenVGStateTrackerApi();
20 static VOID
CloseVega()
23 CloseLibrary(VegaBase
);
26 ADD2EXPUNGELIB(CloseVega
, 5)