jzputkbd.dmo

来自「汇编语言编的关于JAZCLIBasm.rar的程序,初学者用很好好,注意了」· DMO 代码 · 共 25 行

DMO
25
字号
#define min(a,b) a < b ? a : b
#define RED 4
#include <jzputkbd.c>
main()
{
  jzlogo();
  cls(RED);
  jzloccur(0,0);
  printf("\nThis program will stuff some keys into the keyboard buffer.");
  printf("\nMainly the F3 key (which dos will use to repeat the last command.)");
  printf("\nThis will cause the program to run itself over and over until you");
  printf("\nabort with a Control - C");
  printf("\nThe source for the keyboard routine is included but if you wish");
  printf("\nto get the source code to over 100 \"C\" routines,");
  printf("\nSend $25.00 or contact me at:");
  printf("\nJack A. Zucker c/o JazSoft Software");
  printf("\n10318 Broom Lane");
  printf("\nSeabrook, Md. 20706");
  printf("\n301-794-5950 | 301-794-8763 | CIS:75766,1336\n");
  printf("\nPress <Enter> to continue...");
  do ; while (getch() != 13);
  jzputkbd("\377\075\r");
}

⌨️ 快捷键说明

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