Changeset 8048 for trunk/src/shell32/shell.c
- Timestamp:
- Mar 8, 2002, 12:01:03 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/shell32/shell.c
r7085 r8048 1 /* $Id: shell.c,v 1. 2 2001-10-17 09:15:20 phallerExp $ */1 /* $Id: shell.c,v 1.3 2002-03-08 11:01:00 sandervl Exp $ */ 2 2 /* 3 3 * Shell Library Functions … … 400 400 /* First try to execute lpFile with lpParameters directly */ 401 401 strcpy(cmd,lpFile); 402 strcat(cmd,lpParameters ? lpParameters : ""); 402 if (lpParameters) { 403 strcat(cmd, " " ); 404 strcat(cmd,lpParameters ); 405 } 403 406 404 407 retval = WinExec16( cmd, iShowCmd );
Note:
See TracChangeset
for help on using the changeset viewer.