C++-ize filter_expressions.h.

svn path=/trunk/; revision=47525
This commit is contained in:
Gerald Combs 2013-02-06 19:12:14 +00:00
parent fe8b2c63e3
commit 138b732b80
1 changed files with 8 additions and 0 deletions

View File

@ -25,6 +25,10 @@
#ifndef __FILTER_EXPRESSIONS_H__
#define __FILTER_EXPRESSIONS_H__
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
struct filter_expression {
gpointer button; /* Filter toolbar */
gchar *label;
@ -44,4 +48,8 @@ struct filter_expression *filter_expression_new(const gchar *label,
void filter_expression_init(gboolean prefs);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* __FILTER_EXPRESSIONS_H__ */