Last change
on this file since 398 was 391, checked in by イグトランス (egtra), 17 years ago |
FileStream非同期読み書きの修正、例外処理の追加。
|
File size:
895 bytes
|
Rev | Line | |
---|
[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] | 8 | Namespace System
|
---|
[77] | 9 |
|
---|
| 10 | Interface 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] | 16 | End Interface
|
---|
| 17 |
|
---|
| 18 | Interface IClonable
|
---|
| 19 | ' Method
|
---|
[261] | 20 | Function Clone() As Object
|
---|
[77] | 21 | End Interface
|
---|
| 22 |
|
---|
| 23 | Interface IComparable
|
---|
| 24 | ' Method
|
---|
[261] | 25 | Function CompareTo(obj As Object) As Long
|
---|
[77] | 26 | End Interface
|
---|
| 27 |
|
---|
[261] | 28 | Interface IDisposable
|
---|
| 29 | ' Method
|
---|
| 30 | Sub Dispose()
|
---|
| 31 | End Interface
|
---|
| 32 |
|
---|
[77] | 33 | Class EventArgs
|
---|
[223] | 34 | Public
|
---|
| 35 | Static Empty = New EventArgs
|
---|
[77] | 36 | End Class
|
---|
| 37 |
|
---|
[391] | 38 | 'Delegate Sub AsyncCallback(ar As IAsyncResult)
|
---|
| 39 | Delegate Sub AsyncCallback(ar As VoidPtr)
|
---|
| 40 |
|
---|
| 41 |
|
---|
[261] | 42 | End Namespace 'System
|
---|
| 43 | #require <Classes/System/Threading/WaitHandle.ab>
|
---|
| 44 |
|
---|
[77] | 45 | #endif '__SYSTEM_MISC_AB__
|
---|
Note:
See
TracBrowser
for help on using the repository browser.