~ubuntu-branches/ubuntu/raring/geany/raring-proposed

« back to all changes in this revision

Viewing changes to src/plugins.h

Import upstream version 0.17

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 *      plugins.h - this file is part of Geany, a fast and lightweight IDE
3
3
 *
4
 
 *      Copyright 2007-2008 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
5
 
 *      Copyright 2007-2008 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
 
4
 *      Copyright 2007-2009 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
 
5
 *      Copyright 2007-2009 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
6
6
 *
7
7
 *      This program is free software; you can redistribute it and/or modify
8
8
 *      it under the terms of the GNU General Public License as published by
19
19
 *      Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
20
20
 *      MA 02110-1301, USA.
21
21
 *
22
 
 * $Id: plugins.h 2491 2008-04-16 15:09:52Z ntrel $
 
22
 * $Id: plugins.h 3446 2009-01-04 18:30:42Z eht16 $
23
23
 */
24
24
 
25
25
 
30
30
 
31
31
void plugins_init(void);
32
32
 
33
 
void plugins_free(void);
34
 
 
35
 
void plugins_save_prefs(GKeyFile *config);
36
 
 
37
 
void plugins_load_prefs(GKeyFile *config);
38
 
 
39
 
void plugins_update_tools_menu(void);
40
 
 
41
 
void plugins_update_document_sensitive(gboolean enabled);
 
33
void plugins_finalize(void);
 
34
 
 
35
void plugins_load_active(void);
42
36
 
43
37
#endif
44
38