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

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

Controlの追加とそれに伴う修正

File size: 627 bytes
Line 
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
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
30End Class
31
32#endif '__SYSTEM_MISC_AB__
Note: See TracBrowser for help on using the repository browser.