XBinder
Version 2.9.x
|
#include "rtxContext.h"
Go to the source code of this file.
Functions | |
EXTERNRT int | rtxTxtMatchChar (OSCTXT *pctxt, OSUTF8CHAR ch, OSBOOL skipWs) |
This function matches the given character or logs and returns an error. More... | |
EXTERNRT int | rtxTxtMatchChars (OSCTXT *pctxt, const OSUTF8CHAR *chars, OSBOOL skipWs) |
This function matches the given characters or logs and returns an error. More... | |
EXTERNRT int | rtxTxtPeekChar (OSCTXT *pctxt, OSUTF8CHAR *pch, OSBOOL skipWs) |
This function determines the next character in the input. More... | |
EXTERNRT char | rtxTxtPeekChar2 (OSCTXT *pctxt, OSBOOL skipWs) |
This function determines the next character in the input. More... | |
EXTERNRT int | rtxTxtSkipWhitespace (OSCTXT *pctxt) |
This function skips any whitespace in the input. More... | |
EXTERNRT int | rtxTxtReadBigInt (OSCTXT *pctxt, char **ppvalue) |
This function reads an integer, using standard decimal notation, into a character string. More... | |
EXTERNRT int | rtxTxtReadInt8 (OSCTXT *pctxt, OSINT8 *pvalue) |
This function reads an integer, using standard decimal notation, into an 8-bit signed integer. More... | |
EXTERNRT int | rtxTxtReadInt16 (OSCTXT *pctxt, OSINT16 *pvalue) |
This function reads an integer, using standard decimal notation, into an 16-bit signed integer. More... | |
EXTERNRT int | rtxTxtReadInt32 (OSCTXT *pctxt, OSINT32 *pvalue) |
This function reads an integer, using standard decimal notation, into an 32-bit signed integer. More... | |
EXTERNRT int | rtxTxtReadInt64 (OSCTXT *pctxt, OSINT64 *pvalue) |
This function reads an integer, using standard decimal notation, into an 64-bit signed integer. More... | |
EXTERNRT int | rtxTxtReadUInt8 (OSCTXT *pctxt, OSUINT8 *pvalue) |
This function reads an integer, using standard decimal notation, into an 8-bit unsigned integer. More... | |
EXTERNRT int | rtxTxtReadUInt16 (OSCTXT *pctxt, OSUINT16 *pvalue) |
This function reads an integer, using standard decimal notation, into an 16-bit unsigned integer. More... | |
EXTERNRT int | rtxTxtReadUInt32 (OSCTXT *pctxt, OSUINT32 *pvalue) |
This function reads an integer, using standard decimal notation, into an 32-bit unsigned integer. More... | |
EXTERNRT int | rtxTxtReadUInt64 (OSCTXT *pctxt, OSUINT64 *pvalue) |
This function reads an integer, using standard decimal notation, into an 64-bit unsigned integer. More... | |
EXTERNRT int | rtxTxtWriteInt (OSCTXT *pctxt, OSINT32 value) |
This writes a 32-bit signed integer to the buffer using standard decimal (base 10) notation. More... | |
EXTERNRT int | rtxTxtWriteInt64 (OSCTXT *pctxt, OSINT64 value) |
This writes a 64-bit signed integer to the buffer using standard decimal (base 10) notation. More... | |
EXTERNRT int | rtxTxtWriteUInt (OSCTXT *pctxt, OSUINT32 value) |
This writes a 32-bit unsigned integer to the buffer using standard decimal (base 10) notation. More... | |
EXTERNRT int | rtxTxtWriteUInt64 (OSCTXT *pctxt, OSUINT64 value) |
This writes a 64-bit unsigned integer to the buffer using standard decimal (base 10) notation. More... | |