Added ListView_EditLabel macros.
diff --git a/include/commctrl.h b/include/commctrl.h index a9b1edb..d35fc6c 100644 --- a/include/commctrl.h +++ b/include/commctrl.h
@@ -2681,7 +2681,10 @@ (BOOL)SendMessageA((hwndLV),LVM_SETITEMPOSITION,(WPARAM)(INT)(i),MAKELPARAM((x),(y))) #define ListView_GetSelectedCount(hwndLV) \ (UINT)SendMessageA((hwndLV),LVM_GETSELECTEDCOUNT,0,0L) - +#define ListView_EditLabelA(hwndLV, i) \ + (HWND)SendMessageA((hwndLV),LVM_EDITLABELA,(WPARAM)(int)(i), 0L) +#define ListView_EditLabelW(hwndLV, i) \ + (HWND)SendMessageW((hwndLV),LVM_EDITLABELW,(WPARAM)(int)(i), 0L) /* Tab Control */