home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_02_02 / 2n02048b < prev    next >
Text File  |  1990-12-30  |  732b  |  31 lines

  1.  
  2. #include        <dos.h>
  3. #include        "netbios.h"
  4.  
  5. /**************************************************
  6. * shutdown_netbios - Clear name table entry
  7. * Parameters: name (in) - application name used 
  8. *                         during init_netbios()
  9. * Returns: 0 for success, else
  10. *          return codes defined for NCB_DELETE_NAME 
  11. * History: Original code by William H. Roetzheim
  12. ***************************************************/
  13.  
  14. unsigned int  shutdown_netbios(char *name)
  15. {
  16.   int  i;
  17.   struct net_control_block    ncb;
  18.  
  19.   init_ncb(&ncb);
  20.   for (i = 0; i < 15; i++)
  21.   {
  22.       if (name[i] == 0) break;
  23.       ncb.l_name[i] = name[i++];
  24.   }
  25.   ncb.command = NCB_DELETE_NAME;
  26.   return ncb.retcode;
  27. }
  28.  
  29.  
  30.  
  31.