mirror of
https://github.com/jmarshall23/msword.git
synced 2026-08-12 08:01:05 +02:00
8932607951
Fixed numerous display issues. Fixed numerous windows messaging issues.
23 lines
616 B
Haskell
23 lines
616 B
Haskell
#pragma once
|
|
|
|
/* Compile contract reconstructed from Opus/dlg/hyphen.des. */
|
|
#define tmcHypAt (tmcUserMin + 0)
|
|
#define tmcHypText (tmcUserMin + 1)
|
|
#define tmcHypCaps (tmcUserMin + 2)
|
|
#define tmcHypConfirm (tmcUserMin + 3)
|
|
#define tmcHypHotZ (tmcUserMin + 4)
|
|
#define tmcHypChange (tmcUserMin + 5)
|
|
#define tmcHypNoChange (tmcUserMin + 6)
|
|
|
|
typedef struct _CABHYPHEN
|
|
{
|
|
CABH cabh;
|
|
WORD sab;
|
|
CHAR **hszHypHotZ;
|
|
BOOL fHypCaps;
|
|
BOOL fHypConfirm;
|
|
} CABHYPHEN;
|
|
|
|
typedef CABHYPHEN **HCABHYPHEN;
|
|
#define cabiCABHYPHEN Cabi((sizeof(CABHYPHEN) + sizeof(WORD) - 1) / sizeof(WORD), 1)
|