From a991799ad7fd68235608aa8cb21c865f1d0d5e98 Mon Sep 17 00:00:00 2001 From: PerryWerneck Date: Sun, 29 Jan 2017 10:12:45 -0200 Subject: [PATCH] Incluindo funções que faltavam. --- src/native/network.cc | 8 ++++++++ 1 file changed, 8 insertions(+), 0 deletions(-) diff --git a/src/native/network.cc b/src/native/network.cc index 2902ed6..dcf37bd 100644 --- a/src/native/network.cc +++ b/src/native/network.cc @@ -48,3 +48,11 @@ int tn3270_is_ready(h3270::session *ses) { return (int) ses->is_ready(); } +int tn3270_wait_for_ready(h3270::session *ses, int seconds) { + return (int) ses->wait_for_ready(seconds); +} + +int tn3270_wait(h3270::session *ses, int seconds) { + return (int) ses->wait(seconds); +} + -- libgit2 0.21.2