home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PASCAL / NETBIO.ZIP / NBRESET.PAS next >
Encoding:
Pascal/Delphi Source File  |  1990-05-03  |  408 b   |  20 lines

  1. {
  2.   Simple program to reset the NetBIOS adapter (clears out the NetBIOS name
  3.   table).
  4.  
  5.   Please address questions or comments regarding this utility on Compuserve in
  6.   the PCVENB forum in section 6.
  7.  
  8.   by Richard S. Sadowsky
  9.   5/3/90
  10. }
  11. program NBReset;
  12. uses NetBIOS;
  13.  
  14. begin
  15.   if ResetAdapter(0,0) = 0 then
  16.     WriteLn('Adapter reset')
  17.   else
  18.     WriteLn('Error resetting adapter');
  19. end.
  20.