Changeset 259:dab11c87b97e
- Timestamp:
- 07/20/08 17:22:53
(6 months ago)
- Author:
- Frank Benoit <benoit@tionex.de>
- Children:
260:f617e6ba3055 265:91eec9fa94de
- branch:
- default
- Message:
minor indention
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r249 |
r259 |
|
| 3387 | 3387 | } |
|---|
| 3388 | 3388 | inputs.dwFlags = type is DWT.KeyUp ? OS.KEYEVENTF_KEYUP : 0; |
|---|
| 3389 | | auto hHeap = OS.GetProcessHeap (); |
|---|
| 3390 | | auto pInputs = cast(INPUT*) OS.HeapAlloc (hHeap, OS.HEAP_ZERO_MEMORY, INPUT.sizeof); |
|---|
| 3391 | | pInputs.type = OS.INPUT_KEYBOARD; |
|---|
| | 3389 | auto hHeap = OS.GetProcessHeap (); |
|---|
| | 3390 | auto pInputs = cast(INPUT*) OS.HeapAlloc (hHeap, OS.HEAP_ZERO_MEMORY, INPUT.sizeof); |
|---|
| | 3391 | pInputs.type = OS.INPUT_KEYBOARD; |
|---|
| 3392 | 3392 | //TODO - DWORD type of INPUT structure aligned to 8 bytes on 64 bit |
|---|
| 3393 | 3393 | pInputs.ki = inputs; |
|---|