選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

17 行
229 B

  1. #ifndef PRINTFSERVER_H
  2. #define PRINTFSERVER_H
  3. enum ePrintfServerTickStates
  4. {
  5. PRINTF_SERVER_INIT_STATE,
  6. PRINTF_SERVER_RUN_STATE
  7. };
  8. int OpenPrintfServer();
  9. void TickPrintfServer();
  10. void TelnetPutPrintf(char c);
  11. #endif