Ignore:
Timestamp:
May 26, 2007, 1:08:15 AM (17 years ago)
Author:
イグトランス (egtra)
Message:

CriticalSection, CriticalSectionLockの追加

File:
1 edited

Legend:

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

    r223 r261  
    44#define __SYSTEM_MISC_AB__
    55
    6 #require <Classes/System/Threading/WaitHandle.ab>
     6'#require <Classes/System/Threading/WaitHandle.ab>
    77
    8 Interface IObject
    9 End Interface
     8Namespace System
    109
    1110Interface IAsyncResult
    1211    ' Properties
    13     Function AsyncState() As *IObject
    14     Function AsyncWaitHandle() As WaitHandle
    15     Function CompletedSynchronously() As BOOL
    16     Function IsCompleted() As BOOL
     12    Function AsyncState() As Object
     13    Function AsyncWaitHandle() As System.Threading.WaitHandle
     14    Function CompletedSynchronously() As Boolean
     15    Function IsCompleted() As Boolean
    1716End Interface
    1817
    1918Interface IClonable
    2019    ' Method
    21     Function Clone() As *IObject
     20    Function Clone() As Object
    2221End Interface
    2322
    2423Interface IComparable
    2524    ' Method
    26     Function CompareTo(ByRef obj As IObject) As Long
     25    Function CompareTo(obj As Object) As Long
     26End Interface
     27
     28Interface IDisposable
     29    ' Method
     30    Sub Dispose()
    2731End Interface
    2832
     
    3236End Class
    3337
     38End Namespace 'System
     39#require <Classes/System/Threading/WaitHandle.ab>
     40
    3441#endif '__SYSTEM_MISC_AB__
Note: See TracChangeset for help on using the changeset viewer.