mirror of
https://github.com/reactos/reactos.git
synced 2025-06-20 07:36:05 +00:00
28 lines
379 B
C
28 lines
379 B
C
![]() |
/*
|
||
|
* GOTO.C - goto internal batch command.
|
||
|
*
|
||
|
* History:
|
||
|
*
|
||
|
* 1 Feb 2008 (Christoph von Wittich)
|
||
|
* started.
|
||
|
*/
|
||
|
|
||
|
#include <precomp.h>
|
||
|
|
||
|
|
||
|
/* unimplemented */
|
||
|
|
||
|
/* our current default is delayedexpansion */
|
||
|
|
||
|
INT cmd_setlocal (LPTSTR cmd, LPTSTR param)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
/* endlocal doesn't take any params */
|
||
|
INT cmd_endlocal (LPTSTR cmd, LPTSTR param)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|