Commit 2c571f818575e45b2ea421a666c6a4a059d42db7

Authored by Perry Werneck
1 parent dbf68604
Exists in master

Incluindo métodos na API .NET

src/native/screen.cc
@@ -44,6 +44,7 @@ int tn3270_get_string_at(h3270::session *ses, int row, int col, char* str, int s @@ -44,6 +44,7 @@ int tn3270_get_string_at(h3270::session *ses, int row, int col, char* str, int s
44 } 44 }
45 45
46 int tn3270_set_string_at(h3270::session *ses, int row, int col, const char* str) { 46 int tn3270_set_string_at(h3270::session *ses, int row, int col, const char* str) {
  47 + debug("%s(%d,%d,\"%s\")",__FUNCTION__,row,col,str);
47 ses->set_string_at(row,col,str); 48 ses->set_string_at(row,col,str);
48 return 0; 49 return 0;
49 } 50 }
src/pw3270-sharp/pw3270-sharp.cs
@@ -307,7 +307,7 @@ namespace pw3270 { @@ -307,7 +307,7 @@ namespace pw3270 {
307 /// <param name="col">Start col</param> 307 /// <param name="col">Start col</param>
308 /// <param name="str">Text to set</param> 308 /// <param name="str">Text to set</param>
309 /// 309 ///
310 - public void SetStringAg(int row, int col, string str) { 310 + public void SetStringAt(int row, int col, string str) {
311 tn3270_set_string_at(hSession, row, col, str); 311 tn3270_set_string_at(hSession, row, col, str);
312 } 312 }
313 313