Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow 3705 devices with statically linked Hercules #103

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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 comm3705.c
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ BYTE print_chars[17];
#endif


#if 1
#if 0
struct sockaddr_in * get_inet_socket(char *host_serv)
{
char *host = NULL;
Expand Down
1 change: 1 addition & 0 deletions devtype.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ struct DEVHND {
extern DEVHND constty_device_hndinfo;
extern DEVHND loc3270_device_hndinfo;
extern DEVHND comadpt_device_hndinfo;
extern DEVHND com3705_device_hndinfo;
extern DEVHND tcpnje_device_hndinfo;
extern DEVHND cardrdr_device_hndinfo;
extern DEVHND cardpch_device_hndinfo;
Expand Down
1 change: 1 addition & 0 deletions hdlmain.c
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,7 @@ HDL_DEVICE_SECTION;

/* Communication line devices */
HDL_DEVICE(2703, comadpt_device_hndinfo );
HDL_DEVICE(3705, com3705_device_hndinfo );
HDL_DEVICE(TCPNJE, tcpnje_device_hndinfo );

/* Card readers */
Expand Down