Hello all.
Wanna to ask noob question. Am i understand right, that defines can be used to define should we use some features and it will be done on compilation level so it will not load the server in any way like cvars?
For example:
PHP Code:
#define do_1
//#define do_2
public plugin_precache( )
{
#if defined do_1
func1
#endif
#if defined do_2
func2
#endif
}
Am i understand correctly, that after compilation if we decompile plugin (just as stupid example) we'll see this?!:
PHP Code:
public plugin_precache( )
{
func1
}