From: Tarcísio Ladeia de Oliveirawyrquill@gmail.com
Used by IDragSourceHelper2::SetFlags(). There does not seem to be a named constant for 0x0, but it seems to be the default state.
Signed-off-by: Tarcísio Ladeia de Oliveira wyrquill@gmail.com --- include/shobjidl.idl | 5 +++++ 1 file changed, 5 insertions(+)
diff --git a/include/shobjidl.idl b/include/shobjidl.idl index 065e0c8c528..86923a691d1 100644 --- a/include/shobjidl.idl +++ b/include/shobjidl.idl @@ -1642,6 +1642,11 @@ interface IDragSourceHelper : IUnknown ] interface IDragSourceHelper2 : IDragSourceHelper { + typedef enum + { + DSH_ALLOWDROPDESCRIPTIONTEXT = 0x01 + } DSH_FLAGS; + HRESULT SetFlags([in] DWORD dwFlags); }