SemysDecoderReadInt

01 Decodes an integer value at the current position and increments the position.
02

int32 SemysDecoderReadInt16(HSemysCoder coder, uint16 *pValue);
int32 SemysDecoderReadInt32(HSemysCoder coder, uint32 *pValue);
int32 SemysDecoderReadInt64(HSemysCoder coder, uint64 *pValue);

03 Parameters:
  • coder: The coder from which to decode.
  • pValue: Pointer (typesafe) to a variable to store the integer value in.
04 Return Values:
Nonzero if the value could be decoded or 0 otherwise (end of stream).
05 Reference: SemysCoder.h
Implementation: Semys Library
See Also: Coder Sub-System, SemysEncoderWriteInt()

Goto: Main Page; This page is part of the Semys software documentation. See About: Documentation for details.