GSF Reference Manual | |||
---|---|---|---|
<<< Previous Page | Home | Up | Next Page >>> |
#define GSF_INPUT_MEMORY_TYPE #define GSF_INPUT_MEMORY (o) struct GsfInputMemory; GType gsf_input_memory_get_type (void); GsfInput* gsf_input_memory_new (guint8 const *buf, gsf_off_t length, gboolean needs_free); #define GSF_INPUT_MMAP_TYPE #define GSF_INPUT_MMAP (o) struct GsfInputMMap; GType gsf_input_mmap_get_type (void); GsfInput* gsf_input_mmap_new (char const *filename, GError **err); |
#define GSF_INPUT_MEMORY(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GSF_INPUT_MEMORY_TYPE, GsfInputMemory)) |
o : |
|
GsfInput* gsf_input_memory_new (guint8 const *buf, gsf_off_t length, gboolean needs_free); |
buf : | |
length : | |
needs_free : | |
Returns : |
|
#define GSF_INPUT_MMAP(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GSF_INPUT_MMAP_TYPE, GsfInputMMap)) |
o : |
|
GsfInput* gsf_input_mmap_new (char const *filename, GError **err); |
filename : | |
err : | |
Returns : |
|