| Server IP : 182.53.201.61 / Your IP : 216.73.217.175 Web Server : Apache/2.2.15 (Fedora) System : Linux km10.dyndns.org 2.6.31.5-127.fc12.i686.PAE #1 SMP Sat Nov 7 21:25:57 EST 2009 i686 User : apache ( 48) PHP Version : 5.3.3 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/include/libbonobo-2.0/bonobo/ |
Upload File : |
/** * gnome-stream-client.c: Helper routines to access a Bonobo_Stream CORBA object * * Authors: * Nat Friedman (nat@nat.org) * Miguel de Icaza (miguel@kernel.org). * Michael Meekss (michael@helixcode.com) * * Copyright 1999,2000 Helix Code, Inc. */ #ifndef _BONOBO_STREAM_CLIENT_H_ #define _BONOBO_STREAM_CLIENT_H_ #include <bonobo/Bonobo.h> void bonobo_stream_client_write (const Bonobo_Stream stream, const void *buffer, const size_t size, CORBA_Environment *ev); guint8 *bonobo_stream_client_read (const Bonobo_Stream stream, const size_t size, CORBA_long *length_read, CORBA_Environment *ev); void bonobo_stream_client_write_string (const Bonobo_Stream stream, const char *str, const gboolean terminate, CORBA_Environment *ev); void bonobo_stream_client_printf (const Bonobo_Stream stream, const gboolean terminate, CORBA_Environment *ev, const char *fmt, ...) G_GNUC_PRINTF(4,5); CORBA_long bonobo_stream_client_read_string (const Bonobo_Stream stream, char **str, CORBA_Environment *ev); CORBA_long bonobo_stream_client_get_length (const Bonobo_Stream stream, CORBA_Environment *ev); #endif /* _BONOBO_STREAM_CLIENT_H_ */