mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 11:31:40 +00:00
[SHLWAPI][SDK][SHELL32_APITEST][SHLWAPI_WINETEST] Property Bag on Desktop Upgrade (#5590)
- Add CDesktopUpgradePropertyBag class. - Implement SHGetDesktopUpgradePropertyBag function. CORE-9283
This commit is contained in:
parent
e7cb6f4920
commit
a2d8e464c8
5 changed files with 221 additions and 3 deletions
|
@ -217,6 +217,25 @@ SHSetIniStringUTF7W(
|
|||
_In_opt_z_ LPCWSTR lpString,
|
||||
_In_z_ LPCWSTR lpFileName);
|
||||
|
||||
enum _shellkey_flags
|
||||
{
|
||||
SHKEY_Root_HKCU = 0x1,
|
||||
SHKEY_Root_HKLM = 0x2,
|
||||
SHKEY_Key_Explorer = 0x00,
|
||||
SHKEY_Key_Shell = 0x10,
|
||||
SHKEY_Key_ShellNoRoam = 0x20,
|
||||
SHKEY_Key_Classes = 0x30,
|
||||
SHKEY_Subkey_Default = 0x0000,
|
||||
SHKEY_Subkey_ResourceName = 0x1000,
|
||||
SHKEY_Subkey_Handlers = 0x2000,
|
||||
SHKEY_Subkey_Associations = 0x3000,
|
||||
SHKEY_Subkey_Volatile = 0x4000,
|
||||
SHKEY_Subkey_MUICache = 0x5000,
|
||||
SHKEY_Subkey_FileExts = 0x6000
|
||||
};
|
||||
|
||||
HKEY WINAPI SHGetShellKey(DWORD flags, LPCWSTR sub_key, BOOL create);
|
||||
|
||||
int
|
||||
WINAPIV
|
||||
ShellMessageBoxWrapW(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue