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.

40 lines
685 B

  1. #include "netpch.h"
  2. #pragma hdrstop
  3. #include "netcon.h"
  4. static
  5. HRESULT
  6. WINAPI
  7. HrGetPnpDeviceStatus(
  8. const GUID* pguid,
  9. NETCON_STATUS *pStatus
  10. )
  11. {
  12. return E_FAIL;
  13. }
  14. static
  15. HRESULT
  16. WINAPI
  17. HrLanConnectionNameFromGuidOrPath(
  18. const GUID *pguid,
  19. LPCWSTR pszwPath,
  20. LPWSTR pszwName,
  21. LPDWORD pcchMax
  22. )
  23. {
  24. return E_FAIL;
  25. }
  26. //
  27. // !! WARNING !! The entries below must be in alphabetical order
  28. // and are CASE SENSITIVE (i.e., lower case comes last!)
  29. //
  30. DEFINE_PROCNAME_ENTRIES(netman)
  31. {
  32. DLPENTRY(HrGetPnpDeviceStatus)
  33. DLPENTRY(HrLanConnectionNameFromGuidOrPath)
  34. };
  35. DEFINE_PROCNAME_MAP(netman)