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.

28 lines
606 B

  1. //
  2. // Author: AdamEd
  3. // Date: October 1998
  4. //
  5. // Class Store path query / persistence
  6. //
  7. //
  8. //---------------------------------------------------------------------
  9. //
  10. #if !defined(_CSPATH_HXX_)
  11. #define _CSPATH_HXX_
  12. #define APPMGMT_INI_FILENAME L"\\AppMgmt.ini"
  13. #define APPMGMT_INI_CSTORE_SECTIONNAME L"ClassStore"
  14. #define APPMGMT_INI_CSPATH_KEYNAME L"ClassStorePath"
  15. #define DEFAULT_CSPATH_LENGTH 1025
  16. HRESULT GetAppmgmtIniFilePath(
  17. PSID pSid,
  18. LPWSTR* ppwszPath);
  19. HRESULT ReadClassStorePath(PSID pSid, LPWSTR* pwszClassStorePath);
  20. #endif // !defined(_CSPATH_HXX_)