This structure contains information about a given locale identifier (LCID) value, including the corresponding RFC1766-conforming name.Syntaxtypedef struct tagRFC1766INFO { LCID lcid; WCHAR wszRfc1766[MAX_RFC1766_NAME]; WCHAR wszLocaleName[MAX_LOCALE_NAME]; } RFC1766INFO, *PRFC1766INFO; ...
(6); pEnumRfc1766->Next(10, pcpInfo, &ccpInfo); // Use the information returned about these ten locales. pEnumRfc1766->Reset(); pEnumRfc1766->Next(10, pcpInfo, &ccpInfo); // Use the information returned about the first 10. CoTaskMemRealloc((void*)pcpInfo, sizeof(RFC1766INFO)*ccp...
This method retrieves the locale identifier (LCID) value corresponding to the given RFC1766-conforming name.SyntaxKopie HRESULT GetLcidFromRfc1766( LCID* pLocale, BSTR bstrRfc1766 ); ParameterspLocale [out] Address of the buffer to receive the LCID....
The following example shows the syntax for retrieving the first and third RFC1766INFO structures from the enumeration sequence.複製 pMultiLanguage->EnumCodePages(&pEnumRfc1766); PRFC1766INFO prfcInfo; ULONG crfcInfo; prfcInfo = (PRFC1766INFO)CoTaskMemAlloc(sizeof(RFC1766INFO)*2); pEnumRfc1766...
IEnumRfc1766::Skip (Windows Embedded CE 6.0)發行項 2012/01/05 本文內容 Syntax Parameters Return Value Example Code 顯示其他 2 個 1/6/2010This method advances the position of the Locale Enumeration object in the enumeration sequence by the specified amount....
This method retrieves information about the specified number of locales in an array of RFC1766INFO structures.SyntaxKopie HRESULT Next( ULONG celt, PRFC1766INFO rgelt, ULONG* pceltFetched ); Parameterscelt [in] Number of RFC1766INFO structures the client wants returned. This parameter also ...
IEnumRfc1766::Skip 项目 2006/06/30 This method advances the position of the Locale Enumeration object in the enumeration sequence by the specified amount.复制 HRESULT Skip( ULONG celt ); Parameterscelt [in] Number of elements to advance in the enumeration sequence....
The following example shows the syntax for retrieving the first and third RFC1766INFO structures from the enumeration sequence.Copy pMultiLanguage->EnumCodePages(&pEnumRfc1766); PRFC1766INFO prfcInfo; ULONG crfcInfo; prfcInfo = (PRFC1766INFO)CoTaskMemAlloc(sizeof(RFC1766INFO)*2); pEnumRfc1766...
Locale name in a form conforming to RFC1766. wszLocaleName Locale name in a Windows-defined form. Remarks A client can retrieve this information for every LCID the system recognizes through calls to theIEnumRfc1766::Nextmethod. Alternatively, this information can be accessed for one LCID at a...
If the end of the enumeration sequence is met in this process, the number of RFC1766INFO structures retrieved is returned in the pceltFetched parameter. The IEnumRfc1766::Next method also advances the position of the Locale Enumeration object in the enumeration sequence....