Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
Browse files
tmp
  • Loading branch information
Fire-Head committed Jun 11, 2019
1 parent be7e949 commit 87655bc1cfe22005813801a62c11b22a298d5be3
Showing with 175 additions and 175 deletions.
  1. +2 −0 src/common.h
  2. +133 −175 src/skel/win/win.cpp
  3. +40 −0 src/skel/win/win.h
@@ -138,6 +138,8 @@ void re3_debug(char *format, ...);
void re3_trace(const char *filename, unsigned int lineno, const char *func, char *format, ...); void re3_trace(const char *filename, unsigned int lineno, const char *func, char *format, ...);
void re3_assert(const char *expr, const char *filename, unsigned int lineno, const char *func); void re3_assert(const char *expr, const char *filename, unsigned int lineno, const char *func);


#define DEBUGBREAK() __debugbreak();

#define debug(f, ...) re3_debug("[DBG]: " f, __VA_ARGS__) #define debug(f, ...) re3_debug("[DBG]: " f, __VA_ARGS__)
#define DEV(f, ...) re3_debug("[DEV]: " f, __VA_ARGS__) #define DEV(f, ...) re3_debug("[DEV]: " f, __VA_ARGS__)
#define TRACE(f, ...) re3_trace(__FILE__, __LINE__, __FUNCTION__, f, __VA_ARGS__) #define TRACE(f, ...) re3_trace(__FILE__, __LINE__, __FUNCTION__, f, __VA_ARGS__)

0 comments on commit 87655bc

Please sign in to comment.