Stricter file handling when following Read statements (fvwm-convert-2.6).
[fvwm.git] / libs / ClientMsg.h
blobab221af81bf42e454b7087e54f0ed3748e6f38f7
1 /* -*-c-*- */
3 /*
4 * ICCCM Client Messages - Section 4.2.8 of the ICCCM dictates that all
5 * client messages will have the following form:
7 * event type ClientMessage
8 * message type _XA_WM_PROTOCOLS
9 * window tmp->w
10 * format 32
11 * data[0] message atom
12 * data[1] time stamp
14 #include <X11/Xlib.h>
15 #include <X11/Xatom.h>
16 #include <X11/Xutil.h>
18 void send_clientmessage(Display *disp, Window w, Atom a, Time timestamp);
20 extern Atom _XA_WM_PROTOCOLS;