Changeset 311 for branches/branch-1-0/src/helpers/dosh.c
- Timestamp:
- Apr 1, 2006, 5:47:02 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/branch-1-0/src/helpers/dosh.c
r300 r311 4310 4310 *@@changed V1.0.4 (2005-10-16) [jsmall ]: inserted new 3rd parameter for session type 4311 4311 *@@changed V1.0.4 (2005-10-16) [jsmall ]: changed code so when fWait = FALSE then session is started as independent, not as a child 4312 *@@changed V1.0.5 (2006-04-01) [pr]: Added pcszTitle parameter 4312 4313 */ 4313 4314 4314 4315 APIRET doshQuickStartSession(PCSZ pcszPath, // in: program to start 4315 4316 PCSZ pcszParams, // in: parameters for program 4317 PCSZ pcszTitle, // in: window title 4316 4318 USHORT usSessionType, // in: session type 4317 4319 BOOL fForeground, // in: if TRUE, session will be in foreground … … 4348 4350 SData.TraceOpt = SSF_TRACEOPT_NONE; 4349 4351 4350 SData.PgmTitle = (PSZ)pcszPath; // title for window 4352 // V1.0.5 (2006-04-01) [pr] 4353 if (pcszTitle && *pcszTitle) 4354 SData.PgmTitle = (PSZ)pcszTitle; // title for window 4355 else 4356 SData.PgmTitle = (PSZ)pcszPath; 4357 4351 4358 SData.PgmName = (PSZ)pcszPath; 4352 4359 SData.PgmInputs = (PSZ)pcszParams;
Note:
See TracChangeset
for help on using the changeset viewer.