1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
/* SPDX-License-Identifier: MIT */
#ifndef _IGT_ANDROID_GLIB_H
#define _IGT_ANDROID_GLIB_H
#include <stdbool.h>
#include <stdlib.h>
#define G_KEY_FILE_NONE 0
#define G_REGEX_OPTIMIZE 0
typedef struct _GError {
int code;
char *message;
} GError;
typedef struct _GKeyFile {
char *key;
char *value;
} GKeyFile;
typedef struct _GMatchInfo {
int dummy;
} GMatchInfo;
typedef int gint;
typedef size_t gsize;
typedef char gchar;
typedef unsigned char guchar;
typedef void GRegex;
typedef int GRegexMatchFlags;
typedef bool gboolean;
static inline void g_clear_error(GError **error) { }
static inline void g_error_free(GError *error) { }
static inline const char *g_get_home_dir(void) { return "/data/local/tmp/igt"; }
static inline void g_key_file_free(GKeyFile *file) { }
static inline GKeyFile *g_key_file_new(void) { return NULL; }
static inline int g_key_file_get_integer(GKeyFile *key_file,
const char *group_name, const char *key, GError **error) { return 0; }
static inline char *g_key_file_get_string(GKeyFile *key_file,
const char *group_name, const char *key, GError **error) { return NULL; }
static inline bool g_key_file_load_from_file(GKeyFile *key_file,
const char *file, int flags, GError **error) { return false; }
static inline GRegex *g_regex_new(const char *pattern, int compile_options,
int match_options, GError **error) { return NULL; }
static inline void g_regex_unref(GRegex *pattern) { };
static inline gboolean g_regex_match(GRegex *regex, const gchar *string,
GRegexMatchFlags match_options, GMatchInfo **match_info) { return false; }
static gchar *g_base64_encode(const guchar *data, gsize len) { return NULL; }
#endif /* _IGT_ANDROID_GLIB_H */
|