From 19f0aa8025ddd0e164eef825f0a5987ada9f4b0f Mon Sep 17 00:00:00 2001 From: Igor Pashev Date: Thu, 10 Nov 2022 15:39:19 +0200 Subject: Format --- plugin-img.h | 72 ++++++++++++++++++++++++++++++------------------------------ 1 file changed, 36 insertions(+), 36 deletions(-) (limited to 'plugin-img.h') diff --git a/plugin-img.h b/plugin-img.h index 8523a79..fafccf6 100644 --- a/plugin-img.h +++ b/plugin-img.h @@ -1,37 +1,37 @@ #ifndef __IMG_H__ -# define __IMG_H__ +#define __IMG_H__ -# include -# include -# include -# include -# include +#include +#include +#include +#include +#include -# define LOAD_PROC "file-img-load" -# define SAVE_PROC "file-img-save" -# define PLUG_IN_BINARY "file-img" +#define LOAD_PROC "file-img-load" +#define SAVE_PROC "file-img-save" +#define PLUG_IN_BINARY "file-img" /* Comment out to disable debug */ -# define DEBUG +#define DEBUG -# ifdef DEBUG -# define __DEBUG(x) {x} -# define D(x) \ +#ifdef DEBUG +#define __DEBUG(x) {x} +#define D(x) \ { \ printf("IMG plugin: "); \ printf x; \ } -# else -# define __DEBUG(x) -# define D(x) -# endif +#else +#define __DEBUG(x) +#define D(x) +#endif /* FIXME: MIME type for these files */ -# define IMG_MIME "image/x-img" +#define IMG_MIME "image/x-img" -# define FMT_RGB565 0 -# define FMT_RGB 1 -# define FMT_RGBA 2 +#define FMT_RGB565 0 +#define FMT_RGB 1 +#define FMT_RGBA 2 extern const gchar *FMT[3]; @@ -49,25 +49,25 @@ extern const gchar *FMT[3]; /* ACHTUNG: byte order in the file is LITTLE-ENDIAN - lowest byte comes first */ typedef struct _FileHeader { - guint8 fmt; /* 0 - RGB565, 1 - RGB, 2 - RGBA) */ + guint8 fmt; /* 0 - RGB565, 1 - RGB, 2 - RGBA) */ - /* - * ACHTUNG: do not align, or else sizeof(ftm)==4: __attribute__ ((packed)) - */ - guint32 nrows __attribute__ ((packed)); /* Number of rows of frames */ - guint32 ncols __attribute__ ((packed)); /* Number of columns of frames */ + /* + * ACHTUNG: do not align, or else sizeof(ftm)==4: __attribute__ ((packed)) + */ + guint32 nrows __attribute__((packed)); /* Number of rows of frames */ + guint32 ncols __attribute__((packed)); /* Number of columns of frames */ - guint32 width __attribute__ ((packed)); /* Image width (total) */ - guint32 height __attribute__ ((packed)); /* Image height (total) */ + guint32 width __attribute__((packed)); /* Image width (total) */ + guint32 height __attribute__((packed)); /* Image height (total) */ } FileHeader; typedef struct _ColorKey { - guint8 is; /* 0 - no color key, otherwise is one */ - guint8 R __attribute__ ((packed)); - guint8 G __attribute__ ((packed)); - guint8 B __attribute__ ((packed)); + guint8 is; /* 0 - no color key, otherwise is one */ + guint8 R __attribute__((packed)); + guint8 G __attribute__((packed)); + guint8 B __attribute__((packed)); } ColorKey; @@ -75,11 +75,11 @@ typedef struct _ColorKey * for each image LOADED image or for plugin defaults * * */ -# define PARASITE_ORIG_FILE "orig-file-info" +#define PARASITE_ORIG_FILE "orig-file-info" typedef struct _ImageParasite { - guint32 format; - ColorKey ckey; + guint32 format; + ColorKey ckey; } ImageParasite; #endif -- cgit v1.2.3