Commit 0b064473d5cd77b4df350a73abd3653720f3fef3
Exists in
master
Merge branch 'master' of http://softwarepublico.gov.br/gitlab/pw3270/pw3270-sharp
Showing
2 changed files
with
9 additions
and
0 deletions
Show diff stats
rpm/pw3270-sharp.spec
src/native/network.cc
... | ... | @@ -48,3 +48,11 @@ int tn3270_is_ready(h3270::session *ses) { |
48 | 48 | return (int) ses->is_ready(); |
49 | 49 | } |
50 | 50 | |
51 | +int tn3270_wait_for_ready(h3270::session *ses, int seconds) { | |
52 | + return (int) ses->wait_for_ready(seconds); | |
53 | +} | |
54 | + | |
55 | +int tn3270_wait(h3270::session *ses, int seconds) { | |
56 | + return (int) ses->wait(seconds); | |
57 | +} | |
58 | + | ... | ... |