Commit 8b7ee4e5d848fa343330b071c89f2a3ae9d6bd0d

Authored by perry.werneck@gmail.com
1 parent 034a7692
Exists in master and in 1 other branch develop

Incluindo configuração de charset

Showing 1 changed file with 6 additions and 0 deletions   Show diff stats
widget.c
... ... @@ -1528,6 +1528,12 @@ gboolean v3270_is_connected(GtkWidget *widget)
1528 1528 return lib3270_connected(GTK_V3270(widget)->host) ? TRUE : FALSE;
1529 1529 }
1530 1530  
  1531 +int v3270_set_host_charset(GtkWidget *widget, const gchar *name)
  1532 +{
  1533 + g_return_val_if_fail(GTK_IS_V3270(widget),FALSE);
  1534 + return lib3270_set_host_charset(GTK_V3270(widget)->host,name);
  1535 +}
  1536 +
1531 1537 GtkWidget * v3270_get_default_widget(void)
1532 1538 {
1533 1539 H3270 * hSession = lib3270_get_default_session_handle();
... ...