cvsimport
[fvwm.git] / modules / FvwmDragWell / cursorStuff.h
blob3735cdd2786281fa44ac47e7b9f5dceedb9c2f83
1 /* -*-c-*- */
2 #ifndef _CURSOR_STUFF_H
3 #define _CURSOR_STUFF_H
5 #include <X11/Xlib.h>
7 /* copied and modified from Paul Sheer's xdndv2 library.*/
8 typedef struct XdndCursorStruct {
9 int w;
10 int h;
11 int x;
12 int y; /*width,height,x offset, y offset*/
13 unsigned char *imageData, *maskData; /*Used for initialization*/
14 char *actionStr; /*Action string the cursor is associated with.*/
15 Atom action; /*Action the cursor is associated with.*/
16 Cursor cursor; /*The actual cursor*/
17 } XdndCursor;
19 #endif