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

  1. /***************************************************************************
  2.  *  NAMESRV.H                                   *
  3.  *    This file contains following NetBIOS Name Service related function *
  4.  *    prototypes:
  5.  *                                       *
  6.  *      AddName  () - Adds a unique name or group name in the Name Table *
  7.  *      DelName  () - Deletes a name from the Name Table           *
  8.  *      FindName () - Find a name on the networks               *
  9.  *                                       *
  10.  *  History:    Alok Sinha  October, 1991    Created               *
  11.  *                                       *
  12.  ***********************************************************************/
  13.  
  14. #ifndef NAMESRV_INCLUDED
  15. #define NAMESRV_INCLUDED
  16.  
  17. unsigned char    AddName ( char *pchName ,
  18.               unsigned char ucFlag,
  19.               unsigned char ucLana,
  20.               unsigned char *pucNameNum
  21.             );
  22.  
  23. unsigned char    DelName ( char *pchName ,
  24.               unsigned char ucLana,
  25.               unsigned char ucNameNum
  26.             );
  27. BOOL FindName        ( char *pchName,
  28.               unsigned char ucLana
  29.             );
  30.  
  31.  
  32. /*
  33.  * AddName Attribute Values
  34.  */
  35. #define   ADD_UNIQUE_NAME   1
  36. #define   ADD_GROUP_NAME    2
  37.  
  38. #endif /* NAMESRV_INCLUDED */
  39.