home *** CD-ROM | disk | FTP | other *** search
/ World of Shareware - Software Farm 2 / wosw_2.zip / wosw_2 / CPROG / PCKEY.ZIP / FASTKEY.CPP next >
C/C++ Source or Header  |  1991-03-24  |  340b  |  17 lines

  1. #include <stdio.h>
  2. #include <pckey.hpp>
  3.  
  4. main()
  5. {
  6.     if (PC.enhanced())  {
  7.         PC.setTypeMatic(TMR300,TMD250);
  8.         puts("\nTypematic rate set at 30 "
  9.             "characters per second.");
  10.         puts("Typematic delay set at "
  11.             "250 milliseconds.");
  12.     }
  13.     else
  14.         puts("\nCan not set typematic "
  15.             "rate/delay for your keyboard.");
  16.     return 0;
  17. }