Changeset 860 for trunk/dll/init.c
- Timestamp:
- Nov 10, 2007, 11:58:43 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/init.c
r856 r860 36 36 25 Aug 07 SHL Work around DosSetPathInfo kernel defect 37 37 01 Sep 07 GKY Use xDosSetPathInfo to fix case where FS3 buffer crosses 64k boundry 38 10 Nov 07 GKY Get thousands separator from country info for file sizes. 38 39 39 40 ***********************************************************************/ … … 53 54 #define INCL_DOSERRORS 54 55 #define INCL_LONGLONG 56 #define INCL_DOSNLS 55 57 #include <os2.h> 56 58 #include <os2me.h> … … 941 943 CollectorsortFlags = sortFlags = SORT_DIRSFIRST; 942 944 945 //Get default Country info 946 { 947 COUNTRYCODE Country = {0}; 948 ULONG ulInfoLen = 0; 949 COUNTRYINFO CtryInfo = {0}; 950 951 DosQueryCtryInfo(sizeof(CtryInfo), &Country, 952 &CtryInfo, &ulInfoLen); 953 *ThousandsSeparator = CtryInfo.szThousandsSeparator[0]; 954 } 955 943 956 // load preferences from profile (INI) file 944 957 size = sizeof(BOOL);
Note:
See TracChangeset
for help on using the changeset viewer.