Skip to content

Commit 01015b4

Browse files
committed
inc: win/winuser.bi: Rename the INPUT type
http://www.freebasic.net/forum/viewtopic.php?f=3&t=23458 (cherry picked from commit a92ae28)
1 parent 9f100b9 commit 01015b4

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

changelog.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Version 1.02.1
66
- Package name + version to all the new/updated bindings
77

88
[fixed]
9+
- 1.02.0 regression: win/winuser.bi: Renamed INPUT typedef to INPUT_ to avoid conflicts with the quirk keyword (due to bug #730)
910

1011

1112
Version 1.02.0

inc/win/winuser.bi

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
#include once "crt/stdarg.bi"
1010
#include once "guiddef.bi"
1111

12+
'' The following symbols have been renamed:
13+
'' typedef INPUT => INPUT_
14+
1215
extern "Windows"
1316

1417
#define _WINUSER_
@@ -2438,7 +2441,7 @@ type tagINPUT
24382441
end union
24392442
end type
24402443

2441-
type INPUT as tagINPUT
2444+
type INPUT_ as tagINPUT
24422445
type PINPUT as tagINPUT ptr
24432446
type LPINPUT as tagINPUT ptr
24442447
declare function SendInput(byval cInputs as UINT, byval pInputs as LPINPUT, byval cbSize as long) as UINT

0 commit comments

Comments
 (0)