Sophie

Sophie

distrib > Mandriva > 8.2 > i586 > media > contrib > by-pkgid > 6eba807cde0901ccac25e04745f685eb > files > 147

xview-devel-examples-3.2p1.4-8mdk.i586.rpm

#include "bitmap.h"

typedef struct {
    Xv_object   public_self;    /* pointer back to self */
    GC          gc;             /* GC to render logo */
    Pixmap      bitmap;
    int         width, height;  /* ...of pixmap */
} Bitmap_private;

#define BITMAP_PUBLIC(item)  XV_PUBLIC(item)
#define BITMAP_PRIVATE(item) \
    XV_PRIVATE(Bitmap_private, Bitmap_public, item)