1
0
mirror of https://github.com/haiwen/libsearpc.git synced 2025-09-01 04:47:16 +00:00

Add missing int64 related signatures to rpc table

This commit is contained in:
plt
2012-06-10 09:10:39 +08:00
parent b86dfb60a1
commit bd7824f847
3 changed files with 21 additions and 19 deletions

View File

@@ -8,6 +8,24 @@
#include "searpc-utils.h"
static char*
searpc_client_fret__string (char *data, size_t len, GError **error);
static int
searpc_client_fret__int (char *data, size_t len, GError **error);
static gint64
searpc_client_fret__int64 (char *data, size_t len, GError **error);
static GObject*
searpc_client_fret__object (GType gtype, char *data,
size_t len, GError **error);
static GList*
searpc_client_fret__objlist (GType gtype, char *data,
size_t len, GError **error);
static void clean_objlist(GList *list)
{
GList *ptr;