Changeset 76 for trunk/include


Ignore:
Timestamp:
May 27, 2001, 8:10:36 AM (24 years ago)
Author:
umoeller
Message:

Misc changes.

Location:
trunk/include/helpers
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/helpers/dosh.h

    r69 r76  
    376376                                 PULONG pulSID,
    377377                                 PPID ppid);
    378 
    379     /* ******************************************************************
    380      *
    381      *   Environment helpers
    382      *
    383      ********************************************************************/
    384 
    385     /*
    386      *@@ DOSENVIRONMENT:
    387      *      structure holding an array of environment
    388      *      variables (papszVars). This is initialized
    389      *      doshGetEnvironment,
    390      *
    391      *@@added V0.9.4 (2000-07-19) [umoeller]
    392      */
    393 
    394     typedef struct _DOSENVIRONMENT
    395     {
    396         ULONG       cVars;              // count of vars in papzVars
    397         PSZ         *papszVars;         // array of PSZ's to environment strings (VAR=VALUE)
    398     } DOSENVIRONMENT, *PDOSENVIRONMENT;
    399 
    400     APIRET doshParseEnvironment(const char *pcszEnv,
    401                                 PDOSENVIRONMENT pEnv);
    402 
    403     APIRET doshGetEnvironment(PDOSENVIRONMENT pEnv);
    404 
    405     PSZ* doshFindEnvironmentVar(PDOSENVIRONMENT pEnv,
    406                                 PSZ pszVarName);
    407 
    408     APIRET doshSetEnvironmentVar(PDOSENVIRONMENT pEnv,
    409                                  PSZ pszNewEnv,
    410                                  BOOL fAddFirst);
    411 
    412     APIRET doshConvertEnvironment(PDOSENVIRONMENT pEnv,
    413                                   PSZ *ppszEnv,
    414                                   PULONG pulSize);
    415 
    416     APIRET doshFreeEnvironment(PDOSENVIRONMENT pEnv);
    417378
    418379    /********************************************************************
  • trunk/include/helpers/winh.h

    r73 r76  
    4040 *@@include #define INCL_WINSHELLDATA
    4141 *@@include #define INCL_WINSWITCHLIST      // for winhQuerySwitchList
    42  *@@include #define INCL_WINPROGRAMLIST     // for winhStartApp
     42 *@@include #define INCL_WINPROGRAMLIST     // for appStartApp
    4343 *@@include #define INCL_WINHELP            // for help manager helpers
    4444 *@@include #include <os2.h>
     
    682682     ********************************************************************/
    683683
    684     #ifdef INCL_WINPROGRAMLIST
    685         // additional PROG_* flags for winhQueryAppType
    686         #define PROG_XWP_DLL            998      // dynamic link library
    687 
    688         APIRET winhQueryAppType(const char *pcszExecutable,
    689                                 PULONG pulDosAppType,
    690                                 PULONG pulWinAppType);
    691 
    692         HAPP XWPENTRY winhStartApp(HWND hwndNotify, const PROGDETAILS *pcProgDetails);
    693     #endif
    694 
    695684    BOOL XWPENTRY winhAnotherInstance(const char *pcszSemName, BOOL fSwitch);
    696685
Note: See TracChangeset for help on using the changeset viewer.