Files
wmaker/bazel/wmaker/pixmap/interface.h
T
trurl 3f9b61fa9d Factor //wmaker/pixmap into a distinct lib.
Start factoring out //wmaker/screen. with interface decls needed by
//wmaker/pixmap.
2025-02-09 17:38:33 -05:00

19 lines
545 B
C

#ifndef WMPIXMAP_INTERFACE_H_
#define WMPIXMAP_INTERFACE_H_
#include "wrlib/wraster.h"
typedef struct WPixmap {
Pixmap image; /* icon image */
Pixmap mask; /* icon mask */
int width, height; /* size of pixmap */
int depth; /* depth of pixmap */
unsigned int shared:1; /* if pixmaps should be kept
* when structure is freed */
unsigned int client_owned:1;
unsigned int client_owned_mask:1;
} WPixmap;
#endif // WMPIXMAP_INTERFACE_H_