Web Development
chat.asc
Associated article: A Netware Chat Utility
Tags: Web Development .NET
_A NETWARE CHAT UTILITY_
by Eduardo M. Serrat
Unit IpxUnit;
Interface
uses dos;
const
IPX_PACKET_TYPE = 4;
type
NetWrkAdr = record
NetworkNumber : array [1..4] of byte;
NodeAddress : array [1..6] of byte;
end;
IpxHeader = record
CheckSum : word;
Len : word;
TransportControl : byte;
PacketType : byte;
Destination : ...


