Commit a991799ad7fd68235608aa8cb21c865f1d0d5e98
1 parent
e7aa3643
Exists in
master
Incluindo funções que faltavam.
Showing
1 changed file
with
8 additions
and
0 deletions
Show diff stats
src/native/network.cc
@@ -48,3 +48,11 @@ int tn3270_is_ready(h3270::session *ses) { | @@ -48,3 +48,11 @@ int tn3270_is_ready(h3270::session *ses) { | ||
48 | return (int) ses->is_ready(); | 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 | + |