File: word6.h

package info (click to toggle)
word2x 1.5-2
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 228 kB
  • ctags: 326
  • sloc: cpp: 3,076; ansic: 350; makefile: 64
file content (37 lines) | stat: -rw-r--r-- 796 bytes parent folder | download | duplicates (4)
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