97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
extern struct ExecIFace *IExec;
static struct Library *DOSBase = NULL;
static struct DOSIFace *IDOS = NULL;
OF_DESTRUCTOR()
{
if (IDOS != NULL)
DropInterface(IDOS);
if (DOSBase != NULL)
CloseLibrary(DOSBase);
}
#endif
#if defined(OF_HAVE_THREADS)
|
|
|
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
extern struct ExecIFace *IExec;
static struct Library *DOSBase = NULL;
static struct DOSIFace *IDOS = NULL;
OF_DESTRUCTOR()
{
if (IDOS != NULL)
DropInterface((struct Interface *)IDOS);
if (DOSBase != NULL)
CloseLibrary(DOSBase);
}
#endif
#if defined(OF_HAVE_THREADS)
|