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

型関連の修正 by konisi

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Include/basic/command.sbp

    r21 r89  
    66
    77
    8 Const _System_Type_Char =   1
    9 Const _System_Type_Byte =   2
     8Const _System_Type_Char = 1
     9Const _System_Type_Byte = 2
    1010Const _System_Type_Integer = 3
    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
     11Const _System_Type_Word = 4
     12Const _System_Type_Long = 5
     13Const _System_Type_DWord = 6
     14Const _System_Type_Int64 = 7
     15Const _System_Type_QWord = 8
    1616Const _System_Type_Single = 9
    1717Const _System_Type_Double = 10
     
    6464End Macro
    6565
    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)
     66Macro 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)
    6767    If VarPtr(hWnd) Then
    6868        hWnd=CreateWindowEx(dwExStyle,lpClass,lpTitle,dwStyle,x,y,nWidth,nHeight,hOwner,id,GetModuleHandle(0),NULL)
     
    105105'--------------
    106106
    107 Dim _System_hFile(255) As Long
     107Dim _System_hFile(255) As VoidPtr
    108108Macro OPEN(lpFileName As String, AccessFor As Long, FileNumber As Long)
    109109    Dim dwAccess As Long
     
    435435End Macro
    436436Macro MKDIR(path As String)
    437     CreateDirectory(path,ByVal 0)
     437    CreateDirectory(path, ByVal 0)
    438438End Macro
    439439Macro KILL(path As String)
     
    443443
    444444#endif '_INC_COMMAND
    445 
Note: See TracChangeset for help on using the changeset viewer.