mirror of
https://gitlab.gnome.org/GNOME/libsecret.git
synced 2024-12-22 20:58:52 +00:00
125289ae45
* Update to LGPL 2.1 * Fix typos in license comments * Update FSF address https://bugzilla.gnome.org/show_bug.cgi?id=673194
30 lines
745 B
C
30 lines
745 B
C
/* libsecret - GLib wrapper for Secret Service
|
|
*
|
|
* Copyright 2012 Red Hat Inc.
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published
|
|
* by the Free Software Foundation; either version 2.1 of the licence or (at
|
|
* your option) any later version.
|
|
*
|
|
* See the included COPYING file for more information.
|
|
*
|
|
* Author: Stef Walter <stefw@gnome.org>
|
|
*/
|
|
|
|
#ifndef __SECRET_H__
|
|
#define __SECRET_H__
|
|
|
|
#include <glib.h>
|
|
|
|
#define __SECRET_INSIDE_HEADER__
|
|
|
|
#include <secret/secret-password.h>
|
|
#include <secret/secret-schema.h>
|
|
#include <secret/secret-schemas.h>
|
|
#include <secret/secret-types.h>
|
|
|
|
#undef __SECRET_INSIDE_HEADER__
|
|
|
|
#endif /* __SECRET_H__ */
|