| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- //---------------------------------------------------------------------------
- #ifndef GlobalH
- #define GlobalH
- //---------------------------------------------------------------------------
- #define FORMAT(S, F) Format(S, ARRAYOFCONST(F))
- #define FMTLOAD(I, F) FmtLoadStr(I, ARRAYOFCONST(F))
- #define LENOF(x) ( (sizeof((x))) / (sizeof(*(x))))
- #define FLAGSET(SET, FLAG) (((SET) & (FLAG)) == (FLAG))
- #define FLAGCLEAR(SET, FLAG) (((SET) & (FLAG)) == 0)
- #define FLAGMASK(ENABLE, FLAG) ((ENABLE) ? (FLAG) : 0)
- //---------------------------------------------------------------------------
- #include <System.SyncObjs.hpp>
- //---------------------------------------------------------------------------
- extern const UnicodeString EmptyString;
- //---------------------------------------------------------------------------
- UnicodeString NormalizeString(const UnicodeString & S);
- //---------------------------------------------------------------------------
- class TGuard
- {
- public:
- __fastcall TGuard(TCriticalSection * ACriticalSection);
- __fastcall ~TGuard();
- private:
- TCriticalSection * FCriticalSection;
- };
- //---------------------------------------------------------------------------
- class TUnguard
- {
- public:
- __fastcall TUnguard(TCriticalSection * ACriticalSection);
- __fastcall ~TUnguard();
- private:
- TCriticalSection * FCriticalSection;
- };
- //---------------------------------------------------------------------------
- //---------------------------------------------------------------------------
- #include <assert.h>
- #define ACCESS_VIOLATION_TEST { (*((int*)NULL)) = 0; }
- #if defined(_DEBUG) && !defined(DESIGN_ONLY)
- #define DODEBUGGING
- #endif
- #ifndef DODEBUGGING
- #define DebugAssert(p) ((void)0)
- #define DebugCheck(p) (p)
- #define DebugFail()
- #else // ifndef DODEBUGGING
- void __fastcall DoAssert(wchar_t * Message, wchar_t * Filename, int LineNumber);
- #define DebugAssert(p) ((p) ? (void)0 : DoAssert(TEXT(#p), TEXT(__FILE__), __LINE__))
- #define DebugCheck(p) { bool __CHECK_RESULT__ = (p); DebugAssert(__CHECK_RESULT__); }
- #define DebugFail() DebugAssert(false)
- #endif // ifndef DODEBUGGING
- //---------------------------------------------------------------------------
- #define DebugAlwaysTrue(p) (p)
- #define DebugAlwaysFalse(p) (p)
- #define DebugNotNull(p) (p)
- #define TraceInitPtr(p) (p)
- #define TraceInitStr(p) (p)
- #define DebugUsedParam2(p1, p2) ((&p1) == (&p2))
- #define DebugUsedParam(p) DebugUsedParam2(p, p)
- #define DebugUsedArg(p)
- //---------------------------------------------------------------------------
- #endif
|