about summary refs log tree commit diff
path: root/converter/pbm/cmuwm.h
blob: e667f25e575e9df19443d74a8f2c1e2f713d06b9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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