Ignore:
Timestamp:
May 6, 2007, 8:08:17 PM (17 years ago)
Author:
dai
Message:

32bitコンパイラを更新(64bit版はしばらくお待ちください)
Importsステートメントを試験導入(スコープレベルでの使用はまだできません)。
グローバル変数、定数、クラス、グローバル関数に対してNamespaceの適用を可能にした。
ObjPtr関数を導入。
Mathクラスの構文ミスを修正。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Include/Classes/System/Threading/Thread.ab

    r220 r232  
    6161
    6262
    63     Function Equals(ByRef obj_Thread As Thread) As BOOL
    64         If m_dwThreadId=obj_Thread.m_dwThreadId Then
    65             Return _System_TRUE
     63    Function Equals( thread As Thread ) As Boolean
     64        If m_dwThreadId = thread.m_dwThreadId Then
     65            Return True
    6666        End If
    67         Return _System_FALSE
     67        Return False
    6868    End Function
    6969
Note: See TracChangeset for help on using the changeset viewer.