?? noprtscr.c
字號(hào):
#include <stdio.h>
#include <dos.h>
#include <conio.h>
int count = 0;
void interrupt handler(void)
{
count++;
}
void main(void)
{
void interrupt (*original_handler)();
int old_count = 0;
original_handler = _dos_getvect(5);
_disable(); // Turn off interrupts during _dos_setvect
_dos_setvect(5, handler);
_enable();
printf("Press SHIFT-PRTSC three times or any key to end\n");
while (count < 3)
if (count != old_count)
{
printf("SHIFT-PRTSC pressed\n");
old_count = count;
}
_disable();
_dos_setvect(5, original_handler);
_enable();
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -