Changeset 119 for Include/api_window.sbp


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_window.sbp

    r77 r119  
    200200Const CF_GDIOBJLAST =      &H03FF
    201201
     202'-------------
     203' Window API Function Names
     204
     205/*
     206CreateWindowEx
     207CallWindowProc
     208DefWindowProc
     209DispatchMessage
     210DrawText
     211DrawTextEx
     212FindWindow
     213FindWindowEx
     214GetClassInfoEx
     215GetClassLong
     216GetClassLongPtr
     217GetClassName
     218GetClipboardFormatName
     219GetDlgItemText
     220GetMenuItemInfo
     221GetMessage
     222GetWindowLong
     223GetWindowLongPtr
     224GetWindowText
     225GetWindowTextLength
     226InsertMenuItem
     227IsCharAlpha
     228IsCharAlphaNumeric
     229IsDialogMessage
     230LoadBitmap
     231LoadCursor
     232LoadCursorFromFile
     233LoadIcon
     234LoadImage
     235PeekMessage
     236PostMessage
     237PostThreadMessage
     238RegisterClassEx
     239RegisterClipboardFormat
     240RegisterWindowMessage
     241RemoveProp
     242SendDlgItemMessage
     243SendMessage
     244SendNotifyMessage
     245SetDlgItemText
     246SetClassLong
     247SetClassLong
     248SetMenuItemInfo
     249SetWindowLong
     250SetWindowLongPtr
     251SetWindowText
     252SystemParametersInfo
     253UnregisterClass
     254wsprintf
     255wvsprintf
     256*/
    202257
    203258'-------------
     
    761816Const MB_RIGHT =                  &H00080000
    762817Const MB_RTLREADING =             &H00100000
    763 Declare Function MessageBox Lib "user32" Alias "MessageBoxA" (hWnd As HWND, lpText As PCSTR, lpCaption As PCSTR, uType As DWord) As Long
    764 
     818#ifdef UNICODE
     819Declare Function MessageBox Lib "user32" Alias "MessageBoxW" (hWnd As HWND, pText As PCWSTR, pCaption As PCWSTR, uType As DWord) As Long
     820#else
     821Declare Function MessageBox Lib "user32" Alias "MessageBoxA" (hWnd As HWND, pText As PCSTR, pCaption As PCSTR, uType As DWord) As Long
     822#endif
     823Declare Function MessageBoxW Lib "user32" (hWnd As HWND, pText As PCWSTR, pCaption As PCWSTR, uType As DWord) As Long
     824Declare Function MessageBoxA Lib "user32" (hWnd As HWND, pText As PCSTR, pCaption As PCSTR, uType As DWord) As Long
    765825Const MOUSEEVENTF_MOVE =       &H0001
    766826Const MOUSEEVENTF_LEFTDOWN =   &H0002
Note: See TracChangeset for help on using the changeset viewer.