linuxdcpp-team team mailing list archive
-
linuxdcpp-team team
-
Mailing list archive
-
Message #06436
[Branch ~dcplusplus-team/dcplusplus/trunk] Rev 3174: mingw build fixes
------------------------------------------------------------
revno: 3174
committer: poy <poy@xxxxxxxxxx>
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