Nikolay Sivov : include: Added IQueryCancelAutoPlay definition.
Module: wine Branch: master Commit: 6fa197f5374cc9c61d52f5b6d0fb67348659327c URL: http://source.winehq.org/git/wine.git/?a=commit;h=6fa197f5374cc9c61d52f5b6d0... Author: Nikolay Sivov <nsivov(a)codeweavers.com> Date: Tue Dec 31 13:12:48 2013 +0400 include: Added IQueryCancelAutoPlay definition. --- include/shobjidl.idl | 21 +++++++++++++++++++++ 1 files changed, 21 insertions(+), 0 deletions(-) diff --git a/include/shobjidl.idl b/include/shobjidl.idl index e129371..8fe87b7 100644 --- a/include/shobjidl.idl +++ b/include/shobjidl.idl @@ -3308,6 +3308,19 @@ interface ICustomDestinationList : IUnknown HRESULT AbortList(); } +[ + uuid(ddefe873-6997-4e68-be26-39b633adbe12), + object, + pointer_default(unique) +] +interface IQueryCancelAutoPlay : IUnknown +{ + HRESULT AllowAutoPlay([in, string] LPCWSTR path, + [in] DWORD content_type, + [in, string] LPCWSTR label, + [in] DWORD serial_number); +} + /***************************************************************************** * ShellObjects typelibrary */ @@ -3396,4 +3409,12 @@ library ShellObjects { interface IEnumObjects; } + + [ + uuid(331f1768-05a9-4ddd-b86e-dae34ddc998a) + ] + coclass QueryCancelAutoPlay + { + interface IQueryCancelAutoPlay; + } }
participants (1)
-
Alexandre Julliard