pmdconio.h

来自「一个机器人的源代码.软件设计得超级好!是商业级代码.」· C头文件 代码 · 共 37 行

H
37
字号
/*****************************************************************************   $Workfile: PMDconio.h $    $Revision: 6 $    Purpose: Console IO redirector /****************************************************************************/#ifndef _PMDCONIO_H#define _PMDCONIO_H#ifdef WIN32#include <conio.h>#endif#if defined(__cplusplus)extern "C" {#endif#ifdef _LINUX#define PRINTFN void#else #define PRINTFN int#endif    void SetPMDprintf(PRINTFN (*fn)(const char*, ...));void PMDprintf( char *fmt, ... );int  PMDkbhit();void HostDelay(int milliseconds);#if defined(__cplusplus)}#endif#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?