|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| Yes
| Import Library
|
| Header File
| winnt.h
| Unicode
| No
| Platform Notes
| None
|
|
|
MAKELCID
The MAKELCID macro creates a locale identifier from a language identifier.
DWORD MAKELCID(
WORD wLanguageID,
| // language identifier
| WORD wSortID
| // sorting identifier
| );
|
|
Parameters
wLanguageID
Specifies the language identifier. This parameter is a combination of a
primary language identifier and a sublanguage identifier and is usually created by
using the MAKELANGID macro.
wSortID
Specifies the sort identifier. Use the value SORT_DEFAULT for this parameter.
Return Values
The return value is a locale identifier.
Remarks
The MAKELCID macro is defined as follows:
#define MAKELCID(lgid, srtid) \
((DWORD)((((DWORD)((WORD )(srtid))) << 16) | \
((DWORD)((WORD )(lgid)))))
See Also
LANGIDFROMLCID, MAKELANGID, SORTIDFROMLCID
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
TMS Scripter Studio Pro components for Delphi/C++Builder
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
|