forked from vitrine/wmaker
Start factoring out //wmaker/screen. with interface decls needed by //wmaker/pixmap.
19 lines
545 B
C
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_
|