Struct IDirectDrawSurface
pub struct IDirectDrawSurface(/* private fields */);
Implementations§
§impl IDirectDrawSurface
impl IDirectDrawSurface
pub unsafe fn AddAttachedSurface<P0>(&self, param0: P0) -> Result<()>where
P0: Param<IDirectDrawSurface>,
pub unsafe fn AddOverlayDirtyRect(&self, param0: *mut RECT) -> Result<()>
pub unsafe fn Blt<P1>(
&self,
param0: *mut RECT,
param1: P1,
param2: *mut RECT,
param3: u32,
param4: *mut DDBLTFX,
) -> Result<()>where
P1: Param<IDirectDrawSurface>,
pub unsafe fn BltBatch( &self, param0: *mut DDBLTBATCH, param1: u32, param2: u32, ) -> Result<()>
pub unsafe fn BltFast<P2>(
&self,
param0: u32,
param1: u32,
param2: P2,
param3: *mut RECT,
param4: u32,
) -> Result<()>where
P2: Param<IDirectDrawSurface>,
pub unsafe fn DeleteAttachedSurface<P1>(
&self,
param0: u32,
param1: P1,
) -> Result<()>where
P1: Param<IDirectDrawSurface>,
pub unsafe fn EnumAttachedSurfaces( &self, param0: *mut c_void, param1: LPDDENUMSURFACESCALLBACK, ) -> Result<()>
pub unsafe fn EnumOverlayZOrders( &self, param0: u32, param1: *mut c_void, param2: LPDDENUMSURFACESCALLBACK, ) -> Result<()>
pub unsafe fn Flip<P0>(&self, param0: P0, param1: u32) -> Result<()>where
P0: Param<IDirectDrawSurface>,
pub unsafe fn GetAttachedSurface( &self, param0: *mut DDSCAPS, param1: *mut Option<IDirectDrawSurface>, ) -> Result<()>
pub unsafe fn GetBltStatus(&self, param0: u32) -> Result<()>
pub unsafe fn GetCaps(&self, param0: *mut DDSCAPS) -> Result<()>
pub unsafe fn GetClipper(&self) -> Result<IDirectDrawClipper>
pub unsafe fn GetColorKey( &self, param0: u32, param1: *mut DDCOLORKEY, ) -> Result<()>
pub unsafe fn GetDC(&self, param0: *mut HDC) -> Result<()>
pub unsafe fn GetFlipStatus(&self, param0: u32) -> Result<()>
pub unsafe fn GetOverlayPosition( &self, param0: *mut i32, param1: *mut i32, ) -> Result<()>
pub unsafe fn GetPalette(&self) -> Result<IDirectDrawPalette>
pub unsafe fn GetPixelFormat(&self, param0: *mut DDPIXELFORMAT) -> Result<()>
pub unsafe fn GetSurfaceDesc(&self, param0: *mut DDSURFACEDESC) -> Result<()>
pub unsafe fn Initialize<P0>(
&self,
param0: P0,
param1: *mut DDSURFACEDESC,
) -> Result<()>where
P0: Param<IDirectDraw>,
pub unsafe fn IsLost(&self) -> Result<()>
pub unsafe fn Lock( &self, param0: *mut RECT, param1: *mut DDSURFACEDESC, param2: u32, param3: HANDLE, ) -> Result<()>
pub unsafe fn ReleaseDC(&self, param0: HDC) -> Result<()>
pub unsafe fn Restore(&self) -> Result<()>
pub unsafe fn SetClipper<P0>(&self, param0: P0) -> Result<()>where
P0: Param<IDirectDrawClipper>,
pub unsafe fn SetColorKey( &self, param0: u32, param1: *mut DDCOLORKEY, ) -> Result<()>
pub unsafe fn SetOverlayPosition(&self, param0: i32, param1: i32) -> Result<()>
pub unsafe fn SetPalette<P0>(&self, param0: P0) -> Result<()>where
P0: Param<IDirectDrawPalette>,
pub unsafe fn Unlock(&self, param0: *mut c_void) -> Result<()>
pub unsafe fn UpdateOverlay<P1>(
&self,
param0: *mut RECT,
param1: P1,
param2: *mut RECT,
param3: u32,
param4: *mut DDOVERLAYFX,
) -> Result<()>where
P1: Param<IDirectDrawSurface>,
pub unsafe fn UpdateOverlayDisplay(&self, param0: u32) -> Result<()>
pub unsafe fn UpdateOverlayZOrder<P1>(
&self,
param0: u32,
param1: P1,
) -> Result<()>where
P1: Param<IDirectDrawSurface>,
Trait Implementations§
§impl CanInto<IUnknown> for IDirectDrawSurface
impl CanInto<IUnknown> for IDirectDrawSurface
§impl Clone for IDirectDrawSurface
impl Clone for IDirectDrawSurface
§fn clone(&self) -> IDirectDrawSurface
fn clone(&self) -> IDirectDrawSurface
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for IDirectDrawSurface
impl Debug for IDirectDrawSurface
§impl From<&IDirectDrawSurface> for &IUnknown
impl From<&IDirectDrawSurface> for &IUnknown
§fn from(value: &IDirectDrawSurface) -> Self
fn from(value: &IDirectDrawSurface) -> Self
Converts to this type from the input type.
§impl From<IDirectDrawSurface> for IUnknown
impl From<IDirectDrawSurface> for IUnknown
§fn from(value: IDirectDrawSurface) -> Self
fn from(value: IDirectDrawSurface) -> Self
Converts to this type from the input type.
§impl Interface for IDirectDrawSurface
impl Interface for IDirectDrawSurface
§fn as_raw(&self) -> *mut c_void
fn as_raw(&self) -> *mut c_void
Returns the raw COM interface pointer. The resulting pointer continues to be owned by the
Interface
implementation.§fn into_raw(self) -> *mut c_void
fn into_raw(self) -> *mut c_void
Returns the raw COM interface pointer and releases ownership. It the caller’s responsibility to release the COM interface pointer.
§unsafe fn from_raw_borrowed(raw: &*mut c_void) -> Option<&Self>
unsafe fn from_raw_borrowed(raw: &*mut c_void) -> Option<&Self>
§fn cast<T>(&self) -> Result<T, Error>where
T: Interface,
fn cast<T>(&self) -> Result<T, Error>where
T: Interface,
Attempts to cast the current interface to another interface using
QueryInterface
. Read more§fn cast_to_any<T>(&self) -> Result<&(dyn Any + 'static), Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_to_any<T>(&self) -> Result<&(dyn Any + 'static), Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. Read more§fn is_object<T>(&self) -> boolwhere
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn is_object<T>(&self) -> boolwhere
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
§fn cast_object_ref<T>(&self) -> Result<&<T as ComObjectInner>::Outer, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_object_ref<T>(&self) -> Result<&<T as ComObjectInner>::Outer, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. It returns a reference to the “outer”
object, e.g. &MyApp_Impl
, not the inner &MyApp
object. Read more§fn cast_object<T>(&self) -> Result<ComObject<T>, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_object<T>(&self) -> Result<ComObject<T>, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. It returns a reference to the “outer”
object, e.g. MyApp_Impl
, not the inner MyApp
object. Read more§fn downgrade(&self) -> Result<Weak<Self>, Error>
fn downgrade(&self) -> Result<Weak<Self>, Error>
Attempts to create a [
Weak
] reference to this object.§impl PartialEq for IDirectDrawSurface
impl PartialEq for IDirectDrawSurface
impl Eq for IDirectDrawSurface
impl StructuralPartialEq for IDirectDrawSurface
Auto Trait Implementations§
impl Freeze for IDirectDrawSurface
impl RefUnwindSafe for IDirectDrawSurface
impl !Send for IDirectDrawSurface
impl !Sync for IDirectDrawSurface
impl Unpin for IDirectDrawSurface
impl UnwindSafe for IDirectDrawSurface
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more