add and evil app context hack.

This commit is contained in:
ramiro%netscape.com 1999-07-20 10:46:18 +00:00
Родитель 79cfbbe456
Коммит 7b386dc1b6
2 изменённых файлов: 27 добавлений и 0 удалений

Просмотреть файл

@ -3451,3 +3451,27 @@ xlib_rgb_get_screen (void)
return NULL;
}
static void * _app_context = 0;
void
xlib_set_xt_app_context(void * app_context)
{
if (_app_context != NULL)
{
abort();
}
_app_context = app_context;
}
void *
xlib_get_xt_app_context()
{
if (_app_context == NULL)
{
abort();
}
return _app_context;
}

Просмотреть файл

@ -183,6 +183,9 @@ xlib_rgb_get_display (void);
Screen *
xlib_rgb_get_screen (void);
extern void
xlib_set_xt_app_context(void * app_context);
#ifdef __cplusplus
}
#endif /* __cplusplus */