mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-09 16:12:17 +00:00
13 lines
242 B
Plaintext
13 lines
242 B
Plaintext
///Protects a datum from being VV'd
|
|
#define GENERAL_PROTECT_DATUM(Path)\
|
|
##Path/can_vv_get(var_name){\
|
|
.=..();\
|
|
return FALSE;\
|
|
}\
|
|
##Path/vv_edit_var(var_name, var_value){\
|
|
return FALSE;\
|
|
}\
|
|
##Path/CanProcCall(procname){\
|
|
return FALSE;\
|
|
}
|