I want to get current country code for oldest Windows systems.
I was using GetLocaleInfo() with LOCALE_ICOUNTRY flag, but then I've realized it returns wrong results (the same values for different countries), so I've tried LOCALE_SISO3166CTRYNAME which returns country code in ISO3166 standard 2 letters code (eg. 'US')
http://www.iso.org/iso/english_country_names_and_code_elements
...it works fine, but not on the oldest Windows versions.
So my question is, how to get valid country code (identifier, name, whatever...) on Windows 95 / NT 3.51?