Ignore:
Timestamp:
Nov 24, 2002, 9:45:05 PM (23 years ago)
Author:
umoeller
Message:

Sources as of 1.0.0.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/helpers/apps.c

    r223 r229  
    410410 *      representation in OS/2.)
    411411 *
    412  *@@added V0.9.21 (2002-09-04) [bird]
     412 *@@added V1.0.0 (2002-09-04) [bird]
    413413 */
    414414
     
    834834 *
    835835 *@@added V0.9.20 (2002-07-03) [umoeller]
    836  *@@changed V0.9.21 (2002-08-21) [umoeller]: now allowing for UNC
     836 *@@changed V1.0.0 (2002-08-21) [umoeller]: now allowing for UNC
    837837 */
    838838
     
    845845    // check if the executable is fully qualified; if so,
    846846    // check if the executable file exists
    847     if (    // allow UNC V0.9.21 (2002-08-21) [umoeller]
     847    if (    // allow UNC V1.0.0 (2002-08-21) [umoeller]
    848848            (    (pDetails->pszExecutable[0] == '\\')
    849849              && (pDetails->pszExecutable[1] == '\\')
     
    889889 *@@changed V0.9.12 (2001-05-27) [umoeller]: moved from winh.c to apps.c
    890890 *@@changed V0.9.20 (2002-07-03) [umoeller]: now always qualifying executable to fix broken BAT files
    891  *@@changed V0.9.21 (2002-08-12) [umoeller]: this didn't work for batch and cmd files that had "+" characters in their full path, fixed
     891 *@@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
    892892 */
    893893
     
    917917
    918918    // if the path has spaces, or other invalid characters,
    919     // include it in quotes V0.9.21 (2002-08-12) [umoeller]
     919    // include it in quotes V1.0.0 (2002-08-12) [umoeller]
    920920    if (fQuotes = !!strpbrk(pProgDetails->pszExecutable, " +&|="))
    921921        xstrcatc(pstrParams, '"');
     
    931931
    932932    if (fQuotes)
    933         xstrcatc(pstrParams, '"');      // V0.9.21 (2002-08-12) [umoeller]
     933        xstrcatc(pstrParams, '"');      // V1.0.0 (2002-08-12) [umoeller]
    934934
    935935    if (pszOldParams)
     
    11281128 *@@changed V0.9.20 (2002-07-03) [umoeller]: fixed Win-OS/2 full screen breakage
    11291129 *@@changed V0.9.20 (2002-07-03) [umoeller]: fixed broken bat and cmd files when PROG_DEFAULT was set
    1130  *@@changed V0.9.21 (2002-08-18) [umoeller]: fixed cmd and bat files that had "=" in their paths
     1130 *@@changed V1.0.0 (2002-08-18) [umoeller]: fixed cmd and bat files that had "=" in their paths
    11311131 */
    11321132
     
    11441144    ULONG           ulIsWinApp;
    11451145
    1146     // parameter checking extended V0.9.21 (2002-08-21) [umoeller]
     1146    // parameter checking extended V1.0.0 (2002-08-21) [umoeller]
    11471147    if (    (!pcProgDetails)
    11481148         || (!pcProgDetails->pszExecutable)
     
    13081308            }
    13091309
    1310 // V0.9.21: this define is never set. I have thus completely
     1310// V1.0.0: this define is never set. I have thus completely
    13111311// disabled the batch hacks that we used to provide, that is
    13121312// we no longer change the "c:\path\batch.cmd" to "cmd.exe /c c:\path\batch.cmd"
     
    20162016 *@@changed V0.9.20 (2002-08-10) [umoeller]: fixed missing destroy window, made wait optional
    20172017 *@@changed V0.9.20 (2002-08-10) [umoeller]: added pcszWorkingDir
    2018  *@@changed V0.9.21 (2002-08-18) [umoeller]: changed prototype to return APIRET
     2018 *@@changed V1.0.0 (2002-08-18) [umoeller]: changed prototype to return APIRET
    20192019 */
    20202020
     
    20832083 *
    20842084 *@@added V0.9.20 (2002-08-10) [umoeller]
    2085  *@@changed V0.9.21 (2002-08-21) [umoeller]: changed prototype to return browser
     2085 *@@changed V1.0.0 (2002-08-21) [umoeller]: changed prototype to return browser
    20862086 */
    20872087
Note: See TracChangeset for help on using the changeset viewer.