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

    parallel working

    does anybody know how you kan have 2 functions work at the same time in win32
    or where i can find more info about these things

    thx in advance


  2. #2
    Join Date
    May 1999
    Posts
    67

    Re: parallel working

    You must create two worker threads with same priority. If you start the threads they will be timeshared by windows.

    A good book about multithreading is Jeffrey Richter's "Advanced windows". Also you can find information about his in the documentation of visual C++

    Hope this helps


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