diff options
author | Xan Lopez <xan@gnome.org> | 2009-12-15 17:31:47 +0800 |
---|---|---|
committer | Xan Lopez <xan@gnome.org> | 2009-12-15 17:31:47 +0800 |
commit | 7a295e2c5db878dbd076c2f582cbae8aa738c3b7 (patch) | |
tree | b0c4dc94c2b97cf7a7d5a955746d8d84eebd80f5 /lib/ephy-nss-glue.h | |
parent | a31c25320318115914e009048a4081b2a1b58f50 (diff) | |
download | gsoc2013-epiphany-7a295e2c5db878dbd076c2f582cbae8aa738c3b7.tar gsoc2013-epiphany-7a295e2c5db878dbd076c2f582cbae8aa738c3b7.tar.gz gsoc2013-epiphany-7a295e2c5db878dbd076c2f582cbae8aa738c3b7.tar.bz2 gsoc2013-epiphany-7a295e2c5db878dbd076c2f582cbae8aa738c3b7.tar.lz gsoc2013-epiphany-7a295e2c5db878dbd076c2f582cbae8aa738c3b7.tar.xz gsoc2013-epiphany-7a295e2c5db878dbd076c2f582cbae8aa738c3b7.tar.zst gsoc2013-epiphany-7a295e2c5db878dbd076c2f582cbae8aa738c3b7.zip |
Move profile migration tools from src/ to lib/
We'll use them from embed/ for form password saving, and embed/ can't
use code from src/
Diffstat (limited to 'lib/ephy-nss-glue.h')
-rw-r--r-- | lib/ephy-nss-glue.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/lib/ephy-nss-glue.h b/lib/ephy-nss-glue.h new file mode 100644 index 000000000..0c157226a --- /dev/null +++ b/lib/ephy-nss-glue.h @@ -0,0 +1,29 @@ +/* + * Copyright © 2009 Igalia S.L. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2, or (at your option) + * any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + +#ifndef EPHY_NSS_GLUE_H +#define EPHY_NSS_GLUE_H + +#include <glib.h> + +gboolean ephy_nss_glue_init (void); +void ephy_nss_glue_close (void); +char * ephy_nss_glue_decrypt (const unsigned char *, gsize); + +#endif |