Commit d532f3e0a5a0b7078bd00fd9175c0c7fa9ed3749

Authored by perry.werneck@gmail.com
1 parent bb3d4e4d

Ajustando diálogo de transferência de arquivos

Showing 1 changed file with 6 additions and 0 deletions   Show diff stats
options.c
... ... @@ -118,3 +118,9 @@ LIB3270_EXPORT const LIB3270_OPTION_ENTRY * lib3270_get_option_list(void)
118 118 {
119 119 return options;
120 120 }
  121 +
  122 +LIB3270_EXPORT int lib3270_is_tso(H3270 *hSession)
  123 +{
  124 + CHECK_SESSION_HANDLE(hSession);
  125 + return (hSession->options & LIB3270_OPTION_TSO) != 0;
  126 +}
... ...