summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--winsup/w32api/ChangeLog7
-rw-r--r--winsup/w32api/include/commctrl.h5
2 files changed, 11 insertions, 1 deletions
diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog
index 530682e15..858c49b1a 100644
--- a/winsup/w32api/ChangeLog
+++ b/winsup/w32api/ChangeLog
@@ -1,3 +1,10 @@
+2006-02-19 Danny Smith <dannysmith@users.sourceforge.net>
+
+ * include/commctrl.h (LPNMLVCACHEHINT): Correct spelling.
+ Thanks to: Sebastian Pipping <hartwork at users dot sf dot net>
+ (PNM_CACHEHINT): Add backward compatibilty define.
+ (LPNM_CACHEHINT): Likewise.
+
2006-02-06 Danny Smith <dannysmith@users.sourceforge.net>
* include/shlobj.h (PathResolve): Fix typo in _WIN32_WINNT guard.
diff --git a/winsup/w32api/include/commctrl.h b/winsup/w32api/include/commctrl.h
index f26b83c44..3899e6b85 100644
--- a/winsup/w32api/include/commctrl.h
+++ b/winsup/w32api/include/commctrl.h
@@ -2485,8 +2485,11 @@ typedef struct tagNMLVCACHEHINT {
NMHDR hdr;
int iFrom;
int iTo;
-} NMLVCACHEHINT, *PNMLVCACHEHINT;
+} NMLVCACHEHINT, *LPNMLVCACHEHINT;
#define NM_CACHEHINT NMLVCACHEHINT
+#define PNM_CACHEHINT LPNMLVCACHEHINT
+#define LPNM_CACHEHINT LPNMLVCACHEHINT
+
typedef struct _TREEITEM *HTREEITEM;
typedef struct tagTVITEMA {
UINT mask;