Files
org-hyperion-cules/w32ctca.h
Fish (David B. Trout) 3b72c25a6c CTCI-W32 ==> CTCI-WIN
2014-07-08 14:11:00 -07:00

36 lines
1.6 KiB
C

/* W32CTCA.H (c) Copyright "Fish" (David B. Trout), 2002-2014 */
/* CTCI-WIN (Channel to Channel link to Win32 TCP/IP stack) */
/* */
/* Released under "The Q Public License Version 1" */
/* (http://www.hercules-390.org/herclic.html) as modifications to */
/* Hercules. */
#ifndef _W32CTCA_H_
#define _W32CTCA_H_
#if defined(OPTION_W32_CTCI)
#include "tt32api.h" // (#define TUNTAP32_DLLNAME)
#define MAX_TT32_DLLNAMELEN (512)
#define DEF_TT32_DLLNAME TUNTAP32_DLLNAME // (from tt32api.h)
extern char g_tt32_dllname [MAX_TT32_DLLNAMELEN];
extern void tt32_init ();
extern int tt32_open ( char* pszGatewayDevice, int iFlags );
extern int tt32_read ( int fd, u_char* buffer, u_long size );
extern int tt32_write ( int fd, u_char* buffer, u_long size );
extern int tt32_beg_write_multi ( int fd, u_long bufsiz );
extern int tt32_end_write_multi ( int fd );
extern int tt32_close ( int fd );
extern int tt32_ioctl ( int fd, int iRequest, char* argp );
extern const char* tt32_get_default_iface ();
extern int tt32_build_herc_iface_mac ( BYTE* out_mac, const BYTE* in_ip );
extern int display_tt32_stats ( int fd );
extern void enable_tt32_debug_tracing ( int enable );
#endif // defined(OPTION_W32_CTCI)
#endif // _W32CTCA_H_