Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Moves the current seek offset.
Syntax
HRESULT retVal = object.Seek(dlibMove, dwOrigin, plibNewPosition);
Parameters
dlibMove [in]
Type: LARGE_INTEGER
A large integer value that indicates how far to move the offset.
dwOrigin [in]
Type: DWORD
A DWORD value that indicates where the move begins.
FILE_BEGIN
The starting point is zero or the beginning of the file. If FILE_BEGIN is specified, dlibMove is interpreted as an unsigned location for the new file pointer.
FILE_CURRENT
The current value of the file pointer is the starting point.
FILE_END
The current end-of-file position is the starting point. This method fails if the content length is unknown.
plibNewPosition [out]
Type: ULARGE_INTEGER
The address of an unsigned long integer value that indicates the new offset.