Source code of Windows XP (NT5)
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.

61 lines
1.2 KiB

  1. /*++
  2. Copyright (c) 1995 Microsoft Corporation
  3. Module Name:
  4. ntos\tdi\isn\fwd\registry.h
  5. Abstract:
  6. IPX Forwarder Driver registry interface
  7. Author:
  8. Vadim Eydelman
  9. Revision History:
  10. --*/
  11. #ifndef _IPXFWD_REGISTRY_
  12. #define _IPXFWD_REGISTRY_
  13. /*++
  14. *******************************************************************
  15. R e a d I p x D e v i c e N a m e
  16. Routine Description:
  17. Allocates buffer and reads device name exported by the IPX stack
  18. into it
  19. Arguments:
  20. FileName - pointer to variable to hold the name buffer
  21. Return Value:
  22. STATUS_SUCCESS - tables were created ok
  23. STATUS_INSUFFICIENT_RESOURCES - resource allocation failed
  24. STATUS_OBJECT_NAME_NOT_FOUND - if name value is not found
  25. *******************************************************************
  26. --*/
  27. NTSTATUS
  28. ReadIpxDeviceName (
  29. PWSTR *FileName
  30. );
  31. /*++
  32. *******************************************************************
  33. G e t R o u t e r P a r a m e t e r s
  34. Routine Description:
  35. Reads the parameters from the registry or sets the defaults
  36. Arguments:
  37. RegistryPath - where to read from.
  38. Return Value:
  39. STATUS_SUCCESS
  40. *******************************************************************
  41. --*/
  42. NTSTATUS
  43. GetForwarderParameters (
  44. IN PUNICODE_STRING RegistryPath
  45. );
  46. #endif