File: cmuwmraster.h

package info (click to toggle)
xloadimage 4.1-27
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,880 kB
  • sloc: ansic: 36,063; makefile: 306; asm: 284; sh: 144
file content (17 lines) | stat: -rw-r--r-- 314 bytes parent folder | download | duplicates (23)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* cmuwmraster.h
 *
 * this describes the header for ITC (CMU WM) raster files. It is
 * essentially a byte reversed Sun raster, 1 plane, no encoding.
 */

#include "copyright.h"

struct cmuwm_header
{
    byte magic[4];
    byte width[4];
    byte height[4];
    byte depth[2];
};

#define CMUWM_MAGIC 0xf10040bb