mirror of
https://github.com/jmarshall23/msword.git
synced 2026-08-11 23:50:53 +02:00
8932607951
Fixed numerous display issues. Fixed numerous windows messaging issues.
20 lines
525 B
Haskell
20 lines
525 B
Haskell
#pragma once
|
|
|
|
/* Compile contract generated from Opus/dlg/footnote.des. */
|
|
#define tmcFAuto (tmcUserMin + 0)
|
|
#define tmcRefMark (tmcUserMin + 1)
|
|
#define tmcSeparator (tmcUserMin + 2)
|
|
#define tmcContSeparator (tmcUserMin + 3)
|
|
#define tmcNoticeSeparator (tmcUserMin + 4)
|
|
|
|
typedef struct _CABINSERTFTN
|
|
{
|
|
CABH cabh;
|
|
WORD sab;
|
|
CHAR **hstRef;
|
|
BOOL fAuto;
|
|
} CABINSERTFTN;
|
|
|
|
typedef CABINSERTFTN **HCABINSERTFTN;
|
|
#define cabiCABINSERTFTN Cabi((sizeof(CABINSERTFTN) + sizeof(WORD) - 1) / sizeof(WORD), 1)
|