blob: 658d0d0bdcba5c3c45b93d7c138684ff33bab8ec [file] [log] [blame]
package org.eclipse.swt.internal.ole.win32;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved
*/
public class IStream extends IUnknown {
public IStream(int address) {
super(address);
}
public int Clone(
int[] ppstm //Pointer to location for pointer to the new stream object
){
return COM.VtblCall(13, address, ppstm);
}
public int Commit( int grfCommitFlags //Specifies how changes are committed
){
return COM.VtblCall(8, address, grfCommitFlags);
}
public int Read(int pv, int cb, int[] pcbWritten) {
return COM.VtblCall(3, address, pv, cb, pcbWritten);
}
public int Revert(){
return COM.VtblCall(9, address);
}
public int Write(int pv, int cb, int[] pcbWritten) {
return COM.VtblCall(4, address, pv, cb, pcbWritten);
}
}