Changeset 261 for Include/Classes/System/misc.ab
- Timestamp:
- May 26, 2007, 1:08:15 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Include/Classes/System/misc.ab
r223 r261 4 4 #define __SYSTEM_MISC_AB__ 5 5 6 #require <Classes/System/Threading/WaitHandle.ab>6 '#require <Classes/System/Threading/WaitHandle.ab> 7 7 8 Interface IObject 9 End Interface 8 Namespace System 10 9 11 10 Interface IAsyncResult 12 11 ' Properties 13 Function AsyncState() As *IObject14 Function AsyncWaitHandle() As WaitHandle15 Function CompletedSynchronously() As B OOL16 Function IsCompleted() As B OOL12 Function AsyncState() As Object 13 Function AsyncWaitHandle() As System.Threading.WaitHandle 14 Function CompletedSynchronously() As Boolean 15 Function IsCompleted() As Boolean 17 16 End Interface 18 17 19 18 Interface IClonable 20 19 ' Method 21 Function Clone() As *IObject20 Function Clone() As Object 22 21 End Interface 23 22 24 23 Interface IComparable 25 24 ' Method 26 Function CompareTo(ByRef obj As IObject) As Long 25 Function CompareTo(obj As Object) As Long 26 End Interface 27 28 Interface IDisposable 29 ' Method 30 Sub Dispose() 27 31 End Interface 28 32 … … 32 36 End Class 33 37 38 End Namespace 'System 39 #require <Classes/System/Threading/WaitHandle.ab> 40 34 41 #endif '__SYSTEM_MISC_AB__
Note:
See TracChangeset
for help on using the changeset viewer.