source: Include/Classes/System/misc.ab@ 223

Last change on this file since 223 was 223, checked in by イグトランス (egtra), 17 years ago

Controlがコンパイルできるように修正

File size: 666 bytes
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
8Interface IObject
9End Interface
10
11Interface IAsyncResult
12 ' Properties
13 Function AsyncState() As *IObject
14 Function AsyncWaitHandle() As WaitHandle
15 Function CompletedSynchronously() As BOOL
16 Function IsCompleted() As BOOL
17End Interface
18
19Interface IClonable
20 ' Method
21 Function Clone() As *IObject
22End Interface
23
24Interface IComparable
25 ' Method
26 Function CompareTo(ByRef obj As IObject) As Long
27End Interface
28
29Class EventArgs
30Public
31 Static Empty = New EventArgs
32End Class
33
34#endif '__SYSTEM_MISC_AB__
Note: See TracBrowser for help on using the repository browser.