diff options
author | Timo Dritschler <timo.dritschler@kit.edu> | 2015-04-15 16:53:05 +0200 |
---|---|---|
committer | Timo Dritschler <timo.dritschler@kit.edu> | 2015-04-15 16:53:05 +0200 |
commit | 025516267599a6c97b334b8e47ba1679f81052a7 (patch) | |
tree | 8d82b4e8e3501ea119b18ac05c90419027e5a80f /src/kiro-server.h | |
parent | 019504a32e56d5bd6ae7b0cbdcbec2e114e6f638 (diff) | |
download | kiro-025516267599a6c97b334b8e47ba1679f81052a7.tar.gz kiro-025516267599a6c97b334b8e47ba1679f81052a7.tar.bz2 kiro-025516267599a6c97b334b8e47ba1679f81052a7.tar.xz kiro-025516267599a6c97b334b8e47ba1679f81052a7.zip |
Changed gi.introspection handling for pointers to and from KIRO
Diffstat (limited to 'src/kiro-server.h')
-rw-r--r-- | src/kiro-server.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/kiro-server.h b/src/kiro-server.h index 8479e15..c6d5fe8 100644 --- a/src/kiro-server.h +++ b/src/kiro-server.h @@ -98,9 +98,9 @@ void kiro_server_free (KiroServer *server); /** * kiro_server_start: * @server: #KiroServer to perform the operation on - * @bind_addr: Local address to bind the server to - * @bind_port: Local port to listen for connections - * @mem: (transfer none): Pointer to the memory that is to be provided + * @bind_addr (transfer none): Local address to bind the server to + * @bind_port (transfer none): Local port to listen for connections + * @mem: (transfer none) (type gulong): Pointer to the memory that is to be provided * @mem_size: Size in bytes of the given memory * * Starts the #KiroServer to provide the given memory to any connecting @@ -124,7 +124,7 @@ int kiro_server_start (KiroServer *server, const char *bind_addr, const char *bi /** * kiro_server_realloc: * @server: #KiroServer to perform the operation on - * @mem: (transfer none): Pointer to the memory that is to be provided + * @mem: (transfer none) (type gulong): Pointer to the memory that is to be provided * @mem_size: Size in bytes of the given memory * * Changes the memory that is provided by the server. All connected clients |