aboutsummaryrefslogtreecommitdiff
path: root/plugin-img.h
diff options
context:
space:
mode:
authorIgor Pashev <pashev.igor@gmail.com>2022-11-10 15:39:19 +0200
committerIgor Pashev <pashev.igor@gmail.com>2022-11-10 15:39:19 +0200
commit19f0aa8025ddd0e164eef825f0a5987ada9f4b0f (patch)
tree0453e296fbbb4666a69833e463709c4a822b0116 /plugin-img.h
parent1c5ebd8c41727d61e4d5caded2e06ddb1ecd0e1d (diff)
downloadgimp-plugin-img-19f0aa8025ddd0e164eef825f0a5987ada9f4b0f.tar.gz
Format
Diffstat (limited to 'plugin-img.h')
-rw-r--r--plugin-img.h72
1 files changed, 36 insertions, 36 deletions
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 <libgimp/gimp.h>
-# include <libgimp/gimpui.h>
-# include <errno.h>
-# include <string.h>
-# include <glib/gstdio.h>
+#include <libgimp/gimp.h>
+#include <libgimp/gimpui.h>
+#include <errno.h>
+#include <string.h>
+#include <glib/gstdio.h>
-# 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