|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| No
| Import Library
| kernel32.lib
| Header File
| winnls.h
| Unicode
| No
| Platform Notes
| None
|
|
|
GetCPInfo
The GetCPInfo function retrieves information about any valid installed or available code
page.
BOOL GetCPInfo(
UINT CodePage,
| // code page identifier
| LPCPINFO lpCPInfo
| // address of structure for information
| );
|
|
Parameters
CodePage
Specifies the code page about which information is to be retrieved. You can
specify the code page identifier for any installed or available code page, or you
can specify one of the following predefined values:
Value
| Meaning
| CP_ACP
| Use the system default ANSI code page
| CP_MACCP
| Use the system default Macintosh code page
| CP_OEMCP
| Use the system default OEM code page
|
lpCPInfo
Points to a CPINFO structure that receives information about the code page.
Return Values
If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero. To get extended error
information, call GetLastError .
Remarks
If the specified code page is not installed or not available, GetCPInfo sets the last-error value to ERROR_INVALID_PARAMETER.
See Also
GetACP, GetOEMCP, CPINFO
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
More Online Helps
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|