home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / win_lrn / mouse / gdblclkt.c < prev    next >
C/C++ Source or Header  |  1988-08-10  |  727b  |  25 lines

  1. /*
  2.  * GetDoubleClickTime
  3.  * This function returns the Double Click Time of the mouse.
  4.  *
  5.  */
  6.  
  7. #include "windows.h"
  8. #include <stdio.h>
  9.  
  10. int PASCAL WinMain (hInstance, hPrevInstance, lpszCmdLine, nCmdShow)
  11. HANDLE hInstance, hPrevInstance;
  12. LPSTR  lpszCmdLine;
  13. int    nCmdShow;
  14.   {
  15.   WORD wTime;        /* The current double click time for the mouse. */
  16.   char szOutBuf[80]; /* Output buffer for message box.               */
  17.  
  18.       /* Get and display the current double click time for the mouse. */
  19.   wTime = GetDoubleClickTime ();
  20.   sprintf (szOutBuf, "%s%hu", "Double click time in milliseconds is: ", wTime);
  21.   MessageBox (GetFocus (), (LPSTR)szOutBuf, "GetDoubleClickTime ()", MB_OK);
  22.  
  23.   return 0;
  24.   }
  25.