mirror of
https://github.com/reactos/reactos.git
synced 2025-04-17 19:27:00 +00:00

- Create a branch to do a proper merge of USB work from a trunk base instead of from cmake-bringup - In the future, DO NOT under any circumstances branch another branch. This leads to merge problems! svn path=/branches/usb-bringup-trunk/; revision=55018
20 lines
428 B
Text
20 lines
428 B
Text
|
|
cpp_quote("#pragma once")
|
|
|
|
#ifndef DO_NO_IMPORTS
|
|
import "objidl.idl";
|
|
import "oaidl.idl";
|
|
import "ocidl.idl";
|
|
#endif
|
|
|
|
[object,
|
|
hidden, restricted,
|
|
uuid(8A674B48-1F63-11d3-B64C-00C04F79498E),
|
|
pointer_default(unique),
|
|
local
|
|
]
|
|
interface ICreatePropBagOnRegKey : IUnknown
|
|
{
|
|
HRESULT Create([in] HKEY hkey, [in] LPCOLESTR subkey, [in] DWORD ulOptions, [in] DWORD samDesired, REFIID iid, [out] LPVOID *ppBag);
|
|
};
|
|
|