Index of /netwaresl/PGM_TOOL/MDXDOS23

      Name                    Last modified       Size  Description

[DIR] Parent Directory 23-Apr-2005 03:05 - [TXT] APPL.H 15-Jun-1995 08:16 1k [TXT] CLIENT.C 15-Jun-1995 11:08 5k [TXT] CLIENT.MAK 15-Jun-1995 10:08 2k [TXT] COPYRIGT.TXT 15-Jun-1995 18:27 1k [TXT] FATALERR.C 20-Dec-1994 13:12 1k [TXT] FILE_ID.DIZ 17-Jul-1987 03:12 1k [TXT] GATEWAY.C 15-Jun-1995 10:59 5k [TXT] GATEWAY.MAK 15-Jun-1995 10:59 2k [TXT] MDXDOS.LIB 15-Jun-1995 07:32 129k [   ] MDXDOS23.ZIP 15-Jun-1995 18:27 104k [TXT] MDXFS.C 15-Jun-1995 10:52 5k [TXT] MDXFS.MAK 15-Jun-1995 10:12 2k [TXT] MDXGET.C 15-Jun-1995 10:50 7k [TXT] MDXGET.MAK 15-Jun-1995 10:21 2k [TXT] MDXMAN.TXT 20-May-1995 15:58 66k [TXT] MDXPUT.C 15-Jun-1995 10:40 6k [TXT] MDXPUT.MAK 15-Jun-1995 10:24 2k [TXT] MULTIX.H 15-Jun-1995 11:04 17k [TXT] SERVER.C 15-Jun-1995 11:04 6k [TXT] SERVER.MAK 15-Jun-1995 10:07 2k

Dear Developer !  
  
MultiX is a development toolkit for network applications. It enables you to 
develop applications that communicate with each other using a variety of  
network protocols on a variety of platforms and operating systems. All  
network and communications details are handled completely by MultiX.  
  
The version supplied with this distribution includes the library for MS-DOS  
operating system.  
  
This version is distributed as a shareware version.  
  
You may use it within your company freely and you may distribute and copy it  
to any number of computers provided that no charge is paid for it. 
 
REGISTRATION: 
------------ 
 
As a registered developer you will receive the latest version available at 
the time of registration. You also receive the MultiX manual in 
Microsoft WORD 2.0 format. You will also receive technical support through 
our INTERNET E-mail address. Registration fee is calculated based on the 
number of developers using it on a site. 
 
The fee per developer is $35. 
 
Please send the registration fee to : 
 
	Mitug Distributed Systems Ltd. 
	5 Jabotinsky St, 
	Ranana 43363 
	Israel 
	------------------------------ 
 
 
DISTRIBUTION: 
------------ 
Registered developers only : 
 
-	You may develope or distribute any application that is using MultiX, 
	with no need to pay Royalty Fees. 
 
-	If you want to sell your application, you may do so freely and without 
	paying Royalty fees, provided that MultiX is not sold separetly, and not 
	supplied in it's .LIB or .OBJ format but only as part of the executible 
	file in the .EXE format. 
 
Others - Non commercial: 
------- 
 
-	You may develope or distribute any application that is using MultiX, 
	with no need to pay Royalty Fees, provided that no charge is paid for 
	the application you want distribute. 
 
Others - Commercial : 
------------------- 
Please contact us on our internet E-mail : mitug@netvision.net.il 
 
******************************************************************************* 
 
Please see the copyrigt.txt file for copyright information.  
  
******************************************************************************* 
  
Included on the distribution disk :  
  
	mdxman.txt	-	The MultiX Development Toolkit reference manual.  
	mdxdos.lib	-	The MultiX library for MS-DOS operating system.  
	multix.h	-	The MultiX include file. 
  
also included, some C source files that demonstrate the use of MultiX. 
  
  
  
Notes  
-----  
  
-	The library was compiled using Microsoft Visual C++ 1.5 and it may run  
	on machines having 286 and higher processors. All routines are compiled 
	using the LARGE model (compiled with /AL). "multix.h" does not specify  
	explicitly that the pointers are far pointers. This means that all  
	application modules that call MultiX must also be compiled with /AL.  
  
-	Every module that calls MultiX routines must include "multix.h" before  
	first use of any MultiX routine.  
  
  
-	Make sure that the first call to MultiX will be to "MultiXStart".  
  
  
-	The library version supplied supports the following protocols :  
	Async,Async with modem,Netbios,Ipx/Spx. 
  
	If you do not need one or more of these protocols  
	and you may want to save some memory you can disable the linker from  
	adding the object code to EXE file for the specific protocol by adding to  
	one of your modules the following lines :  
  
  
	to disable Async support add	:  
	---------------------------------  
	TMdxProtocol	MdxAsyncInit(void)  
	{  
		return(ProtocolNotSupported());  
	}  
	TMdxProtocol	MdxAsyncModemInit(void)  
	{  
		return(ProtocolNotSupported());  
	}  
  
  
	to disable NetBios support add :  
	--------------------------------  
  
	TMdxProtocol	MdxNetBiosInit(void)  
	{  
		return(ProtocolNotSupported());  
	}  
  
	to disable Ipx/Spx support add :  
	--------------------------------  
  
	TMdxProtocol	MdxSpxInit(void)  
	{  
		return(ProtocolNotSupported());  
	}  
  
  
support:  
--------  
  
	if you have any questions or problem you may send E-mail to :  
  
	INTERNET:	mitug@netvision.net.il  
  
  
Thank you for using MultiX.