Home | History | Annotate | Download | only in os2

Lines Matching refs:handle

38     HMODULE handle = NULL;
40 APIRET ulrc = DosLoadModule(buf, sizeof (buf), (char *) sofile, &handle);
43 if ((ulrc != NO_ERROR) || (handle == NULL))
46 return((void *) handle);
49 void *SDL_LoadFunction(void *handle, const char *name)
53 APIRET ulrc = DosQueryProcAddr((HMODULE)handle, 0, (char *)name, &symbol);
55 loaderror = "Invalid module handle";
65 void SDL_UnloadObject(void *handle)
67 if ( handle != NULL )
68 DosFreeModule((HMODULE) handle);