blob: 85a23f4acaf1e331da8b2f9f832b03934d2fd72a (
about) (
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
37
38
39
40
41
42
43
|
(define-module (wm)
#:use-module (system foreign)
#:export (wm-init
wm-set-key-press-handler!
wm-run
wm-quit))
(define libschewm (dynamic-link "libschewm"))
(define (int-as-bool i)
(not (eq? 0 i)))
(define (schewm-func return-type name args)
(pointer->procedure
return-type
(dynamic-func name libschewm)
args))
(define c/wm-init
(schewm-func int "wm_init" '()))
(define (wm-init)
(int-as-bool (c/wm-init)))
(define wm-quit
(schewm-func void "wm_quit" '()))
(define wm-run
(schewm-func void "wm_run" '()))
(define c/wm-set-key-press-handler
(schewm-func void
"wm_set_key_press_handler"
(list '*)))
(define (wm-set-key-press-handler! handler)
;; mod (state, uint16)
;; keysym (detail, uint8)
(c/wm-set-key-press-handler
(procedure->pointer void
handler
(list uint16 uint8))))
|