Files
msword/src/port/original/hyphen.hs
T
Justin Marshall 8932607951 Fixed memory alignment bugs.
Fixed numerous display issues.
Fixed numerous windows messaging issues.
2026-08-06 10:50:51 -07:00

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)