* A real simple schema for stuff stored by the user.
* No attributes
#include "secret-schema.h"
+static const SecretSchema note_schema = {
+ "org.gnome.keyring.Note",
+ SECRET_SCHEMA_DONT_MATCH_NAME,
+ {
+ { "NULL", 0 },
+ }
+};
+
+const SecretSchema * SECRET_SCHEMA_NOTE = ¬e_schema;
+
+
static const SecretSchema network_schema = {
"org.gnome.keyring.NetworkPassword",
SECRET_SCHEMA_DONT_MATCH_NAME,
G_BEGIN_DECLS
+/*
+ * A note or password stored manually by the user.
+ */
+extern const SecretSchema * SECRET_SCHEMA_NOTE;
+
/*
* This schema is here for compatibility with libgnome-keyring's network
* password functions.