sergiotarxz
923282f1d1
It is still needed to refactor string manipulation and delete manga.c and manga.h (The root one, MgManga is ok.)
16 lines
327 B
C
16 lines
327 B
C
#pragma once
|
|
#include <glib-object.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define MG_TYPE_UTIL_SOUP mg_util_soup_get_type()
|
|
G_DECLARE_FINAL_TYPE (MgUtilSoup, mg_util_soup, MG, UTIL_SOUP, GObject)
|
|
|
|
MgUtilSoup *
|
|
mg_util_soup_new ();
|
|
|
|
char *
|
|
mg_util_soup_get_request (MgUtilSoup *self, const char *const url, gsize *size_response_text);
|
|
|
|
G_END_DECLS
|