2002-07-25 Mattia Barbon <mbarbon@dsi.unive.it>
* include/commctrl.h: Avoid redefinition of CDN_FIRST/LAST. * include/commdlg.h: Likewise.
This commit is contained in:
parent
53b5bff780
commit
b0054da2c0
|
@ -1,3 +1,8 @@
|
|||
2002-07-25 Mattia Barbon <mbarbon@dsi.unive.it>
|
||||
|
||||
* include/commctrl.h: Avoid redefinition of CDN_FIRST/LAST.
|
||||
* include/commdlg.h: Likewise.
|
||||
|
||||
2002-07-24 Danny Smith <dannysmith@users.sourceforge.net>
|
||||
|
||||
* include/oleauto.h (V_UNION): Correct definition for case of
|
||||
|
|
|
@ -167,8 +167,10 @@ extern "C" {
|
|||
#define TTN_LAST ((UINT)-549)
|
||||
#define TCN_FIRST ((UINT)-550)
|
||||
#define TCN_LAST ((UINT)-580)
|
||||
#define CDN_FIRST ((UINT)-601)
|
||||
#ifndef CDN_FIRST
|
||||
#define CDN_FIRST ((UINT)-601) /* also in commdlg.h */
|
||||
#define CDN_LAST ((UINT)-699)
|
||||
#endif
|
||||
#define TBN_FIRST ((UINT)-700)
|
||||
#define TBN_LAST ((UINT)-720)
|
||||
#define UDN_FIRST ((UINT)-721)
|
||||
|
|
|
@ -23,8 +23,10 @@ extern "C" {
|
|||
#define SETRGBSTRINGW L"commdlg_SetRGBColor"
|
||||
#define HELPMSGSTRINGW L"commdlg_help"
|
||||
#define FINDMSGSTRINGW L"commdlg_FindReplace"
|
||||
#ifndef CDN_FIRST
|
||||
#define CDN_FIRST ((UINT)-601) /* also in commctrl.h */
|
||||
#define CDN_LAST ((UINT)-699)
|
||||
#endif
|
||||
#define CDN_INITDONE CDN_FIRST
|
||||
#define CDN_SELCHANGE (CDN_FIRST-1U)
|
||||
#define CDN_FOLDERCHANGE (CDN_FIRST-2U)
|
||||
|
|
Loading…
Reference in New Issue