Thread: threads

  1. #1
    Registered User
    Join Date
    Jul 2008
    Posts
    11

    Post threads

    hi, whene i have an error or warning like this '_beginthreadex' undefined; assuming extern returning int,
    so what`s this means and how can i resolve it?

  2. #2
    Registered User
    Join Date
    Sep 2004
    Location
    California
    Posts
    3,268
    It means you have not included the header file for that function. In this case, the header you need is process.h.

  3. #3
    Registered User
    Join Date
    Jul 2008
    Posts
    11
    Quote Originally Posted by bithub View Post
    It means you have not included the header file for that function. In this case, the header you need is process.h.
    sorry but already it`s included , i know that`s needed and for this reason it`s a stranger for me this warring msg

  4. #4
    Registered User
    Join Date
    Sep 2004
    Location
    California
    Posts
    3,268
    In that case, you are not using the multi-threaded version of the CRT. Setting this is dependent upon your compiler, but it should be in your IDE project settings somewhere.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Replies: 5
    Last Post: 10-17-2008, 11:28 AM
  2. Yet another n00b in pthreads ...
    By dimis in forum C++ Programming
    Replies: 14
    Last Post: 04-07-2008, 12:43 AM
  3. Classes and Threads
    By Halloko in forum Windows Programming
    Replies: 9
    Last Post: 10-23-2005, 05:27 AM
  4. problem with win32 threads
    By pdmarshall in forum C++ Programming
    Replies: 6
    Last Post: 07-29-2004, 02:39 PM
  5. Block and wake up certain threads
    By Spark in forum C Programming
    Replies: 9
    Last Post: 06-01-2002, 03:39 AM