home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / n / netbioc.zip / DATASRV.H < prev    next >
C/C++ Source or Header  |  1992-03-01  |  996b  |  32 lines

  1. /***************************************************************************
  2.  *  DATASRV.H                                   *
  3.  *    This file contains following NetBIOS Name Service related function *
  4.  *    prototypes:                               *
  5.  *      SendDatagram     () :- Sends datagram to a specific name       *
  6.  *      ReceiveDatagram() :- Receives datagram name sent to specific       *
  7.  *                   name.                       *
  8.  *                                       *
  9.  *  History:    Alok Sinha  October, 1991    Created               *
  10.  *                                       *
  11.  **************************************************************************/
  12.  
  13. #ifndef DATASRV_INCLUDED
  14. #define DATASRV_INCLUDED
  15.  
  16.  
  17. unsigned char    SendDatagram( char *pchName ,
  18.                   unsigned char ucLana,
  19.                   unsigned char ucNameNum,
  20.                   char far * pchData,
  21.                   unsigned short usDataLen
  22.                );
  23.  
  24. unsigned char    ReceiveDatagram(
  25.                   unsigned char ucLana,
  26.                   unsigned char ucNameNum,
  27.                   char far * pchData,
  28.                   unsigned short* pusDataLen
  29.                );
  30.  
  31. #endif /* DATASRV_INCLUDED */
  32.