mirror of https://github.com/tongzx/nt5src
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
28 lines
606 B
//
|
|
// Author: AdamEd
|
|
// Date: October 1998
|
|
//
|
|
// Class Store path query / persistence
|
|
//
|
|
//
|
|
//---------------------------------------------------------------------
|
|
//
|
|
|
|
|
|
#if !defined(_CSPATH_HXX_)
|
|
#define _CSPATH_HXX_
|
|
|
|
#define APPMGMT_INI_FILENAME L"\\AppMgmt.ini"
|
|
#define APPMGMT_INI_CSTORE_SECTIONNAME L"ClassStore"
|
|
#define APPMGMT_INI_CSPATH_KEYNAME L"ClassStorePath"
|
|
|
|
#define DEFAULT_CSPATH_LENGTH 1025
|
|
|
|
|
|
HRESULT GetAppmgmtIniFilePath(
|
|
PSID pSid,
|
|
LPWSTR* ppwszPath);
|
|
|
|
HRESULT ReadClassStorePath(PSID pSid, LPWSTR* pwszClassStorePath);
|
|
|
|
#endif // !defined(_CSPATH_HXX_)
|