Accounts with zero posts and zero activity during the last months will be deleted periodically to fight SPAM!
Hiwhere do I have to put this from MS in codeblocks?:------------ In the MS compiler project settiings add this to the end of the preprocessor definitions in the C/C++ General tab. ,IBM=1 --------------ThanksMichael
By the way if you don't add the "=1" it should be enough. "Empty" definitions normally get initiated with "1" (might depend on the compiler).
Quote from: JensBy the way if you don't add the "=1" it should be enough. "Empty" definitions normally get initiated with "1" (might depend on the compiler).Empty definitions should be empty. The only part of the standard that says anything about macros getting a value is when you use an #if statement with an undefined macro, then their value is 0. However, it is a macro definition through the command line, so it may have another behavior. Better to be explicit, I'd say.
-D name Predefine name as a macro, with definition 1.
... (might depend on the compiler).
In the MS compiler project settiings add this to the end of the preprocessor definitions in the C/C++ General tab. ,IBM=1