Changeset 310 for trunk/src/helpers/dosh.c
- Timestamp:
- Apr 1, 2006, 5:46:11 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/dosh.c
r271 r310 4658 4658 *@@changed V1.0.2 (2003-02-04) [jsmall ]: inserted new 3rd parameter for session type 4659 4659 *@@changed V1.0.2 (2003-02-04) [jsmall ]: changed code so when fWait = FALSE then session is started as independent, not as a child 4660 *@@changed V1.0.5 (2006-04-01) [pr]: Added pcszTitle parameter 4660 4661 */ 4661 4662 4662 4663 APIRET doshQuickStartSession(PCSZ pcszPath, // in: program to start 4663 4664 PCSZ pcszParams, // in: parameters for program 4665 PCSZ pcszTitle, // in: window title 4664 4666 USHORT usSessionType, // in: session type 4665 4667 BOOL fForeground, // in: if TRUE, session will be in foreground … … 4697 4699 SData.TraceOpt = SSF_TRACEOPT_NONE; 4698 4700 4699 SData.PgmTitle = (PSZ)pcszPath; // title for window 4701 // V1.0.5 (2006-04-01) [pr] 4702 if (pcszTitle && *pcszTitle) 4703 SData.PgmTitle = (PSZ)pcszTitle; // title for window 4704 else 4705 SData.PgmTitle = (PSZ)pcszPath; 4706 4700 4707 SData.PgmName = (PSZ)pcszPath; 4701 4708 SData.PgmInputs = (PSZ)pcszParams;
Note:
See TracChangeset
for help on using the changeset viewer.