示例#1
0
//Entry point of reboot.
VOID Reboot(LPSTR pstr)
{
	ClsHandler(NULL); //Clear screen first.
#ifdef __I386__
	BIOSReboot();
#endif
}
示例#2
0
//Entry point of reboot.
DWORD Reboot(__CMD_PARA_OBJ* pCmdParaObj)
{
	ClsHandler(NULL); //Clear screen first.
#ifdef __I386__
	BIOSReboot();
#endif
	return SHELL_CMD_PARSER_SUCCESS;
}