blob: 64266e887a0a314c7b5bd12331118333ef1635c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <getopt.h>
#include <timer.h>
#include <glib.h>
#include <caml/mlvalues.h>
#include <caml/fail.h>
#include <caml/callback.h>
#include <caml/memory.h>
#include <caml/alloc.h>
#include "ivyglibloop.h"
value ivy_GtkmainLoop(value unit)
{
g_main_loop_run(g_main_loop_new(NULL, FALSE));
return Val_unit;
}
extern void cb_delete_channel(void *delete_read);
extern void cb_read_channel(Channel ch, HANDLE fd, void *closure);
value ivy_GtkchannelSetUp(value fd, value closure_name)
{
Channel c;
value * closure = caml_named_value(String_val(closure_name));
c = IvyGlibChannelSetUp((HANDLE)Int_val(fd), (void*)closure, cb_delete_channel, cb_read_channel);
return Val_int(c);
}
value ivy_GtkchannelClose(value ch)
{
IvyGlibChannelClose((Channel)Int_val(ch));
return Val_unit;
}
|