You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
340 B
24 lines
340 B
/*
|
|
* cmd.c - Main Module of Command.lib
|
|
*
|
|
* Sudeepb 09-Apr-1991 Craeted
|
|
*/
|
|
|
|
#include "cmd.h"
|
|
#include "cmdsvc.h"
|
|
#include "host_def.h"
|
|
|
|
|
|
/* CmdInit - Command Initialiazation routine.
|
|
*
|
|
* Entry
|
|
* None
|
|
* Exit
|
|
* None
|
|
*
|
|
*/
|
|
|
|
VOID CMDInit (VOID)
|
|
{
|
|
cmdHomeDirectory[0] = *pszSystem32Path;
|
|
}
|