]> sourceware.org Git - newlib-cygwin.git/commitdiff
* include/richedit.h (SETTEXTEX): Define structure and
authorDanny Smith <dannysmith@users.sourceforge.net>
Wed, 20 Jul 2005 11:21:49 +0000 (11:21 +0000)
committerDanny Smith <dannysmith@users.sourceforge.net>
Wed, 20 Jul 2005 11:21:49 +0000 (11:21 +0000)
associated constants.
(GT_SELECTION): Define GETTEXTEX flag constant.

winsup/w32api/ChangeLog
winsup/w32api/include/richedit.h

index 7e308b07a49c1d2d4ce8111a909bfdb83f3c5bed..b69dfa7487382a213ead6409d24397005d536b7f 100644 (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.
index b534a352c0fb328407319c8e9d985afbb4f24957..8cb57e88e1f8f2a26b8029cb751ee0fb56c771fe 100644 (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
This page took 0.035544 seconds and 5 git commands to generate.