summary refs log tree commit diff stats
path: root/plugins/upd
AgeCommit message (Expand)Author
2010-10-29update wdk distribution to use relative paths where possibleberkeviktor@aol.com
2010-10-21some cosmeticsberkeviktor@aol.com
2010-10-20fix escape characterberkeviktor@aol.com
2010-10-21add icon for update checker menu entryberkeviktor@aol.com
2010-10-21make update checker available via guiberkeviktor@aol.com
2010-10-20some formattingberkeviktor@aol.com
2010-10-06shorten plugin nameberkeviktor@aol.com
2010-09-07command to reflect name changeberkeviktor@aol.com
2010-09-07rename updater pluginberkeviktor@aol.com
2010-09-06minor formattingberkeviktor@aol.com
2010-09-06updater message cosmeticsberkeviktor@aol.com
2010-09-06add name for the other 2 messages tooberkeviktor@aol.com
2010-09-06oops, use runtime version check instead of compile time checkberkeviktor@aol.com
2010-09-06add updater pluginberkeviktor@aol.com
'oid'>1a96ca3e ^
1a96ca3e ^

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37

  
                                                               























                                                                               

                   

                 
                                         

                                                               
 

      
/*

  Copyright (c) 2010 Samuel Lidén Borell <samuel@kodafritt.se>

  Permission is hereby granted, free of charge, to any person obtaining a copy
  of this software and associated documentation files (the "Software"), to deal
  in the Software without restriction, including without limitation the rights
  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  copies of the Software, and to permit persons to whom the Software is
  furnished to do so, subject to the following conditions:

  The above copyright notice and this permission notice shall be included in
  all copies or substantial portions of the Software.

  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  THE SOFTWARE.

*/

#ifndef KEYSTORE_H
#define KEYSTORE_H

#include <stddef.h>

#include <glib.h>

char *keystore_get_key(const char *nick);
gboolean keystore_store_key(const char *nick, const char *key);
gboolean keystore_delete_nick(const char *nick);

#endif