Loading...
Searching...
No Matches
2#ifndef GRAMODS_CORE_RUNONCE
3#define GRAMODS_CORE_RUNONCE
17#define GM_RUNONCE(CODE) \
19 static bool _gramods_executed = false; \
20 if (!_gramods_executed) { \
21 _gramods_executed = true; \
26#define GM_RUNONCE_BEGIN \
28 static bool _gramods_executed = false; \
29 if (!_gramods_executed) { \
30 _gramods_executed = true;
32#define GM_RUNONCE_END }}