Prev Next
MAKELCID info
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
file: /Techref/os/win/api/win32/mac/src/mac02_24.htm, 2KB, , updated: 2000/4/7 11:06, local time: 2024/11/4 13:55,
|
| ©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://massmind.org/Techref/os/win/api/win32/mac/src/mac02_24.htm"> MAKELCID</A> |
Did you find what you needed?
|
.
|