timerint.h

来自「用c语言开发的操作系统内核」· C头文件 代码 · 共 39 行

H
39
字号
/************************************************************************
*
*  Module name         : TIMERINT.H
*
*  Module description  :
*
*  Project             : RTMK
*
*  Target platform     : DOS
*
*  Compiler & Library  : BC++ 3.1
*
*  Author              : Richard Shen
*
*  Creation date       : 30 August, 1995
*
************************************************************************/
#ifndef TIMERINT_H
#define TIMERINT_H

#ifdef __DOS__

#ifdef __cplusplus
extern "C"
{
#endif /* __cplusplus */

void SetTimerInt(void);
void RestoreTimerInt(void);
void SetApplTimerHandler(void (*applHandler)(void));

#ifdef __cplusplus
}
#endif /* __cplusplus */

#endif /* __DOS__ */

#endif /* TIMERINT_H */

⌨️ 快捷键说明

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