Changeset 119 for Include/api_console.sbp
- Timestamp:
- Feb 23, 2007, 11:00:24 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Include/api_console.sbp
r1 r119 14 14 Const BACKGROUND_INTENSITY = &H0080 15 15 16 Type COORD 17 X As Integer 18 Y As Integer 19 End Type 16 20 17 Declare Function AllocConsole Lib "kernel32" () As Long18 Declare Function FreeConsole Lib "kernel32" () As Long19 21 20 Declare Function SetConsoleCursorPosition Lib "kernel32" (hConsoleOutput As HANDLE, dwCursorPosition As DWord) As Long 22 Declare Function AllocConsole Lib "kernel32" () As BOOL 23 Declare Function FreeConsole Lib "kernel32" () As BOOL 24 25 Declare Function SetConsoleCursorPosition Lib "kernel32" (hConsoleOutput As HANDLE, dwCursorPosition As DWord) As BOOL 21 26 22 27 Declare Function ReadConsole Lib "kernel32" Alias "ReadConsoleA" (hConsoleInput As HANDLE, pBuffer As VoidPtr, nNumberOfCharsToRead As DWord, ByRef NumberOfCharsRead As DWord, pReserved As VoidPtr) As BOOL
Note:
See TracChangeset
for help on using the changeset viewer.