- Timestamp:
- Apr 1, 2006, 5:47:02 PM (19 years ago)
- Location:
- branches/branch-1-0
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/branch-1-0/include/helpers/dosh.h
r300 r311 13 13 */ 14 14 15 /* This file Copyright (C) 1997-200 1Ulrich Mller,15 /* This file Copyright (C) 1997-2006 Ulrich Mller, 16 16 * Dmitry A. Steklenev. 17 17 * This file is part of the "XWorkplace helpers" source package. … … 710 710 APIRET doshQuickStartSession(PCSZ pcszPath, 711 711 PCSZ pcszParams, 712 PCSZ pcszTitle, 712 713 USHORT usSessionType, 713 714 BOOL fForeground, -
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.