Changeset 303 for trunk/Include/Classes/ActiveBasic/Windows/Windows.ab
- Timestamp:
- Aug 24, 2007, 11:14:46 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Include/Classes/ActiveBasic/Windows/Windows.ab
r269 r303 27 27 Return GetFolderPath(0, folder) 28 28 End Function 29 /* 30 Function MessageBox(hw As HWND, s As PCSTR, t As PCSTR, b As DWord) As DWord 31 Return MessageBoxA(hw, s, t, b) 32 End Function 33 34 Function MessageBox(hw As HWND, s As PCWSTR, t As PCWSTR, b As DWord) As DWord 35 Return MessageBoxW(hw, s, t, b) 36 End Function 37 */ 38 39 Namespace Detail 40 Function _System_MessageBox(hw As HWND, s As PCSTR, t As PCSTR, b As DWord) As DWord 41 Return MessageBoxA(hw, s, t, b) 42 End Function 43 44 Function _System_MessageBox(hw As HWND, s As PCWSTR, t As PCWSTR, b As DWord) As DWord 45 Return MessageBoxW(hw, s, t, b) 46 End Function 47 End Namespace 29 48 30 49 End Namespace 'Widnows
Note:
See TracChangeset
for help on using the changeset viewer.