regbag.idl 660 B

123456789101112131415161718192021
  1. /**
  2. * This file is part of the mingw-w64 runtime package.
  3. * No warranty is given; refer to the file DISCLAIMER within this package.
  4. */
  5. #ifndef DO_NO_IMPORTS
  6. import "objidl.idl";
  7. import "oaidl.idl";
  8. import "ocidl.idl";
  9. #endif
  10. cpp_quote("#include <winapifamily.h>")
  11. cpp_quote("")
  12. cpp_quote("#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)")
  13. [object, local, hidden, restricted, uuid (8a674b48-1f63-11d3-B64C-00c04f79498e), pointer_default (unique)]
  14. interface ICreatePropBagOnRegKey : IUnknown {
  15. HRESULT Create ([in] HKEY hkey,[in] LPCOLESTR subkey,[in] DWORD ulOptions,[in] DWORD samDesired, REFIID iid,[out] LPVOID *ppBag);
  16. };
  17. cpp_quote("#endif")