2017-09-10 01:24:17 +00:00
|
|
|
/*
|
|
|
|
* images.h
|
2017-09-10 01:24:24 +00:00
|
|
|
*
|
2017-09-10 01:24:17 +00:00
|
|
|
* (c) 1998-2004 Alexey Vyskubov <alexey@mawhrin.net>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef IMAGES_H
|
|
|
|
#define IMAGES_H
|
|
|
|
|
|
|
|
int get_width();
|
|
|
|
int get_height();
|
|
|
|
void read_images(Display *dpy);
|
|
|
|
char *get_me_name(int);
|
|
|
|
|
|
|
|
//extern XImage *stupid_picture[5]; /* Icons for fookb */
|
|
|
|
|
|
|
|
void update_window(Window, GC, unsigned int, Display *);
|
|
|
|
#endif /* IMAGES_H */
|