Thread: Condition variables

  1. #16
    Registered User
    Join Date
    Aug 2005
    Posts
    96
    Quote Originally Posted by Codeplug View Post
    >> But I never thought of using the MS SDK with MinGW. I guess I could try that.
    It won't work with MinGW. Having the MS SDK on hand is good for extracting any definitions that aren't in the MinGW Win32API headers.

    gg
    Ok.


    Quote Originally Posted by laserlight View Post
    Interesting observation. According to the C++ Standard, those keywords should be available and thus not defined as macro names in <ciso646>, but a little experimentation with VS 2005 shows that if you #include <ciso646>, those keywords will work.
    Yeah but that is wrong. Like you said in C++ they aren't macros, they are keywords.


    Thanks everyone.

  2. #17
    C++まいる!Cをこわせ!
    Join Date
    Oct 2007
    Location
    Inside my computer
    Posts
    24,654
    Quote Originally Posted by sethjackson View Post
    Yeah but that is wrong. Like you said in C++ they aren't macros, they are keywords.
    I'm going to agree that it's bad. If it's in the standard, they should exist. Bad Microsoft.
    I'm actually with you on this one
    Quote Originally Posted by Adak View Post
    io.h certainly IS included in some modern compilers. It is no longer part of the standard for C, but it is nevertheless, included in the very latest Pelles C versions.
    Quote Originally Posted by Salem View Post
    You mean it's included as a crutch to help ancient programmers limp along without them having to relearn too much.

    Outside of your DOS world, your header file is meaningless.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. basic question about global variables
    By radeberger in forum C++ Programming
    Replies: 0
    Last Post: 04-06-2009, 12:54 AM
  2. Best way to avoid using global variables
    By Canadian0469 in forum C++ Programming
    Replies: 7
    Last Post: 12-18-2008, 12:02 PM
  3. Remotely Creating Variables
    By Rajin in forum C++ Programming
    Replies: 1
    Last Post: 04-26-2005, 11:20 PM
  4. pthread condition variables
    By jbsloan in forum C Programming
    Replies: 1
    Last Post: 03-08-2005, 12:45 PM
  5. Declaring an variable number of variables
    By Decrypt in forum C++ Programming
    Replies: 8
    Last Post: 02-27-2005, 04:46 PM