Changeset 468 for trunk/Include/Classes/System/IO/Stream.ab
- Timestamp:
- Mar 9, 2008, 12:00:01 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Include/Classes/System/IO/Stream.ab
r432 r468 7 7 8 8 Public 'Protected 9 Sub Stream(): End Sub 9 Sub Stream() 10 End Sub 10 11 Public 11 12 Virtual Sub ~Stream() … … 54 55 Dispose(True) 55 56 End Sub 56 Virtual Function EndRead(ByRef asyncResult As System.IAsyncResult) As Long: End Function 57 Virtual Sub EndWrite(ByRef asyncResult As System.IAsyncResult): End Sub 57 Virtual Function EndRead(ByRef asyncResult As System.IAsyncResult) As Long 58 End Function 59 Virtual Sub EndWrite(ByRef asyncResult As System.IAsyncResult) 60 End Sub 58 61 Abstract Sub Flush() 59 62 Abstract Function Read(buffer As *Byte, offset As Long, count As Long) As Long … … 72 75 Abstract Sub SetLength(value As Int64) 73 76 Abstract Sub Write(buffer As *Byte, offset As Long, count As Long) 74 75 77 Virtual Sub WriteByte(b As Byte) 76 78 Write(VarPtr(b), 0, 1)
Note:
See TracChangeset
for help on using the changeset viewer.