21.05.2018, 23:50
Hi, is it possible to create callbacks with a limited scope? I need callbacks which are available only in the include file. I know that it is possible to create functions with a limited scope through "static".
How can I do the same thing with callbacks? Is this possible?
Why I need this? Because I can't use timers for functions.
Код:
//For instance, file "some_inc.inc" static SomeFunc() { } //wiil be available only in this file
Why I need this? Because I can't use timers for functions.