blob: ed1ed9f1cc68a59cb5dca579c7d08eeb0ee499f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
;; -*- scheme -*-
(define-object Connection
(in-module "giounix")
(parent "GSocketConnection")
(c-name "GUnixConnection")
(gtype-id "G_TYPE_UNIX_CONNECTION")
)
(define-object DesktopAppInfo
(docstring
"DesktopAppInfo(desktop_id) -> gio.unix.DesktopAppInfo\n\n"
"gio.Unix.DesktopAppInfo is an implementation of gio.AppInfo\n"
"based on desktop files."
)
(in-module "giounix")
(parent "GObject")
(c-name "GDesktopAppInfo")
(gtype-id "G_TYPE_DESKTOP_APP_INFO")
)
(define-object FDMessage
(in-module "giounix")
(parent "GSocketControlMessage")
(c-name "GUnixFDMessage")
(gtype-id "G_TYPE_UNIX_FD_MESSAGE")
)
(define-object InputStream
(in-module "giounix")
(parent "GInputStream")
(c-name "GUnixInputStream")
(gtype-id "G_TYPE_UNIX_INPUT_STREAM")
)
(define-object OutputStream
(in-module "giounix")
(parent "GOutputStream")
(c-name "GUnixOutputStream")
(gtype-id "G_TYPE_UNIX_OUTPUT_STREAM")
)
(define-pointer MountEntry
(in-module "giounix")
(c-name "GUnixMountEntry")
(gtype-id "GIO_UNIX_MOUNT_ENTRY_TYPE")
)
(define-object SocketAddress
(in-module "giounix")
(parent "GSocketAddress")
(c-name "GUnixSocketAddress")
(gtype-id "G_TYPE_UNIX_SOCKET_ADDRESS")
)
|