mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-06 13:01:21 +00:00
1cc9d13ccf
Files moved but not modified. Changes to follow in a subsequent commit. You down with CPP? git-svn-id: https://svn.eduke32.com/eduke32@6055 1a8010ca-5511-0410-912e-c29ae57300e0
24 lines
389 B
C
24 lines
389 B
C
#include <gdk-pixbuf/gdk-pixdata.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct _EDuke32_GdkPixdata EDuke32_GdkPixdata;
|
|
struct _EDuke32_GdkPixdata
|
|
{
|
|
guint32 magic;
|
|
gint32 length;
|
|
guint32 pixdata_type;
|
|
guint32 rowstride;
|
|
guint32 width;
|
|
guint32 height;
|
|
const char *pixel_data;
|
|
};
|
|
|
|
extern const EDuke32_GdkPixdata startbanner_pixdata;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|