remove old files

This commit is contained in:
Wim Taymans 2016-07-28 21:30:15 +02:00
parent 4cb90f3b86
commit 7cfd1eb8ee
10 changed files with 7 additions and 1602 deletions

View file

@ -55,42 +55,3 @@ void pinos_subscribe_get_proxy (PinosSubscribe *
GDBusProxy * pinos_subscribe_get_proxy_finish (PinosSubscribe *subscribe,
GAsyncResult *res,
GError **error);
#if 0
typedef struct {
guint32 version;
guint32 flags;
guint32 length;
} PinosStackHeader;
typedef struct {
PinosBuffer *next;
gpointer data;
gsize size;
gsize max_size;
gpointer free_data;
gint *fds;
gint n_fds;
gint max_fds;
gpointer free_fds;
gsize magic;
gint refcount;
} PinosStackBuffer;
#define PSB(b) ((PinosStackBuffer *) (b))
#define PSB_MAGIC ((gsize) 5493683301u)
#define is_valid_buffer(b) (b != NULL && \
PSB(b)->magic == PSB_MAGIC)
gboolean pinos_io_read_buffer (int fd,
PinosBuffer *sb,
void *data,
size_t max_data,
int *fds,
size_t max_fds,
GError **error);
gboolean pinos_io_write_buffer (int fd,
PinosBuffer *buffer,
GError **error);
#endif