Guides
Overrides
Local function
example_function() overrides function
{
//your code
}Usage
iPrintLn_Override(string) overrides iPrintLn
{
#ifdef SP
iPrintLn(string);
#else
self iPrintLn(string);
#endif
}iPrintLnBold_Override(string) overrides iPrintLnBold
{
#ifdef SP
iPrintLnBold(string);
#else
self iPrintLnBold(string);
#endif
}Last updated on