aboutsummaryrefslogtreecommitdiff
path: root/module/vcalendar/primitive.scm
blob: 400750c928481ef36af789382bac7beaed816060 (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
;;; Primitive export of symbols linked from C binary.

(define-module (vcalendar primitive)
  #:export (%vcomponent-children
            %vcomponent-push-child!
            %vcomponent-filter-children!

            %vcomponent-parent

            %vcomponent-make
            %vcomponent-get-type
            %vcomponent-set-type!

            %vcomponent-set-attribute!
            %vcomponent-get-attribute

            %vcomponent-get-property
            %vcomponent-set-property!
            %vcomponent-property-list

            %vcomponent-attribute-list

            %vcomponent-shallow-copy))

(setenv "LD_LIBRARY_PATH"
        (string-append (dirname (dirname (dirname (current-filename))))
                       "/lib"))
(load-extension "libguile-calendar" "init_lib")