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.

148 lines
2.6 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. GetSYSTEMTIMEPropertyFromCache(
  88. CPropertyCache * pPropertyCache,
  89. LPTSTR pszProperty,
  90. SYSTEMTIME * pstTime
  91. );
  92. HRESULT
  93. GetDATE70PropertyFromCache(
  94. CPropertyCache * pPropertyCache,
  95. LPTSTR pszProperty,
  96. LPDWORD pdwDWORD
  97. );
  98. HRESULT
  99. SetDATE70PropertyInCache(
  100. CPropertyCache *pPropertyCache,
  101. LPTSTR pszProperty,
  102. DWORD dwValue,
  103. BOOL fExplicit
  104. );
  105. HRESULT
  106. SetOctetPropertyInCache(
  107. CPropertyCache *pPropertyCache,
  108. LPTSTR pszProperty,
  109. BYTE *pByte,
  110. DWORD dwLength,
  111. BOOL fExplicit
  112. );
  113. HRESULT
  114. GetOctetPropertyFromCache(
  115. CPropertyCache * pPropertyCache,
  116. LPTSTR pszProperty,
  117. OctetString *pOctet);
  118. HRESULT
  119. SetOctetPropertyInCache(
  120. CPropertyCache *pPropertyCache,
  121. LPTSTR pszProperty,
  122. BYTE *pByte,
  123. DWORD dwLength,
  124. BOOL fExplicit
  125. );