xed/plugin-loaders/python/bindings/xedcommands.defs

46 lines
895 B
Plaintext
Raw Normal View History

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