winresult 0.1.3

windows result codes
Documentation
// WARNING: this file is auto-generated by xtask gen and may be overwritten

use super::*;


/// Trying to revoke a drop target that has not been registered
pub const E_NOTREGISTERED : HResultError = HResultError::from_constant(0x80040100); // DRAGDROP_E_NOTREGISTERED

/// This window has already been registered as a drop target
pub const E_ALREADYREGISTERED : HResultError = HResultError::from_constant(0x80040101); // DRAGDROP_E_ALREADYREGISTERED

/// Invalid window handle
pub const E_INVALIDHWND : HResultError = HResultError::from_constant(0x80040102); // DRAGDROP_E_INVALIDHWND

/// A drag operation is already in progress
pub const E_CONCURRENT_DRAG_ATTEMPTED : HResultError = HResultError::from_constant(0x80040103); // DRAGDROP_E_CONCURRENT_DRAG_ATTEMPTED

/// Successful drop took place
pub const S_DROP : HResultSuccess = HResultSuccess::from_constant(0x00040100); // DRAGDROP_S_DROP

/// Drag-drop operation canceled
pub const S_CANCEL : HResultSuccess = HResultSuccess::from_constant(0x00040101); // DRAGDROP_S_CANCEL

/// Use the default cursor
pub const S_USEDEFAULTCURSORS : HResultSuccess = HResultSuccess::from_constant(0x00040102); // DRAGDROP_S_USEDEFAULTCURSORS