1 2cpp_quote("#pragma once") 3 4#ifndef DO_NO_IMPORTS 5import "objidl.idl"; 6import "oaidl.idl"; 7import "ocidl.idl"; 8#endif 9 10[object, 11 hidden, restricted, 12 uuid(8A674B48-1F63-11d3-B64C-00C04F79498E), 13 pointer_default(unique), 14 local 15] 16interface ICreatePropBagOnRegKey : IUnknown 17{ 18 HRESULT Create([in] HKEY hkey, [in] LPCOLESTR subkey, [in] DWORD ulOptions, [in] DWORD samDesired, REFIID iid, [out] LPVOID *ppBag); 19}; 20 21