1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
#bigfunc test1() multi
line
macro
#endbigfunc
First macro:
test1()
#######################################################################
#bigfunc test2(arg1, arg2)
multi line macro
with args : <arg1> and <arg2>
------
#endbigfunc
Second macro:
test2(this, that)
#######################################################################
#bigfunc test3()
lots
of
spaces
#endbigfunc
#define spaces don't you want to know about the wasted spaces
Third macro:
test3()
#######################################################################
#bigfunc test4()
Macro with conditional bits in:
#define SHOWME
#ifdef SHOWME
This should be in test macro
#else
This should not be in test macro
#endif
#endbigfunc
Fourth macro:
test4()
#######################################################################
#bigfunc test5()
#pragma filepp SetKeywordchar ##
##include "README"
##pragma filepp SetKeywordchar #
#endbigfunc
Fifth macro:
test5()
#######################################################################
|