aboutsummaryrefslogtreecommitdiff
path: root/module/vcomponent/primitive.scm
blob: e103feae4a500700eec031819f43fa857503055e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
;;; Primitive export of symbols linked from C binary.

(define-module (vcomponent primitive)
  #:export #; 
  (%vcomponent-children                 ;
  %vcomponent-push-child!               ;
  %vcomponent-filter-children!          ;
                                        ;
  %vcomponent-parent                    ;
                                        ;
  %vcomponent-make                      ;
  %vcomponent-get-type                  ;
  %vcomponent-set-type!                 ;
                                        ;
  %vcomponent-get-attribute             ;
  %vcomponent-attribute-list            ;
                                        ;
  %vcomponent-shallow-copy)

  (make-vcomponent add-line! add-child! make-vline add-attribute! parse-path)
  )

(load-extension "libguile-calendar" "init_lib")