Modify ↓
Opened 16 years ago
Closed 16 years ago
#611 closed Bug (No Bug)
This caused crashing: $pcLocked = DllCall("user32","Long","OpenInputDesktop")
Reported by: | ducjava@… | Owned by: | |
---|---|---|---|
Milestone: | Component: | AutoIt | |
Version: | 3.2.12.0 | Severity: | None |
Keywords: | Cc: |
Description
This caused crashing:
$pcLocked = DllCall("user32","Long","OpenInputDesktop")
It was running fine with AutoIt v3.2.0.1, but crashed in v3.2.12.1
Please reply me if you know the problem. Thanks.
Attachments (0)
Change History (1)
comment:1 Changed 16 years ago by Valik
- Resolution set to No Bug
- Status changed from new to closed
Guidelines for posting comments:
- You cannot re-open a ticket but you may still leave a comment if you have additional information to add.
- In-depth discussions should take place on the forum.
For more information see the full version of the ticket guidelines here.
Note: See
TracTickets for help on using
tickets.
The problem is you aren't calling the function correctly. The function you are trying to call via DllCall() takes 3 arguments you aren't providing.
This is not a bug.