23 #ifndef DECLSPEC_MODULE
24 #define DECLSPEC_MODULE
26 #ifndef DECLSPEC_SHARED
27 #define DECLSPEC_SHARED
34 #if defined __WIN32__ || defined WINDOWS || defined _WIN32
36 #define USE_STD_THREAD
46 #define DEBUG_XTHREAD 0
48 #define DEBUG_XTHREAD 1
52 using std::unique_ptr;
53 using std::shared_ptr;
55 using std::enable_shared_from_this;
56 using std::static_pointer_cast;
57 using std::dynamic_pointer_cast;
59 using std::reference_wrapper;
64 #if defined __i386__ || defined __i486__ || defined __i586__ || defined __i686__ || defined __x86_64__
69 unsigned int monitorSizeSmallest;
70 unsigned int monitorSizeLargest;
79 struct XKameError :
public std::runtime_error {
84 void print(
const XString &header);
85 static void print(
const XString &msg,
const char *file,
int line,
int errno_);
87 virtual const char* what()
const throw();
90 const
char *const m_file;
97 #define dbgPrint(msg) dbgPrint_redirected(msg, __FILE__, __LINE__)
99 dbgPrint_redirected(
const XString &str,
const char *file,
int line);
101 #define gErrPrint(msg) gErrPrint_redirected(msg, __FILE__, __LINE__)
102 #define gWarnPrint(msg) gWarnPrint_redirected(msg, __FILE__, __LINE__)
104 gErrPrint_redirected(
const XString &str,
const char *file,
int line);
106 gWarnPrint_redirected(
const XString &str,
const char *file,
int line);
109 extern bool g_bMLockAlways;
111 extern bool g_bUseMLock;
113 inline bool isMemLockAvailable() {
return g_bUseMLock;}