| ELZED | Documentation | The Details | API |
| lzDeleteOpThe lzDeleteOp function destroys a previously defined operator. void lzDeleteOp( | char cScope, | | // the scope of the operator | | const char* sOperatorName | | // the name of the operator |
);
ParameterscScope | | A character code indicating the scope of the target operator. The character code must be one of the following values:
Code
|
Constant
|
Meaning |
'C'
|
kCosmicScope
|
Available in all contexts |
'G'
|
kGlobalScope
|
Available in current context only |
|
sOperatorName | | A null-terminated character string containing the name of the target operator. |
Return Value
Remarks | The target operator must exist in the current context and/or at the specified scope.
Elzed internal operators may not be deleted. |
Versions | Introduced in Elzed 1.0.0 Modified in Elzed 2.4.0 -- String (char*) parameter is now declared const. | | This page describes the version of lzDeleteOp active in Elzed 2.5.0 (188: 2.5.0) |
See Also |
| |