Tagged Questions

8
votes
3answers
2k views

What C preprocessor conditional should I use for OS X specific code?

What C preprocessor conditional should I use for OS X specific code? I need to include a specific library if I am compiling for OS X or a different header if I am compiling for Linux. I know there is ...
3
votes
6answers
105 views

Using #define in an “if” statement

Is it possible to use #define in an "if" statement? The following code works, but I get a warning that the macro is being redefined. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) { ...
2
votes
7answers
917 views

C - alternative to #ifdef

I'm trying to streamline large chunk of legacy C code in which, even today, before doing the build guy who maintains it takes a source file(s) and manually modifies the following section before the ...
0
votes
1answer
115 views

C compiler directives with switch/case statements?

What do I do with this switch-case statement in C? #if defined MY_CONST && define RUN_TEST case TX_ERROR: //code here break; case RX_ERROR: //other code here ...
0
votes
1answer
83 views

Understanding #define #ifdef and Macros in the Linux Kernel

I have just started work on auditing the Linux kernel and I cant help but notice in the source code the multitude of #defines and #ifdefs. I cant seem to understand exactly how these are being used. I ...
0
votes
3answers
379 views

Delphi - Scope of custom definitions

Good Morning, I have a unit which I want to use in two different programs, to tell the difference I wanted to Define a symbol and then check that in the unit. In my DPR for the project I have; ...