Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ input("Press enter to exit")
3. Download and unpack libipc3270 pre-compiled image

```shell
wget https://github.com/PerryWerneck/libipc3270/releases/download/5.5/msvc-libipc3270.zip
wget https://github.com/PerryWerneck/libipc3270/releases/download/5.5/msvc-libipc3270-x86_64.zip
7z x msvc-libipc3270.zip -y -oipc3270
```

Expand Down
4 changes: 0 additions & 4 deletions py3270.cbp
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,6 @@
<Add option="`pkg-config --libs python dbus-1`" />
<Add library="pw3270cpp" />
</Linker>
<Unit filename="src/action/init.cc" />
<Unit filename="src/action/methods.cc" />
<Unit filename="src/action/new.cc" />
<Unit filename="src/action/tools.cc" />
<Unit filename="src/include/config.h" />
<Unit filename="src/include/config.h.in" />
<Unit filename="src/include/py3270.h" />
Expand Down
5 changes: 0 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,10 @@
src_files = [
'src/module/init.c',
'src/module/types.c',
'src/session/type.c',
'src/action/methods.cc',
'src/action/new.cc',
'src/action/tools.cc',
'src/module/properties.cc',
'src/session/actions.cc',
'src/session/attributes.cc',
'src/session/get.cc',
'src/session/init.cc',
'src/session/misc.cc',
'src/session/network.cc',
'src/session/set.cc',
Expand Down
48 changes: 0 additions & 48 deletions src/action/init.cc

This file was deleted.

49 changes: 0 additions & 49 deletions src/action/methods.cc

This file was deleted.

86 changes: 0 additions & 86 deletions src/action/new.cc

This file was deleted.

63 changes: 0 additions & 63 deletions src/action/tools.cc

This file was deleted.

2 changes: 1 addition & 1 deletion src/include/pysession.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
DLL_PRIVATE int py3270_session_set_attribute(PyObject *self, PyObject *value, const LIB3270_PROPERTY *property);

DLL_PRIVATE PyObject * py3270_session_get_action(PyObject *self, const LIB3270_ACTION *action);
// DLL_PRIVATE int py3270_session_set_action(PyObject *self, PyObject *value, const LIB3270_ACTION *action);
DLL_PRIVATE PyObject * py3270_session_action_factory(PyObject *self, PyObject *args);

DLL_PRIVATE PyObject * py3270_session_get_timeout(PyObject *self, void *dunno);
DLL_PRIVATE int py3270_session_set_timeout(PyObject *self, PyObject *value, void *dunno);
Expand Down
1 change: 1 addition & 0 deletions src/module/tools.cc
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
const char * py3270_check_requires() {

#ifdef _WIN32

if(TN3270::getInstallLocation().empty()) {
return "Can't determine location of pw3270 runtime, is it installed?";
}
Expand Down
Loading
Loading