GTK docking interfaces and more

Important information: Google announced that, from September 2026, Android devices will require ALL apps to be signed by Google, effectively leading to an iOS situation. Value your right to a computer that does what you want; do not tolerate this monopolistic practice! Contact me if you don't understand why it is bad. Click to learn more.

 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