Last change
on this file since 164 was 77, checked in by イグトランス (egtra), 18 years ago |
Controlの追加とそれに伴う修正
|
File size:
627 bytes
|
Rev | Line | |
---|
[77] | 1 | ' Classes/System/misc.ab
|
---|
| 2 |
|
---|
| 3 | #ifndef __SYSTEM_MISC_AB__
|
---|
| 4 | #define __SYSTEM_MISC_AB__
|
---|
| 5 |
|
---|
| 6 | #include <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 | End Class
|
---|
| 31 |
|
---|
| 32 | #endif '__SYSTEM_MISC_AB__
|
---|
Note:
See
TracBrowser
for help on using the repository browser.