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.

133 lines
2.3 KiB

  1. HRESULT
  2. SetLPTSTRPropertyInCache(
  3. CPropertyCache *pPropertyCache,
  4. LPTSTR pszProperty,
  5. LPTSTR pszValue,
  6. BOOL fExplicit
  7. );
  8. HRESULT
  9. SetDWORDPropertyInCache(
  10. CPropertyCache *pPropertyCache,
  11. LPTSTR pszProperty,
  12. DWORD dwValue,
  13. BOOL fExplicit
  14. );
  15. HRESULT
  16. SetDATEPropertyInCache(
  17. CPropertyCache *pPropertyCache,
  18. LPTSTR pszProperty,
  19. DWORD dwValue,
  20. BOOL fExplicit
  21. );
  22. HRESULT
  23. SetBOOLPropertyInCache(
  24. CPropertyCache *pPropertyCache,
  25. LPTSTR pszProperty,
  26. BOOL fValue,
  27. BOOL fExplicit
  28. );
  29. HRESULT
  30. SetSYSTEMTIMEPropertyInCache(
  31. CPropertyCache *pPropertyCache,
  32. LPTSTR pszProperty,
  33. SYSTEMTIME stValue,
  34. BOOL fExplicit
  35. );
  36. HRESULT
  37. SetDelimitedStringPropertyInCache(
  38. CPropertyCache *pPropertyCache,
  39. LPTSTR pszProperty,
  40. LPTSTR pszDelimitedString,
  41. BOOL fExplicit
  42. );
  43. HRESULT
  44. SetNulledStringPropertyInCache(
  45. CPropertyCache *pPropertyCache,
  46. LPTSTR pszProperty,
  47. LPTSTR pszNulledString,
  48. BOOL fExplicit
  49. );
  50. HRESULT
  51. GetNulledStringPropertyFromCache(
  52. CPropertyCache * pPropertyCache,
  53. LPTSTR pszProperty,
  54. LPTSTR * ppszValue
  55. );
  56. HRESULT
  57. GetDelimitedStringPropertyFromCache(
  58. CPropertyCache * pPropertyCache,
  59. LPTSTR pszProperty,
  60. LPTSTR * ppszValue
  61. );
  62. HRESULT
  63. GetLPTSTRPropertyFromCache(
  64. CPropertyCache * pPropertyCache,
  65. LPTSTR pszProperty,
  66. LPTSTR * ppszValue
  67. );
  68. HRESULT
  69. GetBOOLPropertyFromCache(
  70. CPropertyCache * pPropertyCache,
  71. LPTSTR pszProperty,
  72. PBOOL pBool
  73. );
  74. HRESULT
  75. GetDWORDPropertyFromCache(
  76. CPropertyCache * pPropertyCache,
  77. LPTSTR pszProperty,
  78. LPDWORD pdwDWORD
  79. );
  80. HRESULT
  81. GetDATEPropertyFromCache(
  82. CPropertyCache * pPropertyCache,
  83. LPTSTR pszProperty,
  84. PDWORD pdwDate
  85. );
  86. HRESULT
  87. GetNw312DATEPropertyFromCache(
  88. CPropertyCache * pPropertyCache,
  89. LPTSTR pszProperty,
  90. BYTE byDateTime[]
  91. );
  92. HRESULT
  93. SetNw312DATEPropertyInCache(
  94. CPropertyCache *pPropertyCache,
  95. LPTSTR pszProperty,
  96. BYTE byDateTime[],
  97. BOOL fExplicit
  98. );
  99. HRESULT
  100. SetOctetPropertyInCache(
  101. CPropertyCache *pPropertyCache,
  102. LPTSTR pszProperty,
  103. BYTE *pByte,
  104. DWORD dwLength,
  105. BOOL fExplicit
  106. );
  107. HRESULT
  108. GetOctetPropertyFromCache(
  109. CPropertyCache * pPropertyCache,
  110. LPTSTR pszProperty,
  111. OctetString *pOctet);