File: cmuwmraster.h

package info (click to toggle)
xloadimage 4.1-3
  • links: PTS
  • area: main
  • in suites: hamm, slink
  • size: 2,580 kB
  • ctags: 3,902
  • sloc: ansic: 35,724; makefile: 410; asm: 284; sh: 107
file content (17 lines) | stat: -rw-r--r-- 314 bytes parent folder | download | duplicates (20)
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