mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 19:21:38 +00:00
[CMD] Add a ExecuteCommandWithEcho() helper and use it in Batch() and as the implementation of RunInstance() FOR-loop helper.
This commit is contained in:
parent
ce543fbb72
commit
240f6737e9
4 changed files with 34 additions and 26 deletions
|
@ -80,7 +80,15 @@ INT ConvertULargeInteger(ULONGLONG num, LPTSTR des, UINT len, BOOL bPutSeparator
|
|||
HANDLE RunFile(DWORD, LPTSTR, LPTSTR, LPTSTR, INT);
|
||||
INT ParseCommandLine(LPTSTR);
|
||||
struct _PARSED_COMMAND;
|
||||
INT ExecuteCommand(struct _PARSED_COMMAND *Cmd);
|
||||
|
||||
INT
|
||||
ExecuteCommand(
|
||||
IN struct _PARSED_COMMAND *Cmd);
|
||||
|
||||
INT
|
||||
ExecuteCommandWithEcho(
|
||||
IN struct _PARSED_COMMAND *Cmd);
|
||||
|
||||
LPCTSTR GetEnvVarOrSpecial ( LPCTSTR varName );
|
||||
VOID AddBreakHandler (VOID);
|
||||
VOID RemoveBreakHandler (VOID);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue