Web Browsing With Parentheses
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
369 B

struct QueueData {
GAsyncQueue *gtk_qu;
GAsyncQueue *guile_qu;
WebKitWebView *webView;
};
enum BrowserEvent {
LOAD = 0,
CLOSE = 1,
EMPTY = 2
};
struct BrowserMessage {
enum BrowserEvent event;
void *data;
};
static SCM scm_ref(const char *);
static int read_config_val(char * const);
static SCM qu_push(enum BrowserEvent, char *, GAsyncQueue *);