Changeset 173


Ignore:
Timestamp:
Mar 17, 2007, 5:56:56 PM (17 years ago)
Author:
dai
Message:

EnumBaseの=演算子オーバーロードのコードを排除。
その他タイプミスを修正。

Location:
Include
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • Include/Classes/System/Environment.ab

    r152 r173  
    3838    End Sub
    3939
    40     Static Sub HasShutdownStarted() As Boolean
     40    Static Function HasShutdownStarted() As Boolean
    4141        Return False
    42     End Sub
     42    End Function
    4343
    4444    ' MachineName
  • Include/Classes/System/OperatingSystem.ab

    r142 r173  
    1313    End Sub
    1414
    15     Sub OperatingSystem(vi As OSVERSIONINFOA) As OperatingSystem
     15    Sub OperatingSystem(vi As OSVERSIONINFOA)
    1616        pf = vi.dwPlatformId As PlatformID,
    1717        ver = New Version(vi.dwMajorVersion, vi.MinorVersion, vi.BuildNumber)
     
    1919    End Sub
    2020
    21     Sub OperatingSystem(vi As OSVERSIONINFOW) As OperatingSystem
     21    Sub OperatingSystem(vi As OSVERSIONINFOW)
    2222        pf = vi.dwPlatformId As PlatformID,
    2323        ver = New Version(vi.dwMajorVersion, vi.MinorVersion, vi.BuildNumber)
  • Include/api_system.sbp

    r170 r173  
    253253    ByRef hWritePipe As HANDLE,
    254254    ByVal pPipeAttributes As *SECURITY_ATTRIBUTES,
    255     ByVal nSize As DWORD) As Long
     255    ByVal nSize As DWord) As Long
    256256Declare Function CreateSemaphore Lib "kernel32" Alias _FuncName_CreateSemaphore (pSemaphoreAttributes As *SECURITY_ATTRIBUTES, lInitialCount As Long, lMaximumCount As Long, pName As PCTSTR) As HANDLE
    257257
     
    762762
    763763Declare Function SetFileTime Lib "kernel32" (hFile As HANDLE, ByRef lpCreationTime As FILETIME, ByRef lpLastAccessTime As FILETIME, ByRef lpLastWriteTime As FILETIME) As BOOL
    764 Declare Function SetLastError Lib "kernel32" (dwErrCode As DWord)
    765 Declare Function SetLastErrorEx Lib "kernel32" (dwErrCode As DWord, dwType As DWord)
     764Declare Sub SetLastError Lib "kernel32" (dwErrCode As DWord)
     765Declare Sub SetLastErrorEx Lib "kernel32" (dwErrCode As DWord, dwType As DWord)
    766766Declare Function SetLocalTime Lib "kernel32" (ByRef lpSystemTime As SYSTEMTIME) As BOOL
    767767Declare Function SetPriorityClass Lib "kernel32" (hProcess As HANDLE, dwPriorityClass As DWord) As BOOL
  • Include/basic/command.sbp

    r165 r173  
    9393        .fMask = MIIM_TYPE
    9494
    95         If lpString.Length = 0 Then
     95        If str.Length = 0 Then
    9696            mii.fType = MFT_SEPARATOR
    9797        Else
  • Include/objidl.sbp

    r160 r173  
    283283    Function DAdvise(
    284284        /* [in] */ ByRef pformatetc As FORMATETC,
    285         /* [in] */ ByVal advf As DWORD,
     285        /* [in] */ ByVal advf As DWord,
    286286        /* [unique][in] */ ByVal pAdvSink As *IAdviseSink,
    287287        /* [out] */ ByVal pdwConnection As *DWord) As HRESULT
  • Include/system/enum.sbp

    r131 r173  
    1313    Sub Copy(ByRef obj As EnumBase)
    1414        m_Value=obj.m_Value
    15     End Sub
    16 
    17     Sub Operator = (ByRef value As EnumBase) As EnumBase
    18         m_Value = value.m_Value
    1915    End Sub
    2016   
Note: See TracChangeset for help on using the changeset viewer.