mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Fix a pair of missed extern "C" decls.
This commit is contained in:
parent
17820ec261
commit
f8465dadf4
@ -25,6 +25,10 @@
|
|||||||
#ifndef __STRPTIME_H__
|
#ifndef __STRPTIME_H__
|
||||||
#define __STRPTIME_H__
|
#define __STRPTIME_H__
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C"
|
||||||
|
{
|
||||||
|
#endif
|
||||||
/*
|
/*
|
||||||
* Version of "strptime()", for the benefit of OSes that don't have it.
|
* Version of "strptime()", for the benefit of OSes that don't have it.
|
||||||
*/
|
*/
|
||||||
@ -34,5 +38,7 @@ extern char *strptime(const char *, const char *, struct tm *);
|
|||||||
extern char *get_win32_locale_string(int lctype);
|
extern char *get_win32_locale_string(int lctype);
|
||||||
extern char *translate_win32_picture(const char *);
|
extern char *translate_win32_picture(const char *);
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
@ -44,10 +44,13 @@
|
|||||||
|
|
||||||
static QofLogModule log_module = GNC_MOD_ASSISTANT;
|
static QofLogModule log_module = GNC_MOD_ASSISTANT;
|
||||||
|
|
||||||
|
extern "C"
|
||||||
|
{
|
||||||
void stock_assistant_prepare (GtkAssistant *assistant, GtkWidget *page,
|
void stock_assistant_prepare (GtkAssistant *assistant, GtkWidget *page,
|
||||||
gpointer user_data);
|
gpointer user_data);
|
||||||
void stock_assistant_finish (GtkAssistant *assistant, gpointer user_data);
|
void stock_assistant_finish (GtkAssistant *assistant, gpointer user_data);
|
||||||
void stock_assistant_cancel (GtkAssistant *gtkassistant, gpointer user_data);
|
void stock_assistant_cancel (GtkAssistant *gtkassistant, gpointer user_data);
|
||||||
|
}
|
||||||
|
|
||||||
enum class FieldMask : unsigned;
|
enum class FieldMask : unsigned;
|
||||||
bool operator &(FieldMask lhs, FieldMask rhs);
|
bool operator &(FieldMask lhs, FieldMask rhs);
|
||||||
|
Loading…
Reference in New Issue
Block a user