GTK docking interfaces and more

By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 plugin_api.h

View raw Download
text/x-c • 280 B
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