(default)
Class CefWriteHandler
CefBase
|
+--CefWriteHandler
in cef.h
- class CefWriteHandler
- extends CefBase
Interface the client can implement to provide a custom stream writer. The
methods of this class may be called on any thread.
|
Method Summary |
virtual int |
Flush()= 0
Flush the stream. |
virtual int |
Seek( long offset, int whence )= 0
Seek to the specified offset position. |
virtual long |
Tell()= 0
Return the current offset position. |
virtual size_t |
Write( const void* ptr, size_t size, size_t n )= 0
Write raw binary data. |
Flush
public virtual int Flush()= 0;
- Flush the stream.
Seek
public virtual int Seek( long offset, int whence )= 0;
- Seek to the specified offset position. |whence| may be any one of
SEEK_CUR, SEEK_END or SEEK_SET.
Tell
public virtual long Tell()= 0;
- Return the current offset position.
Write
public virtual size_t Write( const void* ptr, size_t size, size_t n )= 0;
- Write raw binary data.
Chromium Embedded Framework (CEF) Copyright © 2011 Marshall A. Greenblatt