DEV-C++ 功能限制
void interrupt ( *oldhandler)(__CPPARGS);void interrupt newhandler(__CPPARGS) /* 新的时钟中断处理函数 */
{
TimerCounter++; /* increase the global counter */
oldhandler(); /* call the old routine */
}
难道 DEV-C++ 不能编写 DOS 模式的中断程序吗 ?
我上面的代码是一个程序中的一个小段,我以前使用TC 运行通过的,但是现在使用 DEV-C++ 编译不能通过
提示:22 C:\Program Files\DEV-CPP\mywork\interupt\show_time.c syntax error before '*' token ()就是上面红色字体显示的那行有错误