Search

January 13, 2019
Learn »
...need this or not):

    #ifndef RS_API
    #ifdef RS_NOINLINE
    /* GCC version 3.1 required...
December 08, 2018
Learn »
...to be like vim, with a million `#ifdef`s. Only the two main parts (input...
October 06, 2018
General »
...factorized with AutoCAD means. Include, define and ifdef allowed to do things, that were very...
June 09, 2018
Learn »
...as static library & link with your project
#ifdef _WIN32
// sorry, I just hardcoded it...
#pragma...
May 29, 2018
Learn »
...define CALLTYPE __stdcall
#else
#define CALLTYPE
#endif

#ifdef __cplusplus
  #define CAPI(type) extern "C" DLL...
May 04, 2018
General »
...the official site describes `when` more like #ifdef in C than an actual static if...
May 04, 2018
Learn »
...on the names that get used with #ifdef in C/C++ rather than having consistent...
February 27, 2018
General »
...header files come wrapped with:

	#ifdef __cplusplus
	extern "C" {
	#endif

	...

	#ifdef __cplusplus
	}
	#endif __cplusplus

because...
January 03, 2018
Genel »
...kullanıyorum:

```
#ifndef CPPWRAPPER_H
#define CPPWRAPPER_H

#ifdef __cplusplus
#include "example.h"
typedef Example* ExampleHandle...
December 29, 2017
General »
...nobody wants to put their tests in #ifdef "blocks" they live in separate files. Changing...
1 2 3 4 5 6 7 8 9
Next ›   Last »