Commit a363c71bf29e013872270456eaf6955f8c08dbdc
1 parent
9e9bc581
Exists in
master
and in
1 other branch
Fixing windows build.
Showing
1 changed file
with
4 additions
and
4 deletions
Show diff stats
src/include/v3270/actions.h
| ... | ... | @@ -224,16 +224,16 @@ |
| 224 | 224 | GType V3270SimpleAction_get_type(void) G_GNUC_CONST; |
| 225 | 225 | |
| 226 | 226 | /// @brief Create an empty simple action. |
| 227 | - V3270SimpleAction * v3270_simple_action_new(); | |
| 227 | + LIB3270_EXPORT V3270SimpleAction * v3270_simple_action_new(); | |
| 228 | 228 | |
| 229 | 229 | /// @brief Create a dialog action. |
| 230 | - V3270SimpleAction * v3270_dialog_action_new(GtkWidget * (*factory)(V3270SimpleAction *, GtkWidget *)); | |
| 230 | + LIB3270_EXPORT V3270SimpleAction * v3270_dialog_action_new(GtkWidget * (*factory)(V3270SimpleAction *, GtkWidget *)); | |
| 231 | 231 | |
| 232 | 232 | /// @brief Create an action from property name. |
| 233 | - V3270SimpleAction * v3270_property_action_new(GtkWidget *widget, const gchar *property_name); | |
| 233 | + LIB3270_EXPORT V3270SimpleAction * v3270_property_action_new(GtkWidget *widget, const gchar *property_name); | |
| 234 | 234 | |
| 235 | 235 | /// @brief Create an action with the "enable" property binded with terminal property. |
| 236 | - V3270SimpleAction * v3270_conditional_action_new(GtkWidget *widget, const gchar *property_name); | |
| 236 | + LIB3270_EXPORT V3270SimpleAction * v3270_conditional_action_new(GtkWidget *widget, const gchar *property_name); | |
| 237 | 237 | |
| 238 | 238 | G_END_DECLS |
| 239 | 239 | ... | ... |