3caa3c0871
target files git-svn-id: svn://svn.rockbox.org/rockbox/trunk@282 a1c6a512-1295-4272-9138-f99709370657
14 lines
361 B
C
14 lines
361 B
C
/* This file contains compatibility routines for systems without Xmu.
|
|
* You would be better served by installing Xmu on your machine or
|
|
* yelling at your vendor to ship it.
|
|
*/
|
|
|
|
#ifndef __XMU_H__
|
|
#define __XMU_H__
|
|
|
|
#include <X11/Xlib.h>
|
|
#include <stdio.h>
|
|
|
|
int XmuPrintDefaultErrorMessage (Display *dpy, XErrorEvent *event, FILE *fp);
|
|
|
|
#endif /* __XMU_H__ */
|