diff options
author | Danny Smith <dannysmith@users.sourceforge.net> | 2002-03-13 20:00:16 +0000 |
---|---|---|
committer | Danny Smith <dannysmith@users.sourceforge.net> | 2002-03-13 20:00:16 +0000 |
commit | 5289f34254d5ca894cb0ccf6a0834b4d0a5f1e58 (patch) | |
tree | 3b2acbf059a954f951e5469b8e1bd2416bccca2c /winsup/w32api/include/richedit.h | |
parent | 73ea29f42ce627a42e646c1256b2dd31b51a0afc (diff) | |
download | cygnal-5289f34254d5ca894cb0ccf6a0834b4d0a5f1e58.tar.gz cygnal-5289f34254d5ca894cb0ccf6a0834b4d0a5f1e58.tar.bz2 cygnal-5289f34254d5ca894cb0ccf6a0834b4d0a5f1e58.zip |
* include/richedit.h (RICHEDIT_CLASS): UNICODE it.
* include/shlobj.h (IContextMenu2): Put methods in right order.
* include/basetyps.h (REFGUID, REFIID, REFCLSID): Check for
CINTERFACE before defining.
Diffstat (limited to 'winsup/w32api/include/richedit.h')
-rw-r--r-- | winsup/w32api/include/richedit.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/winsup/w32api/include/richedit.h b/winsup/w32api/include/richedit.h index bafc1e2a8..58acceaf5 100644 --- a/winsup/w32api/include/richedit.h +++ b/winsup/w32api/include/richedit.h @@ -9,7 +9,11 @@ extern "C" { #endif #pragma pack(push,4) +#ifdef UNICODE +#define RICHEDIT_CLASS L"RichEdit20W" +#else #define RICHEDIT_CLASS "RichEdit20A" +#endif #define CF_RTF TEXT("Rich Text Format") #define CF_RTFNOOBJS TEXT("Rich Text Format Without Objects") #define CF_RETEXTOBJ TEXT("RichEdit Text and Objects") |