------------------------------------------------------------ revno: 3174 committer: poy <p...@123gen.com> branch nick: trunk timestamp: Sat 2013-01-19 17:42:57 +0100 message: mingw build fixes modified: dwt/include/dwt/GCCHeaders.h
-- lp:dcplusplus https://code.launchpad.net/~dcplusplus-team/dcplusplus/trunk Your team Dcplusplus-team is subscribed to branch lp:dcplusplus. To unsubscribe from this branch go to https://code.launchpad.net/~dcplusplus-team/dcplusplus/trunk/+edit-subscription
=== modified file 'dwt/include/dwt/GCCHeaders.h' --- dwt/include/dwt/GCCHeaders.h 2013-01-18 21:28:38 +0000 +++ dwt/include/dwt/GCCHeaders.h 2013-01-19 16:42:57 +0000 @@ -105,6 +105,27 @@ (BOOL)SNDMSG((hwnd), EM_SETCUEBANNER, (WPARAM)fDrawFocused, (LPARAM)lpcwText) #endif +#ifndef EM_SHOWBALLOONTIP +#define EM_SHOWBALLOONTIP (ECM_FIRST + 3) +typedef struct _tagEDITBALLOONTIP +{ + DWORD cbStruct; + LPCWSTR pszTitle; + LPCWSTR pszText; + INT ttiIcon; // From TTI_* +} EDITBALLOONTIP, *PEDITBALLOONTIP; +#endif +#ifndef Edit_ShowBalloonTip +#define Edit_ShowBalloonTip(hwnd, peditballoontip) \ + (BOOL)SNDMSG((hwnd), EM_SHOWBALLOONTIP, 0, (LPARAM)(peditballoontip)) +#endif +#ifndef TTI_NONE +#define TTI_NONE 0 +#define TTI_INFO 1 +#define TTI_WARNING 2 +#define TTI_ERROR 3 +#endif + // defs for the notification area & balloons #ifndef NIIF_INFO #define NIIF_INFO 0x1
_______________________________________________ Mailing list: https://launchpad.net/~linuxdcpp-team Post to : linuxdcpp-team@lists.launchpad.net Unsubscribe : https://launchpad.net/~linuxdcpp-team More help : https://help.launchpad.net/ListHelp