home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / WIN_NT / LMAPI.ZIP / H / LMBROWSR.H < prev    next >
Encoding:
C/C++ Source or Header  |  1993-04-07  |  1.1 KB  |  57 lines

  1.  
  2. /*
  3.  
  4. Copyright (c) 1990-1993  Microsoft Corporation
  5.  
  6. Module Name:
  7.  
  8.     lmbrowsr.h
  9.  
  10. Abstract:
  11.  
  12.     This file contains information about browser stubbed versions of the
  13.     NetServer APIs.
  14.         Function Prototypes
  15.         Data Structures
  16.         Definition of special values
  17.  
  18. Notes:
  19.  
  20.     You must include NETCONS.H before this file, since this file depends
  21.     on values defined in NETCONS.H.
  22.  
  23. --*/
  24.  
  25. #ifndef _LMBROWSR_
  26. #define _LMBROWSR_
  27.  
  28.  
  29. //
  30. // Function Prototypes - SERVER
  31. //
  32.  
  33. NET_API_STATUS NET_API_FUNCTION
  34. I_BrowserServerEnum (
  35.     IN  LPTSTR      servername OPTIONAL,
  36.     IN  LPTSTR      transport OPTIONAL,
  37.     IN  DWORD       level,
  38.     OUT LPBYTE      *bufptr,
  39.     IN  DWORD       prefmaxlen,
  40.     OUT LPDWORD     entriesread,
  41.     OUT LPDWORD     totalentries,
  42.     IN  DWORD       servertype,
  43.     IN  LPTSTR      domain OPTIONAL,
  44.     IN OUT LPDWORD  resume_handle OPTIONAL
  45.     );
  46.  
  47.  
  48. NET_API_STATUS
  49. I_BrowserQueryOtherDomains (
  50.     IN  LPTSTR      servername OPTIONAL,
  51.     OUT LPBYTE      *bufptr,
  52.     OUT LPDWORD     entriesread,
  53.     OUT LPDWORD     totalentries
  54.     );
  55.  
  56. #endif // _LMBROWSR_
  57.