home *** CD-ROM | disk | FTP | other *** search
/ Programming Tool Box / SIMS_2.iso / vb_code1 / ni_vb / nwnamesp.bas < prev    next >
BASIC Source File  |  1993-06-03  |  1KB  |  19 lines

  1. 'NWNAMESP.BAS  NetWare Name Space Services Interface for Visual Basic For Windows
  2. 'Version 1.0
  3. 'Novell Systems Research Department, Novell, Inc.
  4. 'Copyright (c) 1993, Novell, Inc.
  5. 'This interface is not supported through Novell's regular
  6. 'support channels.  See README.TXT for more information.
  7.  
  8. 'All Name Space functions apply to NetWare 3.x/4.x only
  9.  
  10. Global Const DOS_NAME_SPACE = 0
  11. Global Const MAC_NAME_SPACE = 1
  12.  
  13. Declare Function FillNameSpaceBuffer Lib "NWNETAPI.DLL" (ByVal serverConnID%, ByVal volumeNumber%, buffer As NWBUFFER) As Integer
  14. Declare Function GetDataStreamInfo Lib "NWNETAPI.DLL" (buffer As NWBUFFER, ByVal dataStreamType%, ByVal dataStreamName$, volSupports%) As Integer
  15. Declare Function GetNameSpaceEntry Lib "NWNETAPI.DLL" (ByVal serverConnID%, ByVal volumeNum%, sequence&, ByVal nsType%, entryInfo As Any) As Integer
  16. Declare Function GetNameSpaceInfo Lib "NWNETAPI.DLL" (buffer As NWBUFFER, ByVal nsType%, ByVal nameSpaceName$, osReady%, volSupports%) As Integer
  17. Declare Function GetNumNameSpaceAndDataStreams Lib "NWNETAPI.DLL" (buffer As NWBUFFER, numNameSpaces%, numDataStreams%) As Integer
  18.  
  19.