home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c003 / 1.ddi / MOUSE / M_WFC.MSC < prev   
Encoding:
Text File  |  1986-09-15  |  533 b   |  43 lines

  1. ; Mouse Definitions for Windows for C
  2. ;
  3. ;
  4. ;
  5. ; Initial Mouse Definition
  6. ;
  7. Mouse
  8. (
  9.     Left(Left_Button)
  10.     Middle(Middle_Button)
  11.     Right(Right_Button)
  12.     Cursor(Init_Cursor)
  13. )
  14. ;
  15. ; Button Definitions
  16. ;
  17. Left_Button: Button
  18. (
  19.     Keys([F1])
  20. )
  21. ;
  22. Middle_Button: Button
  23. (
  24.     Keys([Enter])
  25. )
  26. ;
  27. Right_Button: Button
  28. (
  29.     Keys([Esc])
  30. )
  31. ;
  32. ; Cursor Definitions
  33. ;
  34. Init_Cursor: Cursor
  35. (
  36.     Left([Left])
  37.     Right([Right])
  38.     Up([UP])
  39.     Down([Down])
  40.     Sensitivity(30,30)
  41.     Hysteresis(2,2)
  42. )
  43.