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

46 lines
921 B
Plaintext
Raw Normal View History

2011-11-07 13:46:58 -06:00
;; -*- scheme -*-
; object definitions ...
;; Enumerations and flags ...
2016-01-25 08:13:49 -06:00
;; From ../../xedit/xedit-commands.h
2011-11-07 13:46:58 -06:00
(define-function load_uri
2016-01-25 08:13:49 -06:00
(c-name "xedit_commands_load_uri")
2011-11-07 13:46:58 -06:00
(return-type "none")
(parameters
2016-01-25 08:13:49 -06:00
'("XeditWindow*" "window")
2011-11-07 13:46:58 -06:00
'("const-gchar*" "uri")
2016-01-25 08:13:49 -06:00
'("const-XeditEncoding*" "encoding")
2011-11-07 13:46:58 -06:00
'("gint" "line_pos")
)
)
(define-function load_uris
2016-01-25 08:13:49 -06:00
(c-name "xedit_commands_load_uris")
2011-11-07 13:46:58 -06:00
(return-type "gint")
(parameters
2016-01-25 08:13:49 -06:00
'("XeditWindow*" "window")
2011-11-07 13:46:58 -06:00
'("const-GSList*" "uris")
2016-01-25 08:13:49 -06:00
'("const-XeditEncoding*" "encoding")
2011-11-07 13:46:58 -06:00
'("gint" "line_pos")
)
)
(define-function save_document
2016-01-25 08:13:49 -06:00
(c-name "xedit_commands_save_document")
2011-11-07 13:46:58 -06:00
(return-type "none")
(parameters
2016-01-25 08:13:49 -06:00
'("XeditWindow*" "window")
'("XeditDocument*" "document")
2011-11-07 13:46:58 -06:00
)
)
(define-function save_all_documents
2016-01-25 08:13:49 -06:00
(c-name "xedit_commands_save_all_documents")
2011-11-07 13:46:58 -06:00
(return-type "none")
(parameters
2016-01-25 08:13:49 -06:00
'("XeditWindow*" "window")
2011-11-07 13:46:58 -06:00
)
)