Revert API changes of findlocale
authorMathnerd314 <man.is.allan@gmail.com>
Mon, 22 Feb 2010 21:26:44 +0000 (21:26 +0000)
committerMathnerd314 <man.is.allan@gmail.com>
Mon, 22 Feb 2010 21:26:44 +0000 (21:26 +0000)
SVN-Revision: 6396

external/findlocale/findlocale.c
external/findlocale/findlocale.h

index e08ca9d..4874ba2 100644 (file)
@@ -416,7 +416,7 @@ lcid_to_fl(LCID lcid,
 
 
 FL_Success
-FL_FindLocale(FL_Locale **locale) {
+FL_FindLocale(FL_Locale **locale, FL_Domain domain) {
   FL_Success success = FL_FAILED;
   FL_Locale *rtn = malloc(sizeof(FL_Locale));
   rtn->lang = NULL;
index e1ae285..c388dee 100644 (file)
@@ -27,7 +27,7 @@ typedef enum {
 /* This allocates/fills in a FL_Locale structure with pointers to
    strings (which should be treated as static), or NULL for inappropriate /
    undetected fields. */
-FL_Success FL_FindLocale(FL_Locale **locale);
+FL_Success FL_FindLocale(FL_Locale **locale, FL_Domain domain);
 /* This should be used to free the struct written by FL_FindLocale */
 void FL_FreeLocale(FL_Locale **locale);