HDK
|
#include "SYS_Pragma.h"
Go to the source code of this file.
Macros | |
#define | SYS_DEPRECATED(__V__) |
#define | SYS_DEPRECATED_REPLACE(__V__, __R__) |
#define | SYS_DEPRECATED_HDK(__V__) SYS_DEPRECATED(__V__) |
#define | SYS_DEPRECATED_HDK_REPLACE(__V__, __R__) SYS_DEPRECATED_REPLACE(__V__, __R__) |
#define | SYS_DEPRECATED_PUSH_DISABLE() SYS_PRAGMA(GCC diagnostic ignored "-Wdeprecated-declarations") |
#define | SYS_DEPRECATED_POP_DISABLE() SYS_PRAGMA(GCC diagnostic warning "-Wdeprecated-declarations") |
#define SYS_DEPRECATED | ( | __V__ | ) |
Mark function as deprecated and may be removed in the future.
Definition at line 38 of file SYS_Deprecated.h.
#define SYS_DEPRECATED_HDK | ( | __V__ | ) | SYS_DEPRECATED(__V__) |
Definition at line 44 of file SYS_Deprecated.h.
#define SYS_DEPRECATED_HDK_REPLACE | ( | __V__, | |
__R__ | |||
) | SYS_DEPRECATED_REPLACE(__V__, __R__) |
Definition at line 45 of file SYS_Deprecated.h.
#define SYS_DEPRECATED_POP_DISABLE | ( | ) | SYS_PRAGMA(GCC diagnostic warning "-Wdeprecated-declarations") |
Definition at line 64 of file SYS_Deprecated.h.
#define SYS_DEPRECATED_PUSH_DISABLE | ( | ) | SYS_PRAGMA(GCC diagnostic ignored "-Wdeprecated-declarations") |
Temporarily disable deprecation warnings. The PUSH/POPs must match!
Definition at line 62 of file SYS_Deprecated.h.
#define SYS_DEPRECATED_REPLACE | ( | __V__, | |
__R__ | |||
) |
Definition at line 39 of file SYS_Deprecated.h.