Interface
IdeRunnerAddin
Prerequisite
In order to implement RunnerAddin, your type must inherit fromGObject
.
Interface structure
struct IdeRunnerAddinInterface {
GTypeInterface parent_interface;
void (* load) (
IdeRunnerAddin* self,
IdeRunner* runner
);
void (* unload) (
IdeRunnerAddin* self,
IdeRunner* runner
);
void (* prehook_async) (
IdeRunnerAddin* self,
GCancellable* cancellable,
GAsyncReadyCallback callback,
gpointer user_data
);
gboolean (* prehook_finish) (
IdeRunnerAddin* self,
GAsyncResult* result,
GError** error
);
void (* posthook_async) (
IdeRunnerAddin* self,
GCancellable* cancellable,
GAsyncReadyCallback callback,
gpointer user_data
);
gboolean (* posthook_finish) (
IdeRunnerAddin* self,
GAsyncResult* result,
GError** error
);
}
No description available.
Interface members
parent_interface |
|
No description available. | |
load |
|
No description available. | |
unload |
|
No description available. | |
prehook_async |
|
No description available. | |
prehook_finish |
|
No description available. | |
posthook_async |
|
No description available. | |
posthook_finish |
|
No description available. |