?? loader.cpp
字號:
#include "comcommand.h"
int testMain()
{
ComCommand cc ;
char command[1024] ;
cc.BindDev() ;
int iRet = cc.WaitKbHit("Press any key to set OMB parameters.",10) ;
if ( OK==iRet )
{
cc.WritePrompt("OMC-R IP Address:") ;
cc.ReadCommand(command,1024) ;
printf("The command is: (%s).\n",command) ;
int i = 0 ;
while ( command[i]!=0x00 )
{
printf("%2d ",command[i++]) ;
}
printf("\n") ;
}
cc.WritePrompt("Now loading...\r\n") ;
return OK ;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -