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.
11 lines
485 B
11 lines
485 B
// assoc.h
|
|
HRESULT AssocCreateW2k(REFIID riid, LPVOID *ppvOut);
|
|
HRESULT AssocCreateElement(REFCLSID clsid, REFIID riid, void **ppv);
|
|
|
|
BOOL _PathAppend(PCWSTR pszBase, PCWSTR pszAppend, PWSTR pszOut, DWORD cchOut);
|
|
BOOL _PathIsFile(PCWSTR pszPath);
|
|
void _MakeAppPathKey(PCWSTR pszApp, PWSTR pszKey, DWORD cchKey);
|
|
void _MakeApplicationsKey(LPCWSTR pszApp, LPWSTR pszKey, DWORD cchKey);
|
|
|
|
HRESULT _AssocOpenRegKey(HKEY hk, PCWSTR pszSub, HKEY *phkOut, BOOL fCreate = FALSE);
|
|
|