Type representing a user-defined variable "my_var". More...
#include "config.h"#include <stddef.h>#include <stdint.h>#include "mutt/lib.h"#include "set.h"#include "types.h"
Include dependency graph for myvar.c:Go to the source code of this file.
Functions | |
| static void | myvar_destroy (void *var, const struct ConfigDef *cdef) |
| Destroy a MyVar - Implements ConfigSetType::destroy() -. | |
| static int | myvar_string_set (void *var, struct ConfigDef *cdef, const char *value, struct Buffer *err) |
| Set a MyVar by string - Implements ConfigSetType::string_set() -. | |
| static int | myvar_string_get (void *var, const struct ConfigDef *cdef, struct Buffer *result) |
| Get a MyVar as a string - Implements ConfigSetType::string_get() -. | |
| static int | myvar_native_set (void *var, const struct ConfigDef *cdef, intptr_t value, struct Buffer *err) |
| Set a MyVar config item by string - Implements ConfigSetType::native_set() -. | |
| static intptr_t | myvar_native_get (void *var, const struct ConfigDef *cdef, struct Buffer *err) |
| Get a string from a MyVar config item - Implements ConfigSetType::native_get() -. | |
| static int | myvar_string_plus_equals (void *var, const struct ConfigDef *cdef, const char *value, struct Buffer *err) |
| Add to a MyVar by string - Implements ConfigSetType::string_plus_equals() -. | |
| static int | myvar_reset (void *var, const struct ConfigDef *cdef, struct Buffer *err) |
| Reset a MyVar to its initial value - Implements ConfigSetType::reset() -. | |
Variables | |
| const struct ConfigSetType | CstMyVar |
| Config type representing a MyVar. | |
Type representing a user-defined variable "my_var".
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.
Definition in file myvar.c.
| const struct ConfigSetType CstMyVar |
Config type representing a MyVar.
Definition at line 203 of file myvar.c.