source: trunk/Include/Classes/System/misc.ab@ 400

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

_System_CThreadCollectionでのクラスインスタンスへのポインタの使用を除去、参照変数構文へ。

File size: 896 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
8Namespace System
9
10Interface IAsyncResult
11 ' Properties
12 Function AsyncState() As Object
13 Function AsyncWaitHandle() As Threading.WaitHandle
14 Function CompletedSynchronously() As Boolean
15 Function IsCompleted() As Boolean
16End Interface
17
18Interface ICloneable
19 ' Method
20 Function Clone() As Object
21End Interface
22
23Interface IComparable
24 ' Method
25 Function CompareTo(obj As Object) As Long
26End Interface
27
28Interface IDisposable
29 ' Method
30 Sub Dispose()
31End Interface
32
33Class EventArgs
34Public
35 Static Empty = New EventArgs
36End Class
37
38'Delegate Sub AsyncCallback(ar As IAsyncResult)
39Delegate Sub AsyncCallback(ar As VoidPtr)
40
41
42End Namespace 'System
43#require <Classes/System/Threading/WaitHandle.ab>
44
45#endif '__SYSTEM_MISC_AB__
Note: See TracBrowser for help on using the repository browser.