An open API service indexing awesome lists of open source software.

https://github.com/ignackocom/cppclistandards

Cpp Cli Standards files
https://github.com/ignackocom/cppclistandards

c code mit-license source standard

Last synced: 7 months ago
JSON representation

Cpp Cli Standards files

Awesome Lists containing this project

README

          

# CppCliStandards
Cpp Cli standard constants

Example of use

```c
#if defined(__cplusplus_cli) && __cplusplus_cli >= CPPCLI
...
CPPCLI code
...
#endif
```

another example

```c
#if CPLUSPLUSCLI_VERSION == CPPPRECLI
...
CPPPRECLI code
...
#elif CPLUSPLUSCLI_VERSION == CPPCLI
...
CPPCLI code
...
#else
...
other code
...
#endif
```

another example

```c
printf("cpp cli version = %ld\n", GET_CPLUSPLUSCLI_VERSION());
printf("cpp cli version year = %ld\n", GET_CPLUSPLUSCLI_VERSION_YEAR());
```

# History of changes ...