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

46 lines
921 B
Plaintext
Raw Normal View History

2011-11-07 13:46:58 -06:00
;; -*- scheme -*-
; object definitions ...
;; Enumerations and flags ...
2011-11-07 16:52:18 -06:00
;; From ../../pluma/pluma-commands.h
2011-11-07 13:46:58 -06:00
(define-function load_uri
2011-11-07 16:52:18 -06:00
(c-name "pluma_commands_load_uri")
2011-11-07 13:46:58 -06:00
(return-type "none")
(parameters
2011-11-07 16:52:18 -06:00
'("PlumaWindow*" "window")
2011-11-07 13:46:58 -06:00
'("const-gchar*" "uri")
2011-11-07 16:52:18 -06:00
'("const-PlumaEncoding*" "encoding")
2011-11-07 13:46:58 -06:00
'("gint" "line_pos")
)
)
(define-function load_uris
2011-11-07 16:52:18 -06:00
(c-name "pluma_commands_load_uris")
2011-11-07 13:46:58 -06:00
(return-type "gint")
(parameters
2011-11-07 16:52:18 -06:00
'("PlumaWindow*" "window")
2011-11-07 13:46:58 -06:00
'("const-GSList*" "uris")
2011-11-07 16:52:18 -06:00
'("const-PlumaEncoding*" "encoding")
2011-11-07 13:46:58 -06:00
'("gint" "line_pos")
)
)
(define-function save_document
2011-11-07 16:52:18 -06:00
(c-name "pluma_commands_save_document")
2011-11-07 13:46:58 -06:00
(return-type "none")
(parameters
2011-11-07 16:52:18 -06:00
'("PlumaWindow*" "window")
'("PlumaDocument*" "document")
2011-11-07 13:46:58 -06:00
)
)
(define-function save_all_documents
2011-11-07 16:52:18 -06:00
(c-name "pluma_commands_save_all_documents")
2011-11-07 13:46:58 -06:00
(return-type "none")
(parameters
2011-11-07 16:52:18 -06:00
'("PlumaWindow*" "window")
2011-11-07 13:46:58 -06:00
)
)