Ignore:
Timestamp:
Feb 23, 2007, 11:00:24 PM (17 years ago)
Author:
イグトランス (egtra)
Message:

Unicode (#50) 前準備
Byte→Char (#51) 型名は殆ど完了、ただし中身までは手を付けていないものが多い

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Include/api_console.sbp

    r1 r119  
    1414Const BACKGROUND_INTENSITY = &H0080
    1515
     16Type COORD
     17    X As Integer
     18    Y As Integer
     19End Type
    1620
    17 Declare Function AllocConsole Lib "kernel32" () As Long
    18 Declare Function FreeConsole Lib "kernel32" () As Long
    1921
    20 Declare Function SetConsoleCursorPosition Lib "kernel32" (hConsoleOutput As HANDLE, dwCursorPosition As DWord) As Long
     22Declare Function AllocConsole Lib "kernel32" () As BOOL
     23Declare Function FreeConsole Lib "kernel32" () As BOOL
     24
     25Declare Function SetConsoleCursorPosition Lib "kernel32" (hConsoleOutput As HANDLE, dwCursorPosition As DWord) As BOOL
    2126
    2227Declare 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.