Changeset 1604
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/dll/fm3res.rc ¶
r1592 r1604 3308 3308 IDS_CMINSERTERRTEXT "Record insert failed" 3309 3309 IDS_CMALLOCRECERRTEXT "Record allocation failed" 3310 IDS_FM3SAVEDIRERROR1TEXT "Unable to find FM2.INI directory and current directory" 3310 3311 IDS_NOWINDOWTEXT "No window" 3311 3312 IDS_MAKEARCTITLETEXT "FM/2: Makearc " -
TabularUnified trunk/dll/fm3str.h ¶
r1557 r1604 971 971 #define IDS_CMINSERTERRTEXT 964 972 972 #define IDS_CMALLOCRECERRTEXT 965 973 #define IDS_FM3SAVEDIRERROR1TEXT 966 973 974 #define IDS_NOWINDOWTEXT 968 974 975 #define IDS_2SYSTEMVIOTEXT 969 -
TabularUnified trunk/dll/init.c ¶
r1603 r1604 95 95 aren't user settable; realappname should be used for setting applicable to 96 96 one or more miniapp but not to FM/2 97 17 JAN 10 GKY Changes to get working with Watcom 1.9 Beta (1/16/10). Mostly cast CHAR CONSTANT * as CHAR *. 97 17 JAN 10 GKY Changes to get working with Watcom 1.9 Beta (1/16/10). Mostly cast CHAR 98 CONSTANT * as CHAR *. 98 99 09 MAY 10 JBS Ticket 434: Make fDontSuggestAgain a "global" flag, not a per app flag 99 100 23 Oct 10 GKY Changes to populate and utilize a HELPTABLE for context specific help … … 104 105 by temp file creation failures. 105 106 03 Mar 11 SHL Try using FM3INI to create help instance if fm3.hlp not in current directory 107 06 Aug 11 GKY Fixed failure to initalize pFM2SaveDirectory if TEMP and TMP were not present 108 or invalid 106 109 107 110 ***********************************************************************/ … … 638 641 CHAR dllfile[CCHMAXPATH]; 639 642 CHAR temp[CCHMAXPATH]; 643 CHAR *p; 640 644 ULONG size; 641 645 BOOL fSeparateParmsApp; … … 719 723 720 724 //Save the FM2 save directory name. This is the location of the ini, dat files etc. 721 save_dir2(temp); 725 rc = save_dir2(temp); 726 if (rc) { 727 saymsg(MB_CANCEL | MB_ICONEXCLAMATION, 728 HWND_DESKTOP, 729 GetPString(IDS_ERRORTEXT), GetPString(IDS_FM3SAVEDIRERROR1TEXT)); 730 return FALSE; 731 } 722 732 pFM2SaveDirectory = xstrdup(temp, pszSrcFile, __LINE__); 733 if (!pFM2SaveDirectory) 734 return FALSE; // already complained 723 735 // set up default root names for temp file storage and archive goodies 724 env = getenv("TMP"); 725 if (env == NULL) 726 env = getenv("TEMP"); 736 env = getenv("TEMP"); 737 if (env != NULL) { 738 rc = 0; 739 DosError(FERR_DISABLEHARDERR); 740 rc = DosQueryPathInfo(env, FIL_STANDARD, &fs3, sizeof(fs3)); 741 } 742 if (rc || env == NULL) 743 env = getenv("TMP"); 727 744 if (env != NULL) { 728 745 DosError(FERR_DISABLEHARDERR); 729 746 rc = DosQueryPathInfo(env, FIL_STANDARD, &fs3, sizeof(fs3)); 730 747 if (!rc) { 731 CHAR *enddir, *p,szTempName[CCHMAXPATH];748 CHAR *enddir, szTempName[CCHMAXPATH]; 732 749 FILEFINDBUF3 ffb; 733 750 HDIR search_handle; … … 834 851 835 852 if ((!strchr(profile, '\\') && !strchr(profile, ':')) || 836 !(fmprof = PrfOpenProfile((HAB)0, profile))) 837 { 853 !(fmprof = PrfOpenProfile((HAB)0, profile))) { 838 854 /* figure out where to put INI file... */ 839 855 CHAR inipath[CCHMAXPATH]; … … 854 870 } 855 871 } 856 if (!env){872 else { 857 873 env = searchpath(profile); 858 874 if (!env) 859 875 env = profile; 860 876 strcpy(inipath, env); 861 } 862 863 /* in some odd cases the INI file can get set to readonly status */ 864 /* here we test it and reset the readonly bit if necessary */ 877 } //fixme the DosCopies probably fail if the INI isn't in the FM2 directory GKY 06 Aug 11 865 878 if (!*inipath) 866 879 strcpy(inipath, profile); 867 880 DosError(FERR_DISABLEHARDERR); 868 // fixme to check for backup if ini not found GKY 1-30-09869 881 rc = DosQueryPathInfo(inipath, FIL_STANDARD, &fs3, sizeof(fs3)); 870 882 if (rc) { 871 if (rc == ERROR_FILE_NOT_FOUND) 872 fWantFirstTimeInit = TRUE; 873 } 874 else { //Check the ini file header and restore from backup if corupted 883 if (rc == ERROR_FILE_NOT_FOUND) { 884 DosCopy("FM3INI.BAK", "FM3.INI", 0); 885 } 886 rc = DosQueryPathInfo(inipath, FIL_STANDARD, &fs3, sizeof(fs3)); 887 if (rc) 888 fWantFirstTimeInit = TRUE; 889 } 890 if (!fWantFirstTimeInit) { //Check the ini file header and restore from backup if corupted 875 891 if (!CheckFileHeader(inipath, "\xff\xff\xff\xff\x14\x00\x00\x00", 0L)) { 876 877 878 879 880 881 DosCopy("FM3.INI", "FM3INI2.BAD", DCPY_EXISTING);882 883 892 saymsg(MB_ENTER,HWND_DESKTOP, GetPString(IDS_DEBUG_STRING), 893 GetPString(IDS_INIFAILURETEXT)); 894 DosCopy("FM3.INI", "FM3INI.BAD", DCPY_EXISTING); 895 DosCopy("FM3INI.BAK", "FM3.INI", DCPY_EXISTING); 896 if (!CheckFileHeader(inipath, "\xff\xff\xff\xff\x14\x00\x00\x00", 0L)) { 897 DosCopy("FM3.INI", "FM3INI.BAD2", DCPY_EXISTING); 898 fWantFirstTimeInit = TRUE; 899 } 884 900 } 885 if (!fWantFirstTimeInit) { 886 fIniExisted = TRUE; 887 if (fs3.attrFile & (FILE_READONLY | FILE_HIDDEN | FILE_SYSTEM)) { 888 fs3.attrFile &= ~(FILE_READONLY | FILE_HIDDEN | FILE_SYSTEM); 889 rc = xDosSetPathInfo(inipath, FIL_STANDARD, &fs3, sizeof(fs3), 0); 890 if (rc) { 891 Dos_Error(MB_ENTER, rc, HWND_DESKTOP, pszSrcFile, __LINE__, 892 GetPString(IDS_INIREADONLYTEXT), inipath); 893 } 894 } 901 } 902 // in some odd cases the INI file can get set to readonly status 903 // here we test it and reset the readonly bit if necessary 904 if (!fWantFirstTimeInit) { 905 fIniExisted = TRUE; 906 if (fs3.attrFile & (FILE_READONLY | FILE_HIDDEN | FILE_SYSTEM)) { 907 fs3.attrFile &= ~(FILE_READONLY | FILE_HIDDEN | FILE_SYSTEM); 908 rc = xDosSetPathInfo(inipath, FIL_STANDARD, &fs3, sizeof(fs3), 0); 909 if (rc) { 910 Dos_Error(MB_ENTER, rc, HWND_DESKTOP, pszSrcFile, __LINE__, 911 GetPString(IDS_INIREADONLYTEXT), inipath); 912 } 895 913 } 896 914 } -
TabularUnified trunk/dll/select.c ¶
r1565 r1604 389 389 390 390 if (unmarkit) 391 WinSendMsg(hwndCnr, CM_SETRECORDEMPHASIS, pci,391 WinSendMsg(hwndCnr, CM_SETRECORDEMPHASIS, MPFROMP(pci), 392 392 MPFROM2SHORT(FALSE, CRA_SELECTED | CRA_CURSORED | 393 393 CRA_INUSE | CRA_SOURCE));
Note:
See TracChangeset
for help on using the changeset viewer.