Struct

CamelSExpSymbol

since: 3.4

Description [src]

struct CamelSExpSymbol {
  gint type;
  gchar* name;
  gpointer data;
}

Describes a function or a variable symbol. When type is CAMEL_SEXP_TERM_FUNC, the “f” union member holds either a CamelSExpFunc or a CamelSExpIFunc callback.

Structure members
type: gint

A type of the symbol, either CAMEL_SEXP_TERM_FUNC or CAMEL_SEXP_TERM_VAR.

name: gchar*

Name of the symbol.

data: gpointer

User data for the callback.

Available since: 3.4