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

Last change on this file since 467 was 467, checked in by dai, 16 years ago

デリゲートのパラメータや戻り値にクラス型を指定できない不具合を修正(64bit版は後日対応になります)。

File size: 852 bytes
RevLine 
[77]1' Classes/System/misc.ab
2
3#ifndef __SYSTEM_MISC_AB__
4#define __SYSTEM_MISC_AB__
5
[261]6'#require <Classes/System/Threading/WaitHandle.ab>
[77]7
[261]8Namespace System
[77]9
10Interface IAsyncResult
11 ' Properties
[261]12 Function AsyncState() As Object
[391]13 Function AsyncWaitHandle() As Threading.WaitHandle
[261]14 Function CompletedSynchronously() As Boolean
15 Function IsCompleted() As Boolean
[77]16End Interface
17
[400]18Interface ICloneable
[77]19 ' Method
[261]20 Function Clone() As Object
[77]21End Interface
22
23Interface IComparable
24 ' Method
[261]25 Function CompareTo(obj As Object) As Long
[77]26End Interface
27
[261]28Interface IDisposable
29 ' Method
30 Sub Dispose()
31End Interface
32
[77]33Class EventArgs
[223]34Public
35 Static Empty = New EventArgs
[77]36End Class
37
[467]38Delegate Sub AsyncCallback(ar As IAsyncResult)
[391]39
40
[261]41End Namespace 'System
42#require <Classes/System/Threading/WaitHandle.ab>
43
[77]44#endif '__SYSTEM_MISC_AB__
Note: See TracBrowser for help on using the repository browser.