Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
271 B
C
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
#include <gio/gio.h>
#include <glib-object.h>
void my_settings_new(const char *schema_id) {
return g_settings_new(schema_id);
}
int main() {
g_autoptr (GSettings) settings;
settings = my_settings_new("org.gnome.evolution-data-server.addressbook");
return 0;
}