Code example!!
-
Hi again! Does anyone know or have any code example of how to use the API callback function EnumSystemLanguageGroups(....) ??
There's not a whole lot to it:
EnumSystemLanguageGroups(EnumProc, LGRPID_INSTALLED, 0);
See here for more.
"Ideas are a dime a dozen. People who put them into action are priceless." - Unknown
-
There's not a whole lot to it:
EnumSystemLanguageGroups(EnumProc, LGRPID_INSTALLED, 0);
See here for more.
"Ideas are a dime a dozen. People who put them into action are priceless." - Unknown
Thanks a lot. The problem I get doing this is an error message when I compile. c:\Documents and Settings\blaol\Desktop\Regional Settings Plugin\Regional Settings\Regional Settings\regionalSettingsPlugin.cpp(459): error C3861: 'EnumSystemLanguageGroups': identifier not found, even with argument-dependent lookup Don't know what I'm doing wrong.
-
Thanks a lot. The problem I get doing this is an error message when I compile. c:\Documents and Settings\blaol\Desktop\Regional Settings Plugin\Regional Settings\Regional Settings\regionalSettingsPlugin.cpp(459): error C3861: 'EnumSystemLanguageGroups': identifier not found, even with argument-dependent lookup Don't know what I'm doing wrong.
-
Thanks a lot. The problem I get doing this is an error message when I compile. c:\Documents and Settings\blaol\Desktop\Regional Settings Plugin\Regional Settings\Regional Settings\regionalSettingsPlugin.cpp(459): error C3861: 'EnumSystemLanguageGroups': identifier not found, even with argument-dependent lookup Don't know what I'm doing wrong.
Hi, Based ON MSDN : Requirements Windows NT/2000/XP: Included in Windows 2000 and later. Windows 95/98/Me: Unsupported. Header: Declared in Winnls.h; include Windows.h. Library: Use Kernel32.lib. did you include th header files and Kernek32.Lib in your project? Rgards, Eli
-
There's not a whole lot to it:
EnumSystemLanguageGroups(EnumProc, LGRPID_INSTALLED, 0);
See here for more.
"Ideas are a dime a dozen. People who put them into action are priceless." - Unknown
Hi Again! Reading a little about this callback functions I understand that EnumSystemLanguageGroups is used with this callback function EnumLanguagesGroupsProc. The question is how do I use them together. EnumSystemLanguageGroups has a parameter of type, LANGUAGEGROUP_ENUMPROC. Which is passed from EnumLanguageGroupsProc. Can you maybe give me an example of how to use them? Thanks!
-
Hi Again! Reading a little about this callback functions I understand that EnumSystemLanguageGroups is used with this callback function EnumLanguagesGroupsProc. The question is how do I use them together. EnumSystemLanguageGroups has a parameter of type, LANGUAGEGROUP_ENUMPROC. Which is passed from EnumLanguageGroupsProc. Can you maybe give me an example of how to use them? Thanks!