7 Jul
2014
7 Jul
'14
10:33 p.m.
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.