blob: d00dc5c919124cdee6f8b9b2c1d8da2b20fb1927 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*=============================================================================
macp.h
===============================================================================
Information about MacPaint files
=============================================================================*/
#ifndef MACP_H_INCLUDED
#define MACP_H_INCLUDED
#define MACBIN_HEAD_LEN 128
#define MACP_HEAD_LEN 512
#define MACP_ROWS 720
#define MACP_COLCHARS 72
#define MACP_COLS ((MACP_COLCHARS) * 8)
#define MACP_BYTES ((MACP_COLCHARS) * (MACP_ROWS))
#endif
|