2011-11-07 13:46:58 -06:00
|
|
|
;; -*- scheme -*-
|
|
|
|
; object definitions ...
|
|
|
|
;; Enumerations and flags ...
|
|
|
|
|
|
|
|
|
2016-02-04 03:20:42 -06:00
|
|
|
;; From ../../xed/xed-commands.h
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
(define-function load_uri
|
2016-02-04 03:20:42 -06:00
|
|
|
(c-name "xed_commands_load_uri")
|
2011-11-07 13:46:58 -06:00
|
|
|
(return-type "none")
|
|
|
|
(parameters
|
2016-02-04 03:20:42 -06:00
|
|
|
'("XedWindow*" "window")
|
2011-11-07 13:46:58 -06:00
|
|
|
'("const-gchar*" "uri")
|
2016-02-04 03:20:42 -06:00
|
|
|
'("const-XedEncoding*" "encoding")
|
2011-11-07 13:46:58 -06:00
|
|
|
'("gint" "line_pos")
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
(define-function load_uris
|
2016-02-04 03:20:42 -06:00
|
|
|
(c-name "xed_commands_load_uris")
|
2011-11-07 13:46:58 -06:00
|
|
|
(return-type "gint")
|
|
|
|
(parameters
|
2016-02-04 03:20:42 -06:00
|
|
|
'("XedWindow*" "window")
|
2011-11-07 13:46:58 -06:00
|
|
|
'("const-GSList*" "uris")
|
2016-02-04 03:20:42 -06:00
|
|
|
'("const-XedEncoding*" "encoding")
|
2011-11-07 13:46:58 -06:00
|
|
|
'("gint" "line_pos")
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
(define-function save_document
|
2016-02-04 03:20:42 -06:00
|
|
|
(c-name "xed_commands_save_document")
|
2011-11-07 13:46:58 -06:00
|
|
|
(return-type "none")
|
|
|
|
(parameters
|
2016-02-04 03:20:42 -06:00
|
|
|
'("XedWindow*" "window")
|
|
|
|
'("XedDocument*" "document")
|
2011-11-07 13:46:58 -06:00
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
(define-function save_all_documents
|
2016-02-04 03:20:42 -06:00
|
|
|
(c-name "xed_commands_save_all_documents")
|
2011-11-07 13:46:58 -06:00
|
|
|
(return-type "none")
|
|
|
|
(parameters
|
2016-02-04 03:20:42 -06:00
|
|
|
'("XedWindow*" "window")
|
2011-11-07 13:46:58 -06:00
|
|
|
)
|
|
|
|
)
|