#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
Go to the source code of this file.
|
| #define | PLUGIN_PRINT(fmt, ...) do { if (plugin_is_verbose()) fprintf(stderr, "[DLB PLUGIN] " fmt, ##__VA_ARGS__); } while (0) |
| |
| #define | PLUGIN_ERROR(fmt, ...) do { fprintf(stderr, "[DLB PLUGIN ERROR] " fmt, ##__VA_ARGS__); } while (0) |
| |
| #define | PLUGIN_WARNING(fmt, ...) do { fprintf(stderr, "[DLB PLUGIN WARNING] " fmt, ##__VA_ARGS__); } while (0) |
| |
◆ PLUGIN_PRINT
| #define PLUGIN_PRINT |
( |
|
fmt, |
|
|
|
... |
|
) |
| do { if (plugin_is_verbose()) fprintf(stderr, "[DLB PLUGIN] " fmt, ##__VA_ARGS__); } while (0) |
◆ PLUGIN_ERROR
| #define PLUGIN_ERROR |
( |
|
fmt, |
|
|
|
... |
|
) |
| do { fprintf(stderr, "[DLB PLUGIN ERROR] " fmt, ##__VA_ARGS__); } while (0) |
◆ PLUGIN_WARNING
| #define PLUGIN_WARNING |
( |
|
fmt, |
|
|
|
... |
|
) |
| do { fprintf(stderr, "[DLB PLUGIN WARNING] " fmt, ##__VA_ARGS__); } while (0) |