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.

90 lines
1.9 KiB

  1. DWORD
  2. RegBackPropIncChangesForISAKMPToPolicy(
  3. HKEY hRegistryKey,
  4. LPWSTR pszIpsecRootContainer,
  5. LPWSTR pszLocationName,
  6. PIPSEC_ISAKMP_OBJECT pIpsecISAKMPObject
  7. );
  8. DWORD
  9. RegBackPropIncChangesForFilterToNFA(
  10. HKEY hRegistryKey,
  11. LPWSTR pszIpsecRootContainer,
  12. LPWSTR pszLocationName,
  13. PIPSEC_FILTER_OBJECT pIpsecFilterObject
  14. );
  15. DWORD
  16. RegBackPropIncChangesForNegPolToNFA(
  17. HKEY hRegistryKey,
  18. LPWSTR pszIpsecRootContainer,
  19. LPWSTR pszLocationName,
  20. PIPSEC_NEGPOL_OBJECT pIpsecNegPolObject
  21. );
  22. DWORD
  23. RegBackPropIncChangesForNFAToPolicy(
  24. HKEY hRegistryKey,
  25. LPWSTR pszIpsecRootContainer,
  26. LPWSTR pszLocationName,
  27. LPWSTR pszNFADistinguishedName
  28. );
  29. DWORD
  30. RegGetPolicyReferencesForISAKMP(
  31. HKEY hRegistryKey,
  32. LPWSTR pszIpsecRootContainer,
  33. LPWSTR pszISAKMPDistinguishedName,
  34. LPWSTR ** pppszIpsecPolicyReferences,
  35. PDWORD pdwNumReferences
  36. );
  37. DWORD
  38. RegUpdatePolicy(
  39. HKEY hRegistryKey,
  40. LPWSTR pszIpsecRootContainer,
  41. LPWSTR pszIpsecPolicyReference
  42. );
  43. DWORD
  44. RegGetGuidFromPolicyReference(
  45. LPWSTR pszIpsecPolicyReference,
  46. GUID * pPolicyIdentifier
  47. );
  48. DWORD
  49. RegGetPolicyReferencesForNFA(
  50. HKEY hRegistryKey,
  51. LPWSTR pszIpsecRootContainer,
  52. LPWSTR pszNFADistinguishedName,
  53. LPWSTR ** pppszIpsecPolicyReferences,
  54. PDWORD pdwNumReferences
  55. );
  56. DWORD
  57. RegGetNFAReferencesForFilter(
  58. HKEY hRegistryKey,
  59. LPWSTR pszIpsecRootContainer,
  60. LPWSTR pszFilterDistinguishedName,
  61. LPWSTR ** pppszIpsecNFAReferences,
  62. PDWORD pdwNumReferences
  63. );
  64. DWORD
  65. RegUpdateNFA(
  66. HKEY hRegistryKey,
  67. LPWSTR pszIpsecRootContainer,
  68. LPWSTR pszIpsecNFAReference
  69. );
  70. DWORD
  71. RegGetNFAReferencesForNegPol(
  72. HKEY hRegistryKey,
  73. LPWSTR pszIpsecRootContainer,
  74. LPWSTR pszNegPolDistinguishedName,
  75. LPWSTR ** pppszIpsecNFAReferences,
  76. PDWORD pdwNumReferences
  77. );