about summary refs log tree commit diff
path: root/converter/pbm/cmuwm.h
diff options
context:
space:
mode:
Diffstat (limited to 'converter/pbm/cmuwm.h')
-rw-r--r--converter/pbm/cmuwm.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/converter/pbm/cmuwm.h b/converter/pbm/cmuwm.h
new file mode 100644
index 00000000..e667f25e
--- /dev/null
+++ b/converter/pbm/cmuwm.h
@@ -0,0 +1,17 @@
+/* cmuwm.h - definitions for the CMU window manager format
+*/
+
+#ifndef CMUWM_H_INCLUDED
+#define CMUWM_H_INCLUDED
+
+struct cmuwm_header
+    {
+    long magic;
+    long width;
+    long height;
+    short depth;
+    };
+
+#define CMUWM_MAGIC 0xf10040bbL
+
+#endif