blob: 5dd17238e7cc593cb5470800023d67eb94c2c381 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
/* $Id: word6.h,v 1.4 1997/03/31 22:29:32 dps Exp $ */
/* Word 6 constants */
/* Written without knowledge of for internals, just some test documents */
#ifndef __word6_h__
#define __word6_h__
/* Registry of stuff stopped inside ^S...^U
* tc "foo bar"
* EMBED MSDraw \* mergeformat^T^A
*/
#define START_CTL ('S'-64)
#define END_CTL ('U'-64)
/* ^G seems to seperate table columns */
/* ^G^G=End of row */
/* ^G^G^G !=End of table */
#define TABLE_SEP ('G'-64)
/* End of paragraph */
#define PAR_END ('M'-64)
#define HARD_RETURN ('K'-64)
/* Stuff I am still not aware about */
/* Headers, footers, EMBEDed stuff, pictures, ... */
#define NEW_PAGE ('L'-64)
#define FOOTNOTE ('B'-64)
/* Useful data start offset */
#define DOC_START 06400
/* Bullet */
#define BULLET_CODE 0x95
#endif
|