summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDanny Smith <dannysmith@users.sourceforge.net>2006-02-19 09:22:00 +0000
committerDanny Smith <dannysmith@users.sourceforge.net>2006-02-19 09:22:00 +0000
commit25109ea7f31fbacf91812854026b40a26d8d04fa (patch)
tree85f470411d71128cbb31e51cb92f0e69bb101bb4
parentd4e9248df3a7d63865461b51e01bc5e9dd7c8aa5 (diff)
downloadcygnal-25109ea7f31fbacf91812854026b40a26d8d04fa.tar.gz
cygnal-25109ea7f31fbacf91812854026b40a26d8d04fa.tar.bz2
cygnal-25109ea7f31fbacf91812854026b40a26d8d04fa.zip
* 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.
-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;