1
0
Fork 0

Add DEBUG messages for protected-file handling

This commit is contained in:
krcroft 2020-02-15 21:00:58 -08:00 committed by Patryk Obara
parent 9603c961c0
commit b302b535c3
3 changed files with 58 additions and 5 deletions

View file

@ -32,6 +32,8 @@
#define strncasecmp(a, b, n) _strnicmp(a, b, n)
#endif
std::string get_basename(const std::string& filename);
// Include a message in assert, similar to static_assert:
#define assertm(exp, msg) assert(((void)msg, exp))
// Use (void) to silent unused warnings.