Table of Contents

This is part of Family API which allow to create dual-os version of program runs under OS/2 and DOS

Note: This is legacy API call. It is recommended to use 32-bit equivalent

2021/09/17 04:47 · prokushev · 0 Comments
2021/08/20 03:18 · prokushev · 0 Comments

DosGetCp

This call allows a process to query the current process code page and the prepared system code pages.

Syntax

 DosGetCp (Length, CodePageList, DataLength)

Parameters

Return Code

rc (USHORT) - return:Return code

Remarks

If the process code page identifier was previously set by DosSetCp or inherited by a process, it is returned to the caller.

An input list size (length) of two bytes returns only the current process code page identifier. If CodePageList length is too small to hold all the available information, then as much information as possible is provided in the available space and ERROR_CPLIST_TOO_SMALL is returned.

If no codepages were prepared with the CODEPAGE command, a length of two and current codepage identifier value of zero is returned.

Family API Considerations

Some options operate differently in the DOS mode than in OS/2 mode. Therefore, the following restriction applies to DosGetCp when coding for the DOS mode:

The current process code page, and no more than one prepared system code page, is returned.

Bindings

C

#define INCL_DOSNLS
 
USHORT  rc = DosGetCp(Length, CodePageList, DataLength);
 
USHORT           Length;        /* Length of list */
PUSHORT          CodePageList;  /* List (returned) */
PUSHORT          DataLength;    /* Length of list (returned) */
 
USHORT           rc;            /* return code */

MASM

EXTRN  DosGetCp:FAR
INCL_DOSNLS         EQU 1
 
PUSH   WORD    Length        ;Length of list
PUSH@  WORD    CodePageList  ;List (returned)
PUSH@  WORD    DataLength    ;Length of list (returned)
CALL   DosGetCp
 
Returns WORD

Example

This example gets the current code page and then up to 3 other prepared codepages.

#define INCL_DOSNLS
 
USHORT CpList[8];
USHORT CpSize;
USHORT rc;
 
 rc = DosGetCp(sizeof(CpList),   /* Length of list */
               CpList,           /* List */
               &CpSize);         /* Length of returned list */

*DosSetCp