* include/richedit.h (SETTEXTEX): Define structure and

associated constants.
	(GT_SELECTION): Define GETTEXTEX flag constant.
This commit is contained in:
Danny Smith 2005-07-20 11:21:49 +00:00
parent 0eccec28cc
commit 006351e561
2 changed files with 18 additions and 2 deletions

View File

@ -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>
* include/wingdi.h (SYSPAL_NOSTATIC256): Define.

View File

@ -257,8 +257,6 @@ extern "C" {
#define TM_MULTILEVELUNDO 8
#define TM_SINGLECODEPAGE 16
#define TM_MULTICODEPAGE 32
#define GT_DEFAULT 0
#define GT_USECRLF 1
#define yHeightCharPtsMost 1638
#define lDefaultTab 720
@ -478,6 +476,18 @@ typedef struct _gettextex {
LPCSTR lpDefaultChar;
LPBOOL lpUsedDefChar;
} 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);
/* Defines for EM_SETTYPOGRAPHYOPTIONS */
#define TO_ADVANCEDTYPOGRAPHY 1