Github User Fetcher 1.0.0
C Application with Server and GUI
|
#include <glib/gtypes.h>
Go to the source code of this file.
Data Structures | |
struct | _GPathBuf |
Macros | |
#define | G_PATH_BUF_INIT |
Typedefs | |
typedef typedefG_BEGIN_DECLS struct _GPathBuf | GPathBuf |
#define G_PATH_BUF_INIT |
G_PATH_BUF_INIT:
Initializes a GPathBuf on the stack.
A stack-allocated GPathBuf
must be initialized if it is used together with g_auto() to avoid warnings and crashes if the function returns before calling g_path_buf_init().
|[ g_auto (GPathBuf) buf = G_PATH_BUF_INIT; ]|
Since: 2.76
Definition at line 40 of file gpathbuf.h.
Definition at line 17 of file gpathbuf.h.
GLIB_AVAILABLE_IN_2_76 void g_path_buf_clear | ( | GPathBuf * | buf | ) |
GLIB_AVAILABLE_IN_2_76 char * g_path_buf_clear_to_path | ( | GPathBuf * | buf | ) |
GLIB_AVAILABLE_IN_2_76 GPathBuf * g_path_buf_copy | ( | GPathBuf * | buf | ) |
GLIB_AVAILABLE_IN_2_76 gboolean g_path_buf_equal | ( | gconstpointer | v1, |
gconstpointer | v2 ) |
GLIB_AVAILABLE_IN_2_76 void g_path_buf_free | ( | GPathBuf * | buf | ) |
GLIB_AVAILABLE_IN_2_76 char * g_path_buf_free_to_path | ( | GPathBuf * | buf | ) |
GLIB_AVAILABLE_IN_2_76 GPathBuf * g_path_buf_init | ( | GPathBuf * | buf | ) |
GLIB_AVAILABLE_IN_2_76 GPathBuf * g_path_buf_init_from_path | ( | GPathBuf * | buf, |
const char * | path ) |
GLIB_AVAILABLE_IN_2_76 GPathBuf * g_path_buf_new | ( | void | ) |
GLIB_AVAILABLE_IN_2_76 GPathBuf * g_path_buf_new_from_path | ( | const char * | path | ) |
GLIB_AVAILABLE_IN_2_76 gboolean g_path_buf_pop | ( | GPathBuf * | buf | ) |
GLIB_AVAILABLE_IN_2_76 GPathBuf * g_path_buf_push | ( | GPathBuf * | buf, |
const char * | path ) |
GLIB_AVAILABLE_IN_2_76 gboolean g_path_buf_set_extension | ( | GPathBuf * | buf, |
const char * | extension ) |
GLIB_AVAILABLE_IN_2_76 gboolean g_path_buf_set_filename | ( | GPathBuf * | buf, |
const char * | file_name ) |
GLIB_AVAILABLE_IN_2_76 char * g_path_buf_to_path | ( | GPathBuf * | buf | ) |