Scroll to navigation

EnumSystemCodePagesA(3w) Wine API EnumSystemCodePagesA(3w)

NAME

EnumSystemCodePagesA (KERNEL32.@)

SYNOPSIS

BOOL EnumSystemCodePagesA
(
CODEPAGE_ENUMPROCA lpfnCodePageEnum,
DWORD flags
)
 

DESCRIPTION

Call a user defined function for every code page installed on the system.
 

PARAMS

lpfnCodePageEnum [In] User CODEPAGE_ENUMPROC to call with each found code page.
flags [In] Reserved, set to 0.
 

RETURNS

TRUE, If all code pages have been enumerated, or FALSE if lpfnCodePageEnum returned FALSE to stop the enumeration.
 

IMPLEMENTATION

Declared in "winnls.h".
Implemented in "dlls/kernel32/locale.c".
Debug channel "nls".
Oct 2012 Wine API