blob: daf47bc559e31b6500ee4103c4560019bdc52e0f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef _SDALAYERPRIVATE_H_
#define _SDALAYERPRIVATE_H_
struct _SDALayerPrivate {
gboolean visible;
gint offset_x, offset_y;
gint z_index;
SDALayerDrawFunc draw_func;
gpointer user_data;
};
struct _SDALayer {
GObject object;
SDALayerPrivate *priv;
};
#endif
|