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
|
@ -27,14 +27,14 @@
|
||||||
#pragma warning (pop)
|
#pragma warning (pop)
|
||||||
|
|
||||||
// Plugin
|
// Plugin
|
||||||
#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)
|
||||||
|
@ -52,8 +52,8 @@
|
||||||
|
|
||||||
#ifndef __FUNCTION_NAME__
|
#ifndef __FUNCTION_NAME__
|
||||||
#if defined(_WIN32) || defined(_WIN64) //WINDOWS
|
#if defined(_WIN32) || defined(_WIN64) //WINDOWS
|
||||||
#define __FUNCTION_NAME__ __FUNCTION__
|
#define __FUNCTION_NAME__ __FUNCTION__
|
||||||
#else //*NIX
|
#else //*NIX
|
||||||
#define __FUNCTION_NAME__ __func__
|
#define __FUNCTION_NAME__ __func__
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue