ContentGetSupportedOperators
ContentGetSupportedOperators is called to return a list of supported operators like "contains" or "=". This function is only called when the flag contflags_fieldsearch was returned for a field. This function is new since Total Commander 10, plugin interface version 2.12.
Declaration:
int __stdcall ContentGetSupportedOperators(int FieldIndex, char* FieldOperators, int maxlen);
Description of parameters:
FieldIndex The index of the field for which TC requests information. Starting with 0, the FieldIndex is increased until the plugin returns an error.
FieldOperators Return a list of supported operators here, in English, separated by spaces. Operators using the default names like "contains" will be translated with internal Total Commander strings, otherwise via plugin language file. The operators must NOT contain any spaces, and need to be returned as a string separated by spaces, e.g.
contains !contains = !=
maxlen The maximum number of characters, including the trailing 0, which may be returned in FieldOperators.
Return value:
The function needs to return the number of operators, or 0 if not supported.
Note: This function is only available as Ansi, not Unicode.