Commit 0ce9ec40657f9ebe6af7fd05dd12bd9a026f0a44

Authored by Perry Werneck
1 parent 7faa8d68
Exists in master and in 1 other branch develop

Atualizando API.

Showing 1 changed file with 20 additions and 0 deletions   Show diff stats
client/src/include/lib3270/ipc.h
... ... @@ -598,10 +598,30 @@
598 598 return session->getLUName();
599 599 }
600 600  
  601 + inline std::string getHostURL() const {
  602 + return session->getHostURL();
  603 + }
  604 +
601 605 inline LIB3270_KEYBOARD_LOCK_STATE getKeyboardLockState() const {
602 606 return session->getKeyboardLockState();
603 607 }
604 608  
  609 + inline SSLState getSSLState() const {
  610 + return session->getSSLState();
  611 + }
  612 +
  613 + inline unsigned short getScreenWidth() const {
  614 + return session->getScreenWidth();
  615 + }
  616 +
  617 + inline unsigned short getScreenHeight() const {
  618 + return session->getScreenHeight();
  619 + }
  620 +
  621 + inline unsigned short getScreenLength() const {
  622 + return session->getScreenLength();
  623 + }
  624 +
605 625 // Set properties
606 626 inline void setUnlockDelay(unsigned short delay = 350) {
607 627 session->setUnlockDelay(delay);
... ...