Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
1.3 KiB

  1. /*++
  2. Copyright (c) 1992-1996 Microsoft Corporation
  3. Module Name:
  4. srvr_tbl.h
  5. Abstract:
  6. Define all of the structures and routines used in the server table.
  7. Environment:
  8. User Mode - Win32
  9. Revision History:
  10. 10-May-1996 DonRyan
  11. Removed banner from Technology Dynamics, Inc.
  12. --*/
  13. #ifndef srvr_tbl_h
  14. #define srvr_tbl_h
  15. //--------------------------- PUBLIC CONSTANTS ------------------------------
  16. #include <snmp.h>
  17. #define SRVR_NAME_FIELD 1
  18. //--------------------------- PUBLIC STRUCTS --------------------------------
  19. // Entries in the domain server table
  20. typedef struct dom_server_entry
  21. {
  22. AsnObjectIdentifier Oid;
  23. AsnDisplayString domServerName; // Index
  24. } DOM_SERVER_ENTRY;
  25. // Domain server table definition
  26. typedef struct
  27. {
  28. UINT Len;
  29. DOM_SERVER_ENTRY *Table;
  30. } DOM_SERVER_TABLE;
  31. //--------------------------- PUBLIC VARIABLES --(same as in module.c file)--
  32. extern DOM_SERVER_TABLE MIB_DomServerTable;
  33. //--------------------------- PUBLIC PROTOTYPES -----------------------------
  34. SNMPAPI MIB_svsond_lmget(
  35. void
  36. );
  37. //------------------------------- END ---------------------------------------
  38. #endif /* srvr_tbl_h */