Kernel32EnumSystemCodePages Method
Enumerates the code pages that are either installed on or supported by an operating system.
Namespace: DevCase.Win32.NativeMethodsAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[DllImportAttribute("Kernel32.dll", CharSet = CharSet.Auto, BestFitMapping = false,
ThrowOnUnmappableChar = true, SetLastError = true)]
public static bool EnumSystemCodePages(
DelegatesEnumCodePagesProc codePageEnumProc,
EnumSystemCodePagesFlags flags
)
public:
[DllImportAttribute(L"Kernel32.dll", CharSet = CharSet::Auto, BestFitMapping = false,
ThrowOnUnmappableChar = true, SetLastError = true)]
static bool EnumSystemCodePages(
DelegatesEnumCodePagesProc^ codePageEnumProc,
EnumSystemCodePagesFlags flags
)
[<DllImportAttribute("Kernel32.dll", CharSet = CharSet.Auto, BestFitMapping = false,
ThrowOnUnmappableChar = true, SetLastError = true)>]
static member EnumSystemCodePages :
codePageEnumProc : DelegatesEnumCodePagesProc *
flags : EnumSystemCodePagesFlags -> bool
No code example is currently available or this language may not be supported.
- codePageEnumProc DelegatesEnumCodePagesProc
-
Pointer to an application-defined callback function.
The EnumSystemCodePages(DelegatesEnumCodePagesProc, EnumSystemCodePagesFlags) function enumerates code pages by making
repeated calls to this callback function.
For more information, see DelegatesEnumCodePagesProc.
- flags EnumSystemCodePagesFlags
-
Flag specifying the code pages to enumerate.
Boolean
Returns
if successful, or
otherwise.