Revert API changes of findlocale
authormathnerd314 <mathnerd314@837edb03-e0f3-0310-88ca-d4d4e8b29345>
Mon, 22 Feb 2010 21:26:44 +0000 (21:26 +0000)
committermathnerd314 <mathnerd314@837edb03-e0f3-0310-88ca-d4d4e8b29345>
Mon, 22 Feb 2010 21:26:44 +0000 (21:26 +0000)
git-svn-id: http://supertux.lethargik.org/svn/supertux/trunk/supertux@6396 837edb03-e0f3-0310-88ca-d4d4e8b29345

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);