X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=glib%2Fgmappedfile.h;h=b566b7de40a31ece8c545bd3595d7f87426ea497;hb=9f5afe3966d31ef6f1e880d950206a0325e6c777;hp=f48b141b935fca16aaa783183995d110942e4a46;hpb=03766a1a38407fbbbf8c30874e6f8d46e2b0da43;p=platform%2Fupstream%2Fglib.git diff --git a/glib/gmappedfile.h b/glib/gmappedfile.h index f48b141..b566b7d 100644 --- a/glib/gmappedfile.h +++ b/glib/gmappedfile.h @@ -14,33 +14,40 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. + * License along with this library; if not, see . */ +#ifndef __G_MAPPED_FILE_H__ +#define __G_MAPPED_FILE_H__ + #if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) #error "Only can be included directly." #endif -#ifndef __G_MAPPED_FILE_H__ -#define __G_MAPPED_FILE_H__ - +#include #include G_BEGIN_DECLS typedef struct _GMappedFile GMappedFile; +GLIB_AVAILABLE_IN_ALL GMappedFile *g_mapped_file_new (const gchar *filename, gboolean writable, GError **error) G_GNUC_MALLOC; +GLIB_AVAILABLE_IN_ALL GMappedFile *g_mapped_file_new_from_fd (gint fd, gboolean writable, GError **error) G_GNUC_MALLOC; +GLIB_AVAILABLE_IN_ALL gsize g_mapped_file_get_length (GMappedFile *file); +GLIB_AVAILABLE_IN_ALL gchar *g_mapped_file_get_contents (GMappedFile *file); +GLIB_AVAILABLE_IN_2_34 +GBytes * g_mapped_file_get_bytes (GMappedFile *file); +GLIB_AVAILABLE_IN_ALL GMappedFile *g_mapped_file_ref (GMappedFile *file); +GLIB_AVAILABLE_IN_ALL void g_mapped_file_unref (GMappedFile *file); GLIB_DEPRECATED_FOR(g_mapped_file_unref)