Line | |
---|
1 | ' Classes/System/misc.ab
|
---|
2 |
|
---|
3 | #ifndef __SYSTEM_MISC_AB__
|
---|
4 | #define __SYSTEM_MISC_AB__
|
---|
5 |
|
---|
6 | #require <Classes/System/Threading/WaitHandle.ab>
|
---|
7 |
|
---|
8 | Interface IObject
|
---|
9 | End Interface
|
---|
10 |
|
---|
11 | Interface IAsyncResult
|
---|
12 | ' Properties
|
---|
13 | Function AsyncState() As *IObject
|
---|
14 | Function AsyncWaitHandle() As WaitHandle
|
---|
15 | Function CompletedSynchronously() As BOOL
|
---|
16 | Function IsCompleted() As BOOL
|
---|
17 | End Interface
|
---|
18 |
|
---|
19 | Interface IClonable
|
---|
20 | ' Method
|
---|
21 | Function Clone() As *IObject
|
---|
22 | End Interface
|
---|
23 |
|
---|
24 | Interface IComparable
|
---|
25 | ' Method
|
---|
26 | Function CompareTo(ByRef obj As IObject) As Long
|
---|
27 | End Interface
|
---|
28 |
|
---|
29 | Class EventArgs
|
---|
30 | Public
|
---|
31 | Static Empty = New EventArgs
|
---|
32 | End Class
|
---|
33 |
|
---|
34 | #endif '__SYSTEM_MISC_AB__
|
---|
Note:
See
TracBrowser
for help on using the repository browser.