/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/* gck-deprecated.h - the GObject PKCS#11 wrapper library
Copyright (C) 2011 Stefan Walter
The Gnome Keyring Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
The Gnome Keyring Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with the Gnome Library; see the file COPYING.LIB. If not,
see .
Author: Stef Walter
*/
#ifndef GCK_DEPRECATED_H
#define GCK_DEPRECATED_H
#include "gck.h"
G_BEGIN_DECLS
#ifndef GCK_DISABLE_DEPRECATED
typedef GArray GckMechanisms;
G_DEPRECATED_FOR(g_array_free)
#define gck_mechanisms_free(a) (g_array_free (a, TRUE))
#define CKR_GCK_MODULE_PROBLEM GCK_ERROR_MODULE_PROBLEM
G_DEPRECATED_FOR(gck_error_get_quark)
GQuark gck_get_error_quark (void);
G_DEPRECATED_FOR(gck_uri_error_get_quark)
GQuark gck_uri_get_error_quark (void);
#define GCK_URI_BAD_PREFIX GCK_URI_BAD_SCHEME
G_DEPRECATED_FOR(gck_attributes_get_type)
GType gck_attributes_get_boxed_type (void) G_GNUC_CONST;
G_DEPRECATED_FOR(gck_builder_set_all)
GckAttributes * gck_attributes_new_full (GckAllocator allocator);
G_DEPRECATED_FOR(gck_builder_set_all)
GckAttribute * gck_attributes_add (GckAttributes *attrs,
GckAttribute *attr);
G_DEPRECATED_FOR(gck_builder_set_all)
void gck_attributes_add_all (GckAttributes *attrs,
GckAttributes *from);
G_DEPRECATED_FOR(gck_builder_add_data)
GckAttribute * gck_attributes_add_data (GckAttributes *attrs,
gulong attr_type,
const guchar *value,
gsize length);
G_DEPRECATED_FOR(gck_builder_add_invalid)
GckAttribute * gck_attributes_add_invalid (GckAttributes *attrs,
gulong attr_type);
G_DEPRECATED_FOR(gck_builder_add_empty)
GckAttribute * gck_attributes_add_empty (GckAttributes *attrs,
gulong attr_type);
G_DEPRECATED_FOR(gck_builder_add_boolean)
GckAttribute* gck_attributes_add_boolean (GckAttributes *attrs,
gulong attr_type,
gboolean value);
G_DEPRECATED_FOR(gck_builder_add_string)
GckAttribute* gck_attributes_add_string (GckAttributes *attrs,
gulong attr_type,
const gchar *value);
G_DEPRECATED_FOR(gck_builder_add_date)
GckAttribute* gck_attributes_add_date (GckAttributes *attrs,
gulong attr_type,
const GDate *value);
G_DEPRECATED_FOR(gck_builder_add_ulong)
GckAttribute* gck_attributes_add_ulong (GckAttributes *attrs,
gulong attr_type,
gulong value);
G_DEPRECATED_FOR(gck_builder_set_data)
void gck_attributes_set (GckAttributes *attrs,
GckAttribute *attr);
G_DEPRECATED_FOR(gck_builder_set_boolean)
void gck_attributes_set_boolean (GckAttributes *attrs,
gulong attr_type,
gboolean value);
G_DEPRECATED_FOR(gck_builder_set_ulong)
void gck_attributes_set_ulong (GckAttributes *attrs,
gulong attr_type,
gulong value);
G_DEPRECATED_FOR(gck_builder_set_string)
void gck_attributes_set_string (GckAttributes *attrs,
gulong attr_type,
const gchar *value);
G_DEPRECATED_FOR(gck_builder_set_date)
void gck_attributes_set_date (GckAttributes *attrs,
gulong attr_type,
const GDate *value);
G_DEPRECATED_FOR(gck_builder_set_all)
void gck_attributes_set_all (GckAttributes *attrs,
GckAttributes *from);
G_DEPRECATED_FOR(gck_attributes_ref or gck_builder_add_all)
GckAttributes * gck_attributes_dup (GckAttributes *attrs);
#endif /* GCK_DISABLE_DEPRECATED */
G_END_DECLS
#endif /* GCK_H */