bux API Reference 1.9.0
Static library of whatever are seen required in general purpose but not directly supported from Modern C++. Or whatever reusable originated from my side projects.
Loading...
Searching...
No Matches
XPlatform.h
Go to the documentation of this file.
1#pragma once
2
3#if defined(_MSC_VER)
4# define CUR_FUNC_ __FUNCTION__
5//# define CUR_FUNC_ __FUNCSIG__
6#elif defined(__BORLANDC__)
7# define CUR_FUNC_ __FUNC__
8#elif defined(__GNUC__)
9# define CUR_FUNC_ __PRETTY_FUNCTION__
10#else
11# define CUR_FUNC_ "?func?"
12#endif