Skip to content

Commit 05a4ae0

Browse files
committed
Added property Width and Height to RECT. (for v2.1-alpha)
1 parent f85d005 commit 05a4ae0

File tree

1 file changed

+20
-15
lines changed

1 file changed

+20
-15
lines changed

ColorButton.ahk

Lines changed: 20 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -18,23 +18,28 @@
1818
; If you're NOT using v2.1-alpha.9 or later, delete the section BELOW.
1919
; If you're NOT using v2.1-alpha.9 or later, delete the section BELOW.
2020
21-
; class NMCUSTOMDRAWINFO {
22-
; hdr : NMCUSTOMDRAWINFO.NMHDR
23-
; dwDrawStage: u32
24-
; hdc : uptr
25-
; rc : NMCUSTOMDRAWINFO.RECT
26-
; dwItemSpec : uptr
27-
; uItemState : i32
28-
; lItemlParam: iptr
29-
30-
; class RECT {
31-
; left: i32, top: i32, right: i32, bottom: i32
21+
; class NMCUSTOMDRAWINFO
22+
; {
23+
; hdr : NMCUSTOMDRAWINFO.NMHDR
24+
; dwDrawStage: u32
25+
; hdc : uptr
26+
; rc : NMCUSTOMDRAWINFO.RECT
27+
; dwItemSpec : uptr
28+
; uItemState : i32
29+
; lItemlParam: iptr
30+
31+
; class RECT
32+
; {
33+
; left: i32, top: i32, right: i32, bottom: i32
34+
; width => this.right - this.left
35+
; height => this.bottom - this.top
3236
; }
3337
34-
; class NMHDR {
35-
; hwndFrom: uptr
36-
; idFrom : uptr
37-
; code : i32
38+
; class NMHDR
39+
; {
40+
; hwndFrom: uptr
41+
; idFrom : uptr
42+
; code : i32
3843
; }
3944
; }
4045

0 commit comments

Comments
 (0)