Commit 30084e128759b79a3cf5f266d11f1e74d1505ac2
1 parent
1db1fe35
Exists in
master
and in
1 other branch
Updating windows build.
Showing
3 changed files
with
3 additions
and
15 deletions
Show diff stats
.gitignore
pw3270-plugin-ipc.cbp
@@ -98,10 +98,10 @@ | @@ -98,10 +98,10 @@ | ||
98 | <Unit filename="src/include/config.h.in" /> | 98 | <Unit filename="src/include/config.h.in" /> |
99 | <Unit filename="src/include/lib3270/ipc.h" /> | 99 | <Unit filename="src/include/lib3270/ipc.h" /> |
100 | <Unit filename="src/linux/gobject.h" /> | 100 | <Unit filename="src/linux/gobject.h" /> |
101 | - <Unit filename="src/plugin/private.h" /> | ||
102 | - <Unit filename="src/plugin/start.c"> | 101 | + <Unit filename="src/plugin/plugin.c"> |
103 | <Option compilerVar="CC" /> | 102 | <Option compilerVar="CC" /> |
104 | </Unit> | 103 | </Unit> |
104 | + <Unit filename="src/plugin/private.h" /> | ||
105 | <Unit filename="src/service/getproperties.c"> | 105 | <Unit filename="src/service/getproperties.c"> |
106 | <Option compilerVar="CC" /> | 106 | <Option compilerVar="CC" /> |
107 | </Unit> | 107 | </Unit> |
src/core/windows/start.c
@@ -84,16 +84,3 @@ void ipc3270_export_object(GObject *object, const char *name, GError **error) { | @@ -84,16 +84,3 @@ void ipc3270_export_object(GObject *object, const char *name, GError **error) { | ||
84 | } | 84 | } |
85 | 85 | ||
86 | } | 86 | } |
87 | - | ||
88 | -const gchar * ipc3270_get_display_charset(GObject *object) { | ||
89 | - return lib3270_get_display_charset(IPC3270(object)->hSession); | ||
90 | -} | ||
91 | - | ||
92 | -H3270 * ipc3270_get_session(GObject *object) { | ||
93 | - return IPC3270(object)->hSession; | ||
94 | -} | ||
95 | - | ||
96 | -void ipc3270_set_error(GObject *object, int errcode, GError **error) { | ||
97 | - g_set_error(error,IPC3270(object)->error_domain,errcode,"%s",strerror(errcode)); | ||
98 | -} | ||
99 | - |