| Mex Reference Manual | ||||
|---|---|---|---|---|
| Top | Description | ||||
#define MEX_ACTION_PROVIDER_IFACE (iface)
#define MEX_IS_ACTION_PROVIDER_IFACE (iface)
struct MexActionProviderInterface;
const GList * mex_action_provider_get_actions (MexActionProvider *provider);
Implementing MexActionProvider means that the class can provide a list of actions that apply to an MexContent with a particular mime-type.
struct MexActionProviderInterface {
GTypeInterface g_iface;
/* virtual functions */
const GList * (*get_actions) (MexActionProvider *provider);
};
const GList * mex_action_provider_get_actions (MexActionProvider *provider);
Retrieves the list of actions from a MexActionProvider. This is a list of MexActionInfo##s.
|
a MexActionProvider |
Returns : |
The actions of provider
|