Country information.
typedef struct _COUNTRYINFO {
ULONG country; /* Country code. */
ULONG codepage; /* Code page. */
ULONG fsDateFmt; /* Date format. */
CHAR szCurrency[5]; /* Currency indicator, null terminated. */
CHAR szThousandsSeparator[2]; /* Thousands separator, null terminated. */
CHAR szDecimal[2]; /* Decimal separator, null terminated. */
CHAR szDateSeparator[2]; /* Date separator, null terminated. */
CHAR szTimeSeparator[2]; /* Time separator, null terminated. */
UCHAR fsCurrencyFmt; /* Bit fields for currency format. */
UCHAR cDecimalPlace; /* Binary number of decimal places used in the currency indication. */
UCHAR fsTimeFmt; /* Time format for file directory presentation. */
USHORT abReserved[2]; /* Reserved; set to 0. */
CHAR szDataSeparator[2]; /* Data list separator, null terminated. */
USHORT abReserved2[5]; /* Reserved; set to 0. */
} COUNTRYINFO;
typedef COUNTRYINFO * PCOUNTRYINFO ;