|
IStream::Seek
Changes the seek pointer to a new location relative to the beginning of the
stream, to the end of the stream, or to the current seek pointer.
HRESULT Seek(
LARGE_INTEGER dlibMove,
| //Offset relative to dwOrigin
| DWORD dwOrigin,
| //Specifies the origin for the offset
| ULARGE_INTEGER * plibNewPosition
| //Pointer to location containing new seek pointer
| );
|
|
Parameters
dlibMove
[in]Displacement to be added to the location indicated by dwOrigin. If dwOrigin is STREAM_SEEK_SET, then this is interpreted as an unsigned value rather than
signed.
dwOrigin
[in]Specifies the origin for the displacement specified in dlibMove. The origin can the be beginning of the file, the current seek pointer, or the
end of the file. See the STREAM_SEEK enumeration for the values.
plibNewPosition
[out]Pointer to the location where this method writes the value of the new
seek pointer from the beginning of the stream. You can set this pointer to NULL to
indicate that you are not interested in this value. In this case, this method
does not provide the new seek pointer.
Return Values
S_OK
The seek pointer has been successfully adjusted.
STG_E_INVALIDPOINTER
The value of the plibNewPosition parameter is not valid.
STG_E_INVALIDFUNCTION
The value of the dwOrigin parameter is not valid.
Comments
This method changes the seek pointer so subsequent reads and writes can take
place at a different location in the stream object. It is an error to seek
before the beginning of the stream. However, it is not an error to seek past the end
of the stream. Seeking past the end of the stream is useful for subsequent
writes, as the stream will at that time be extended to the seek position
immediately before the write is done.
You can also use this method to obtain the current value of the seek pointer
by calling this method with the dwOrigin parameter set to STREAM_SEEK_CUR and the dlibMove parameter set to 0 so the seek pointer is not changed. The current seek
pointer is returned in the plibNewPosition parameter.
See Also
STREAM_SEEK, IStream::Read, IStream::Write
| Last news from Greatis Software |
 |
|
Nostalgia .Net |
|
.Net is powerful, but not all-powerful, so sometimes we need to use Win32 API for our .Net applications. It's simple enough with Platform Invoke if you have Win32 skill, but we do not always have time to dig the ancient documentation, declare the special types that are compatible with Win32, find the values of the Win32's constants and so on. Nostalgia .Net offers several simple-to-use classes, and components that will allow you to forget about the headache of Win32 and just use the power of Win32 in your application the same way as you use the native. Net classes. More » |
| Recommended software for developers |
 |
|
Ultimate Pack |
|
Component pack for Delphi and C++ Builder that contains runtime form designer, runtime object inspector, print suite and much more for the very special price. More » |
 |
|
Form Designer .Net |
|
Unique runtime form design solution that allows to edit any form in .Net WinForms application at runtime with full source codes for only 300 euro! More » |
 |
|
Print Suite .Net |
|
Print Suite .Net is a set of components for easy printing texts, images and grids from your WinForms applications. Full C# source codes are available More » |
 |
|
Gradient Controls .Net |
|
Gradient Controls .Net offers controls with gradient background feature. Labels, panels and so on... Full C# source codes are available More » |
 |
|
Greatis iGrid |
|
iGrid plots drawing grid right over your desktop, so you can use it everywhere, with any drawing application without any special plugins for different graphic editors. More » |
All the contacts and projectsDmitry Vasiliev (just.dmitry)
Related LinksSoftware for Visual Studio .NET developers Software for Delphi and C++ Builder developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference Win32 Multimedia Programmer's Reference OLE Programmer's Reference Microsoft Windows Pen API Programmer's Reference Microsoft Windows Sockets 2 Reference Microsoft Windows Telephony API (TAPI) Programmer's Reference Unix Manual Pages
|