#include <cstddef>
#include <cstdint>
Go to the source code of this file.
|
| #define | DEPRECATED(func) func |
| | A Macro to mark a function as deprecated.
|
| |
| #define | DLLExport __attribute__((visibility("default"))) |
| | Definitions of the DLLImport compiler directives for MSVC.
|
| |
| #define | DLLImport |
| |
| #define | EXTERN_IMPORT extern |
| |
| #define | UNUSED_ARG(x) (void)x; |
| | Function arguments are sometimes unused in certain implmentations but are required for documentation purposes.
|
| |
◆ DEPRECATED
| #define DEPRECATED |
( |
|
func | ) |
func |
A Macro to mark a function as deprecated.
Definition at line 56 of file System.h.
◆ DLLExport
| #define DLLExport __attribute__((visibility("default"))) |
Definitions of the DLLImport compiler directives for MSVC.
Definition at line 33 of file System.h.
◆ DLLImport
◆ EXTERN_IMPORT
| #define EXTERN_IMPORT extern |
◆ UNUSED_ARG
| #define UNUSED_ARG |
( |
|
x | ) |
(void)x; |
Function arguments are sometimes unused in certain implmentations but are required for documentation purposes.
This is a macro to silence compiler warnings about the subject
Definition at line 44 of file System.h.