CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    May 1999
    Posts
    11

    Programming System Timer in Windows

    I want to synchronize my program events with system timer at the rate of 32Khz. The windows SetTimer() ,GetTimer() gives the resolution of 1KHz and that too is queued through the message loop which reduces its accuracy.
    Please give me ur ideas on this.
    Is VXDs is the solution? Please give me some references on VXD programming (books or Internet sites)

    Thanks.

    ICQ #3760 3760

  2. #2
    Join Date
    May 1999
    Posts
    3,332

    Re: Programming System Timer in Windows

    use the Multimedia Timer Functions (mmsystem.h and winmm.lib) instead. They are far more accurate (milliseconds).
    timeSetEvent creates a timer.


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured