Changeset 229 for trunk/src/helpers/apps.c
- Timestamp:
- Nov 24, 2002, 9:45:05 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/apps.c
r223 r229 410 410 * representation in OS/2.) 411 411 * 412 *@@added V 0.9.21(2002-09-04) [bird]412 *@@added V1.0.0 (2002-09-04) [bird] 413 413 */ 414 414 … … 834 834 * 835 835 *@@added V0.9.20 (2002-07-03) [umoeller] 836 *@@changed V 0.9.21(2002-08-21) [umoeller]: now allowing for UNC836 *@@changed V1.0.0 (2002-08-21) [umoeller]: now allowing for UNC 837 837 */ 838 838 … … 845 845 // check if the executable is fully qualified; if so, 846 846 // check if the executable file exists 847 if ( // allow UNC V 0.9.21(2002-08-21) [umoeller]847 if ( // allow UNC V1.0.0 (2002-08-21) [umoeller] 848 848 ( (pDetails->pszExecutable[0] == '\\') 849 849 && (pDetails->pszExecutable[1] == '\\') … … 889 889 *@@changed V0.9.12 (2001-05-27) [umoeller]: moved from winh.c to apps.c 890 890 *@@changed V0.9.20 (2002-07-03) [umoeller]: now always qualifying executable to fix broken BAT files 891 *@@changed V 0.9.21(2002-08-12) [umoeller]: this didn't work for batch and cmd files that had "+" characters in their full path, fixed891 *@@changed V1.0.0 (2002-08-12) [umoeller]: this didn't work for batch and cmd files that had "+" characters in their full path, fixed 892 892 */ 893 893 … … 917 917 918 918 // if the path has spaces, or other invalid characters, 919 // include it in quotes V 0.9.21(2002-08-12) [umoeller]919 // include it in quotes V1.0.0 (2002-08-12) [umoeller] 920 920 if (fQuotes = !!strpbrk(pProgDetails->pszExecutable, " +&|=")) 921 921 xstrcatc(pstrParams, '"'); … … 931 931 932 932 if (fQuotes) 933 xstrcatc(pstrParams, '"'); // V 0.9.21(2002-08-12) [umoeller]933 xstrcatc(pstrParams, '"'); // V1.0.0 (2002-08-12) [umoeller] 934 934 935 935 if (pszOldParams) … … 1128 1128 *@@changed V0.9.20 (2002-07-03) [umoeller]: fixed Win-OS/2 full screen breakage 1129 1129 *@@changed V0.9.20 (2002-07-03) [umoeller]: fixed broken bat and cmd files when PROG_DEFAULT was set 1130 *@@changed V 0.9.21(2002-08-18) [umoeller]: fixed cmd and bat files that had "=" in their paths1130 *@@changed V1.0.0 (2002-08-18) [umoeller]: fixed cmd and bat files that had "=" in their paths 1131 1131 */ 1132 1132 … … 1144 1144 ULONG ulIsWinApp; 1145 1145 1146 // parameter checking extended V 0.9.21(2002-08-21) [umoeller]1146 // parameter checking extended V1.0.0 (2002-08-21) [umoeller] 1147 1147 if ( (!pcProgDetails) 1148 1148 || (!pcProgDetails->pszExecutable) … … 1308 1308 } 1309 1309 1310 // V 0.9.21: this define is never set. I have thus completely1310 // V1.0.0: this define is never set. I have thus completely 1311 1311 // disabled the batch hacks that we used to provide, that is 1312 1312 // we no longer change the "c:\path\batch.cmd" to "cmd.exe /c c:\path\batch.cmd" … … 2016 2016 *@@changed V0.9.20 (2002-08-10) [umoeller]: fixed missing destroy window, made wait optional 2017 2017 *@@changed V0.9.20 (2002-08-10) [umoeller]: added pcszWorkingDir 2018 *@@changed V 0.9.21(2002-08-18) [umoeller]: changed prototype to return APIRET2018 *@@changed V1.0.0 (2002-08-18) [umoeller]: changed prototype to return APIRET 2019 2019 */ 2020 2020 … … 2083 2083 * 2084 2084 *@@added V0.9.20 (2002-08-10) [umoeller] 2085 *@@changed V 0.9.21(2002-08-21) [umoeller]: changed prototype to return browser2085 *@@changed V1.0.0 (2002-08-21) [umoeller]: changed prototype to return browser 2086 2086 */ 2087 2087
Note:
See TracChangeset
for help on using the changeset viewer.