Ignore:
Timestamp:
Sep 22, 2007, 12:32:25 PM (17 years ago)
Author:
dai
Message:

index.abを一つにまとめた。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Include/Classes/System/IO/Stream.ab

    r271 r337  
    4646    Virtual Sub EndWrite(ByRef asyncResult As System.IAsyncResult): End Sub
    4747    Abstract Sub Flush()
    48     Abstract Function Read(ByRef buffer[] As Byte, offset As Long, count As Long) As Long
     48    Abstract Function Read(buffer As *Byte, offset As Long, count As Long) As Long
    4949
    5050    Virtual Function ReadByte() As Long
    5151        Dim b As Byte
    52         Dim ret = Read(b, 0, 1)
     52        Dim ret = Read(VarPtr(b), 0, 1)
    5353        If ret <> 0 Then
    5454            Return b
     
    6060    Abstract Function Seek(offset As Int64, origin As SeekOrigin) As Long
    6161    Abstract Sub SetLength(value As Int64)
    62     Abstract Sub Write(ByRef buffer[] As Byte, offset As Long, count As Long)
     62    Abstract Sub Write(buffer As *Byte, offset As Long, count As Long)
    6363
    6464    Virtual Sub WriteByte(b As Byte)
    65         Write(b, 0, 1)
     65        Write(VarPtr(b), 0, 1)
    6666    End Sub
    6767Protected
Note: See TracChangeset for help on using the changeset viewer.