* include/richedit.h (SETTEXTEX): Define structure and
associated constants. (GT_SELECTION): Define GETTEXTEX flag constant.
This commit is contained in:
parent
0eccec28cc
commit
006351e561
|
@ -1,3 +1,9 @@
|
||||||
|
2005-07-20 Danny Smith <dannysmith@users.sourceforge.net>
|
||||||
|
|
||||||
|
* include/richedit.h (SETTEXTEX): Define structure and
|
||||||
|
associated constants.
|
||||||
|
(GT_SELECTION): Define GETTEXTEX flag constant.
|
||||||
|
|
||||||
2005-07-19 Danny Smith <dannysmith@users.sourceforge.net>
|
2005-07-19 Danny Smith <dannysmith@users.sourceforge.net>
|
||||||
|
|
||||||
* include/wingdi.h (SYSPAL_NOSTATIC256): Define.
|
* include/wingdi.h (SYSPAL_NOSTATIC256): Define.
|
||||||
|
|
|
@ -257,8 +257,6 @@ extern "C" {
|
||||||
#define TM_MULTILEVELUNDO 8
|
#define TM_MULTILEVELUNDO 8
|
||||||
#define TM_SINGLECODEPAGE 16
|
#define TM_SINGLECODEPAGE 16
|
||||||
#define TM_MULTICODEPAGE 32
|
#define TM_MULTICODEPAGE 32
|
||||||
#define GT_DEFAULT 0
|
|
||||||
#define GT_USECRLF 1
|
|
||||||
#define yHeightCharPtsMost 1638
|
#define yHeightCharPtsMost 1638
|
||||||
#define lDefaultTab 720
|
#define lDefaultTab 720
|
||||||
|
|
||||||
|
@ -478,6 +476,18 @@ typedef struct _gettextex {
|
||||||
LPCSTR lpDefaultChar;
|
LPCSTR lpDefaultChar;
|
||||||
LPBOOL lpUsedDefChar;
|
LPBOOL lpUsedDefChar;
|
||||||
} GETTEXTEX;
|
} GETTEXTEX;
|
||||||
|
/* GETTEXTEX flags */
|
||||||
|
#define GT_DEFAULT 0
|
||||||
|
#define GT_USECRLF 1
|
||||||
|
#define GT_SELECTION 2
|
||||||
|
typedef struct _settextex {
|
||||||
|
DWORD flags;
|
||||||
|
UINT codepage;
|
||||||
|
} SETTEXTEX;
|
||||||
|
/* SETTEXTEX flags */
|
||||||
|
#define ST_DEFAULT 0
|
||||||
|
#define ST_KEEPUNDO 1
|
||||||
|
#define ST_SELECTION 2
|
||||||
typedef LONG (*EDITWORDBREAKPROCEX)(char*,LONG,BYTE,INT);
|
typedef LONG (*EDITWORDBREAKPROCEX)(char*,LONG,BYTE,INT);
|
||||||
/* Defines for EM_SETTYPOGRAPHYOPTIONS */
|
/* Defines for EM_SETTYPOGRAPHYOPTIONS */
|
||||||
#define TO_ADVANCEDTYPOGRAPHY 1
|
#define TO_ADVANCEDTYPOGRAPHY 1
|
||||||
|
|
Loading…
Reference in New Issue