12345678910111213141516171819202122 |
- #define PREP_CONCAT(a,b) a##b
- #define PREP_CONCAT_3(a,b,c) PREP_CONCAT(PREP_CONCAT(a,b),c)
- #define PREP_PATH PREP_CONCAT_3(RD501_Zeus,\,functions)
- #define PREP_QUOTE(quoted) #quoted
- #define PREP(func)\
- [PREP_QUOTE(PREP_CONCAT_3(PREP_PATH,\,PREP_CONCAT_3(fnc_,func,.sqf))),PREP_QUOTE(PREP_CONCAT(rd501_zeus_fnc_,func))] call CBA_fnc_compileFunction
- PREP(moduleJammerSettings);
- PREP(ui_jammerSettings);
- PREP(moduleJammerClearAll);
- PREP(moduleVolatile);
- PREP(ui_volatileSettings);
|