summaryrefslogtreecommitdiff
path: root/gdk/gdktypes.h
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2020-05-26 19:45:01 -0400
committerMatthias Clasen <mclasen@redhat.com>2020-05-26 19:45:01 -0400
commite14322137f583af47dd0256b45cee39e4cf118be (patch)
tree590f20e2f70dc1017025302a8144d384e9eff3cb /gdk/gdktypes.h
parentf27d855c688ef73dce0c8183abaa514543f26554 (diff)
downloadgtk+-e14322137f583af47dd0256b45cee39e4cf118be.tar.gz
gdk: Drop the GdkByteOrder enum
Move it to the private gdkvisual-x11.h header, which is the only place where its used.
Diffstat (limited to 'gdk/gdktypes.h')
-rw-r--r--gdk/gdktypes.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/gdk/gdktypes.h b/gdk/gdktypes.h
index f05456d366..1fed3ac8ca 100644
--- a/gdk/gdktypes.h
+++ b/gdk/gdktypes.h
@@ -159,24 +159,6 @@ typedef enum
GDK_GRAVITY_STATIC
} GdkGravity;
-/**
- * GdkByteOrder:
- * @GDK_LSB_FIRST: The values are stored with the least-significant byte
- * first. For instance, the 32-bit value 0xffeecc would be stored
- * in memory as 0xcc, 0xee, 0xff, 0x00.
- * @GDK_MSB_FIRST: The values are stored with the most-significant byte
- * first. For instance, the 32-bit value 0xffeecc would be stored
- * in memory as 0x00, 0xff, 0xee, 0xcc.
- *
- * A set of values describing the possible byte-orders
- * for storing pixel values in memory.
- */
-typedef enum
-{
- GDK_LSB_FIRST,
- GDK_MSB_FIRST
-} GdkByteOrder;
-
/* Types of modifiers.
*/
/**