mirror of
https://github.com/Xaymar/obs-StreamFX
synced 2024-11-27 22:03:01 +00:00
plugin: Formatting
This commit is contained in:
parent
986d788d25
commit
1b58632a3f
1 changed files with 8 additions and 8 deletions
|
@ -30,11 +30,11 @@
|
||||||
#define PLUGIN_NAME "Stream Effects"
|
#define PLUGIN_NAME "Stream Effects"
|
||||||
#include "version.h"
|
#include "version.h"
|
||||||
|
|
||||||
#define PLOG(level, ...) blog(level, "[" PLUGIN_NAME "] " __VA_ARGS__);
|
#define P_LOG(level, ...) blog(level, "[" PLUGIN_NAME "] " __VA_ARGS__);
|
||||||
#define PLOG_ERROR(...) PLOG(LOG_ERROR, __VA_ARGS__)
|
#define P_LOG_ERROR(...) P_LOG(LOG_ERROR, __VA_ARGS__)
|
||||||
#define PLOG_WARNING(...) PLOG(LOG_WARNING, __VA_ARGS__)
|
#define P_LOG_WARNING(...) P_LOG(LOG_WARNING, __VA_ARGS__)
|
||||||
#define PLOG_INFO(...) PLOG(LOG_INFO, __VA_ARGS__)
|
#define P_LOG_INFO(...) P_LOG(LOG_INFO, __VA_ARGS__)
|
||||||
#define PLOG_DEBUG(...) PLOG(LOG_DEBUG, __VA_ARGS__)
|
#define P_LOG_DEBUG(...) P_LOG(LOG_DEBUG, __VA_ARGS__)
|
||||||
|
|
||||||
// Utility
|
// Utility
|
||||||
#define vstr(s) dstr(s)
|
#define vstr(s) dstr(s)
|
||||||
|
|
Loading…
Reference in a new issue