You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
863 B
18 lines
863 B
|
27 years ago
|
/*******************************************************************************
|
||
|
|
* xutils.h: X11 utilities
|
||
|
|
* (c)1999 VideoLAN
|
||
|
|
*******************************************************************************
|
||
|
|
* This library includes many usefull functions to perform simple operations
|
||
|
|
* using Xlib.
|
||
|
|
*******************************************************************************
|
||
|
|
* Required headers:
|
||
|
|
* <X11/Xlib.h>
|
||
|
|
*******************************************************************************/
|
||
|
|
|
||
|
|
/*******************************************************************************
|
||
|
|
* Prototypes
|
||
|
|
*******************************************************************************/
|
||
|
|
int XTryLoadFont( Display *p_display, char *psz_font, XFontStruct **p_font );
|
||
|
|
void XEnableScreenSaver( Display *p_display );
|
||
|
|
void XDisableScreenSaver( Display *p_display );
|