Re: kernel32: Partially implement GetGeoInfo()
Nikolay Sivov <nsivov(a)codeweavers.com> writes:
-INT WINAPI GetGeoInfoW(GEOID GeoId, GEOTYPE GeoType, LPWSTR lpGeoData, - int cchData, LANGID language) +struct geoinfo_t { + char iso2A[3]; + char iso3A[4]; + WCHAR iso2W[3]; + WCHAR iso3W[4]; + INT uncode; +};
Surely you don't need both A and W versions of every string. -- Alexandre Julliard julliard(a)winehq.org
On 07/08/2014 01:05 AM, Alexandre Julliard wrote:
Nikolay Sivov <nsivov(a)codeweavers.com> writes:
-INT WINAPI GetGeoInfoW(GEOID GeoId, GEOTYPE GeoType, LPWSTR lpGeoData, - int cchData, LANGID language) +struct geoinfo_t { + char iso2A[3]; + char iso3A[4]; + WCHAR iso2W[3]; + WCHAR iso3W[4]; + INT uncode; +};
Surely you don't need both A and W versions of every string.
Ok, will fix that.
participants (2)
-
Alexandre Julliard -
Nikolay Sivov