Up: GEOS SDK TechDocs | Up | Prev: LocalCustomParseDateTime() ... | Next: LocalLexicalValue() ...

LocalGeosToCodePage()

Boolean	LocalGeosToCodePage(
        char *		str,
        word		strSize,
        DosCodePage 		codePage,
        word		defaultChar);

Convert a GEOS string to DOS text, using the specified code page. Any characters for which there is no DOS equivalent will be replaced by the passed default character.

Include: localize.h

LocalGeosToCodePageChar()

word	LocalGeosToCodePageChar(
        word		ch,
        DosCodePage 		codePage,
        word		defaultChar);

Convert a GEOS character to DOS text, using the specified code page. Any character for which there is no DOS equivalent will be replaced by the passed default character.

Include: localize.h

LocalGeosToDos()

Boolean	LocalGeosToDos(
        char *	str,
        word	strSize,
        word	defaultChar);

Convert a GEOS string to DOS text. Any characters for which there is no DOS equivalent will be replaced by the passed default character.

Include: localize.h

LocalGeosToDosChar()

word	LocalGeosToDosChar(
        word	ch,
        word	defaultChar);

Convert a GEOS character to DOS text. Any character for which there is no DOS equivalent will be replaced by the passed default character.

Include: localize.h

LocalGetCodePage()

DosCodePage LocalGetCodePage(void);

This routine returns the current code page, used by DOS to handle international character sets.

Include: localize.h

LocalGetCurrencyFormat()

void	LocalGetCurrencyFormat(
        LocalCurrencyFormat *			buf,
        char *			symbol);

This routine returns the current currency format and symbol.

Include: localize.h

LocalGetDateTimeFormat()

void	LocalGetDateTimeFormat(
        char *		str,
        DateTimeFormat 		format);

This routine returns the user's preferred time and date formats.

Include: localize.h

LocalGetLanguage()

word 	LocalGetLanguage(void); /* Returns a StandardLanguage value */

This routine returns the user machine's language.

LocalGetMeasurementType()

MeasurementTypes LocalGetMeasurementType(void);

This routine returns the user preference between US and metric measurement systems.

Include: localize.h

LocalGetNumericFormat()

void	LocalGetNumericFormat(
        LocalNumericFormat *		buf);

This routine returns the user's preferred format for numbers.

Include: localize.h

LocalGetQuotes()

void	LocalGetQuotes(
        LocalQuotes *		quotes);

This routine returns the user's preferred quote marks.

Include: localize.h

LocalIsDateChar()

Boolean	LocalIsDateChar(
        word	ch);

This routine returns true if the passed character could be part of a date or time.

Include: localize.h

LocalIsDosChar()

Boolean	LocalIsDosChar(
        word	ch);

This routine returns true if the passed character is part of the DOS character set.

Include: localize.h

LocalIsNumChar()

Boolean	LocalIsNumChar(
        word	ch);

This routine returns true if the passed character is a number or part of the number format.

Include: localize.h

LocalIsSymbol()

Boolean	LocalIsSymbol(
        word	ch);

This routine returns true if the passed character is a symbol.

Include: localize.h

LocalIsTimeChar()

Boolean	LocalIsTimeChar(
        word	ch);

This routine returns true if the passed character is a number or part of the user's time format.

Include: localize.h


Up: GEOS SDK TechDocs | Up | Prev: LocalCustomParseDateTime() ... | Next: LocalLexicalValue() ...