Commit 1ed6549c6d31385626fb96d33507bed21efdc231
1 parent
e600e885
Exists in
master
and in
5 other branches
Atualizando plugin rexx em função das atualizações na classe base.
Showing
2 changed files
with
9 additions
and
1 deletions
Show diff stats
po/pt_BR.po
| ... | ... | @@ -5,7 +5,7 @@ msgid "" |
| 5 | 5 | msgstr "" |
| 6 | 6 | "Project-Id-Version: pw3270 5.0\n" |
| 7 | 7 | "Report-Msgid-Bugs-To: \n" |
| 8 | -"POT-Creation-Date: 2015-12-03 18:12-0200\n" | |
| 8 | +"POT-Creation-Date: 2015-12-07 15:22-0200\n" | |
| 9 | 9 | "PO-Revision-Date: 2014-02-17 08:05-0300\n" |
| 10 | 10 | "Last-Translator: Perry Werneck <perry.werneck@gmail.com>\n" |
| 11 | 11 | "Language-Team: Portugues <>\n" | ... | ... |
src/plugins/rx3270/pluginmain.cc
| ... | ... | @@ -87,7 +87,10 @@ |
| 87 | 87 | void free(void *ptr); |
| 88 | 88 | |
| 89 | 89 | const string get_version(void); |
| 90 | + | |
| 90 | 91 | LIB3270_CSTATE get_cstate(void); |
| 92 | + LIB3270_MESSAGE get_program_message(void); | |
| 93 | + | |
| 91 | 94 | int disconnect(void); |
| 92 | 95 | int set_url(const char *uri); |
| 93 | 96 | int connect(void); |
| ... | ... | @@ -544,6 +547,11 @@ extern "C" |
| 544 | 547 | return lib3270_get_connection_state(hSession); |
| 545 | 548 | } |
| 546 | 549 | |
| 550 | + LIB3270_MESSAGE plugin::get_program_message(void) | |
| 551 | + { | |
| 552 | + return lib3270_get_program_message(hSession); | |
| 553 | + } | |
| 554 | + | |
| 547 | 555 | int plugin::disconnect(void) |
| 548 | 556 | { |
| 549 | 557 | lib3270_disconnect(hSession); | ... | ... |