Changeset 89 for Include/basic/command.sbp
- Timestamp:
- Feb 11, 2007, 11:53:12 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Include/basic/command.sbp
r21 r89 6 6 7 7 8 Const _System_Type_Char = 9 Const _System_Type_Byte = 8 Const _System_Type_Char = 1 9 Const _System_Type_Byte = 2 10 10 Const _System_Type_Integer = 3 11 Const _System_Type_Word = 12 Const _System_Type_Long = 13 Const _System_Type_DWord = 14 Const _System_Type_Int64 = 15 Const _System_Type_QWord = 11 Const _System_Type_Word = 4 12 Const _System_Type_Long = 5 13 Const _System_Type_DWord = 6 14 Const _System_Type_Int64 = 7 15 Const _System_Type_QWord = 8 16 16 Const _System_Type_Single = 9 17 17 Const _System_Type_Double = 10 … … 64 64 End Macro 65 65 66 Macro WINDOW(ByRef hWnd As Long, hOwner As Long, x As Long, y As Long, nWidth As Long, nHeight As Long, lpTitle As String, dwStyle As DWord)(lpClass As String, id As DWord, lpFunc As DWord, dwExStyle As DWord)66 Macro WINDOW(ByRef hWnd As HWND, hOwner As HWND, x As Long, y As Long, nWidth As Long, nHeight As Long, lpTitle As String, dwStyle As DWord)(lpClass As String, id As HMENU, lpFunc As DWord, dwExStyle As DWord) 67 67 If VarPtr(hWnd) Then 68 68 hWnd=CreateWindowEx(dwExStyle,lpClass,lpTitle,dwStyle,x,y,nWidth,nHeight,hOwner,id,GetModuleHandle(0),NULL) … … 105 105 '-------------- 106 106 107 Dim _System_hFile(255) As Long107 Dim _System_hFile(255) As VoidPtr 108 108 Macro OPEN(lpFileName As String, AccessFor As Long, FileNumber As Long) 109 109 Dim dwAccess As Long … … 435 435 End Macro 436 436 Macro MKDIR(path As String) 437 CreateDirectory(path, ByVal 0)437 CreateDirectory(path, ByVal 0) 438 438 End Macro 439 439 Macro KILL(path As String) … … 443 443 444 444 #endif '_INC_COMMAND 445
Note:
See TracChangeset
for help on using the changeset viewer.