plugin_api.h
C source, ASCII text
1
#ifndef PLUGIN_API_H
2
#define PLUGIN_API_H
3
#include <gtk/gtk.h>
4
5
#ifdef __cplusplus
6
extern "C" {
7
#endif
8
9
void panthera_add_pane(const char *id, const char *label, GtkImage *icon, GtkWidget *pane);
10
void panthera_log(const char *message);
11
12
#ifdef __cplusplus
13
}
14
#endif
15
#endif
16