File: common.h

package info (click to toggle)
afterstep 2.2.12-19
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 33,168 kB
  • sloc: ansic: 201,695; sh: 5,894; xml: 3,721; makefile: 2,095; perl: 1,558; cpp: 811
file content (16 lines) | stat: -rw-r--r-- 530 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef AFTERIMAGE_COMMON_H_HEADER_INCLUDED
#define AFTERIMAGE_COMMON_H_HEADER_INCLUDED

extern Atom _XA_WM_DELETE_WINDOW;
Window create_top_level_window( ASVisual *asv, Window root, int x, int y,
	                            unsigned int width, unsigned int height,
								unsigned int border_width,
								unsigned long attr_mask,
								XSetWindowAttributes *attr,
								const char *app_class, const char *app_name );
Pixmap set_window_background_and_free( Window w, Pixmap p );

void wait_closedown( Window w );

#endif