KERNEL32: stub implementation for GetGeoInfo

Mike McCormack mike at codeweavers.com
Wed May 11 07:05:30 CDT 2005


ChangeLog:
* stub implementation for GetGeoInfo
-------------- next part --------------
Index: dlls/kernel/locale.c
===================================================================
RCS file: /home/wine/wine/dlls/kernel/locale.c,v
retrieving revision 1.59
diff -u -p -r1.59 locale.c
--- dlls/kernel/locale.c	18 Apr 2005 15:42:49 -0000	1.59
+++ dlls/kernel/locale.c	11 May 2005 12:05:47 -0000
@@ -3230,3 +3230,17 @@ BOOL WINAPI EnumUILanguagesW(UILANGUAGE_
     pUILangEnumProc( value, lParam );
     return(TRUE);
 }
+
+INT WINAPI GetGeoInfoW(GEOID GeoId, GEOTYPE GeoType, LPWSTR lpGeoData, 
+                int cchData, LANGID language)
+{
+    FIXME("%ld %ld %p %d %d\n", GeoId, GeoType, lpGeoData, cchData, language);
+    return 0;
+}
+
+INT WINAPI GetGeoInfoA(GEOID GeoId, GEOTYPE GeoType, LPSTR lpGeoData, 
+                int cchData, LANGID language)
+{
+    FIXME("%ld %ld %p %d %d\n", GeoId, GeoType, lpGeoData, cchData, language);
+    return 0;
+}
Index: dlls/kernel/kernel32.spec
===================================================================
RCS file: /home/wine/wine/dlls/kernel/kernel32.spec,v
retrieving revision 1.148
diff -u -p -r1.148 kernel32.spec
--- dlls/kernel/kernel32.spec	10 May 2005 15:22:10 -0000	1.148
+++ dlls/kernel/kernel32.spec	11 May 2005 12:05:48 -0000
@@ -417,8 +417,8 @@
 @ stdcall GetFileType(long)
 @ stdcall GetFullPathNameA(str long ptr ptr)
 @ stdcall GetFullPathNameW(wstr long ptr ptr)
-@ stub GetGeoInfoA
-@ stub GetGeoInfoW
+@ stdcall GetGeoInfoA(long long ptr long long)
+@ stdcall GetGeoInfoW(long long ptr long long)
 @ stdcall GetHandleContext(long)
 @ stdcall GetHandleInformation(long ptr)
 @ stub GetLSCallbackTarget


More information about the wine-patches mailing list