Changeset 119 for Include/api_window.sbp
- Timestamp:
- Feb 23, 2007, 11:00:24 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Include/api_window.sbp
r77 r119 200 200 Const CF_GDIOBJLAST = &H03FF 201 201 202 '------------- 203 ' Window API Function Names 204 205 /* 206 CreateWindowEx 207 CallWindowProc 208 DefWindowProc 209 DispatchMessage 210 DrawText 211 DrawTextEx 212 FindWindow 213 FindWindowEx 214 GetClassInfoEx 215 GetClassLong 216 GetClassLongPtr 217 GetClassName 218 GetClipboardFormatName 219 GetDlgItemText 220 GetMenuItemInfo 221 GetMessage 222 GetWindowLong 223 GetWindowLongPtr 224 GetWindowText 225 GetWindowTextLength 226 InsertMenuItem 227 IsCharAlpha 228 IsCharAlphaNumeric 229 IsDialogMessage 230 LoadBitmap 231 LoadCursor 232 LoadCursorFromFile 233 LoadIcon 234 LoadImage 235 PeekMessage 236 PostMessage 237 PostThreadMessage 238 RegisterClassEx 239 RegisterClipboardFormat 240 RegisterWindowMessage 241 RemoveProp 242 SendDlgItemMessage 243 SendMessage 244 SendNotifyMessage 245 SetDlgItemText 246 SetClassLong 247 SetClassLong 248 SetMenuItemInfo 249 SetWindowLong 250 SetWindowLongPtr 251 SetWindowText 252 SystemParametersInfo 253 UnregisterClass 254 wsprintf 255 wvsprintf 256 */ 202 257 203 258 '------------- … … 761 816 Const MB_RIGHT = &H00080000 762 817 Const 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 819 Declare Function MessageBox Lib "user32" Alias "MessageBoxW" (hWnd As HWND, pText As PCWSTR, pCaption As PCWSTR, uType As DWord) As Long 820 #else 821 Declare Function MessageBox Lib "user32" Alias "MessageBoxA" (hWnd As HWND, pText As PCSTR, pCaption As PCSTR, uType As DWord) As Long 822 #endif 823 Declare Function MessageBoxW Lib "user32" (hWnd As HWND, pText As PCWSTR, pCaption As PCWSTR, uType As DWord) As Long 824 Declare Function MessageBoxA Lib "user32" (hWnd As HWND, pText As PCSTR, pCaption As PCSTR, uType As DWord) As Long 765 825 Const MOUSEEVENTF_MOVE = &H0001 766 826 Const MOUSEEVENTF_LEFTDOWN = &H0002
Note:
See TracChangeset
for help on using the changeset viewer.