Struct windows::Win32::Graphics::DirectDraw::IDirectDrawSurface7
pub struct IDirectDrawSurface7(/* private fields */);
Implementations§
§impl IDirectDrawSurface7
impl IDirectDrawSurface7
pub unsafe fn AddAttachedSurface<P0>(&self, param0: P0) -> Result<()>where
P0: Param<IDirectDrawSurface7>,
pub unsafe fn AddOverlayDirtyRect(&self, param0: *mut RECT) -> Result<()>
pub unsafe fn Blt<P0>(
&self,
param0: *mut RECT,
param1: P0,
param2: *mut RECT,
param3: u32,
param4: *mut DDBLTFX,
) -> Result<()>where
P0: Param<IDirectDrawSurface7>,
pub unsafe fn BltBatch( &self, param0: *mut DDBLTBATCH, param1: u32, param2: u32, ) -> Result<()>
pub unsafe fn BltFast<P0>(
&self,
param0: u32,
param1: u32,
param2: P0,
param3: *mut RECT,
param4: u32,
) -> Result<()>where
P0: Param<IDirectDrawSurface7>,
pub unsafe fn DeleteAttachedSurface<P0>(
&self,
param0: u32,
param1: P0,
) -> Result<()>where
P0: Param<IDirectDrawSurface7>,
pub unsafe fn EnumAttachedSurfaces( &self, param0: *mut c_void, param1: LPDDENUMSURFACESCALLBACK7, ) -> Result<()>
pub unsafe fn EnumOverlayZOrders( &self, param0: u32, param1: *mut c_void, param2: LPDDENUMSURFACESCALLBACK7, ) -> Result<()>
pub unsafe fn Flip<P0>(&self, param0: P0, param1: u32) -> Result<()>where
P0: Param<IDirectDrawSurface7>,
pub unsafe fn GetAttachedSurface( &self, param0: *mut DDSCAPS2, param1: *mut Option<IDirectDrawSurface7>, ) -> Result<()>
pub unsafe fn GetBltStatus(&self, param0: u32) -> Result<()>
pub unsafe fn GetCaps(&self, param0: *mut DDSCAPS2) -> 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 DDSURFACEDESC2) -> Result<()>
pub unsafe fn Initialize<P0>(
&self,
param0: P0,
param1: *mut DDSURFACEDESC2,
) -> Result<()>where
P0: Param<IDirectDraw>,
pub unsafe fn IsLost(&self) -> Result<()>
pub unsafe fn Lock<P0>(
&self,
param0: *mut RECT,
param1: *mut DDSURFACEDESC2,
param2: u32,
param3: P0,
) -> Result<()>where
P0: Param<HANDLE>,
pub unsafe fn ReleaseDC<P0>(&self, param0: P0) -> Result<()>where
P0: Param<HDC>,
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 RECT) -> Result<()>
pub unsafe fn UpdateOverlay<P0>(
&self,
param0: *mut RECT,
param1: P0,
param2: *mut RECT,
param3: u32,
param4: *mut DDOVERLAYFX,
) -> Result<()>where
P0: Param<IDirectDrawSurface7>,
pub unsafe fn UpdateOverlayDisplay(&self, param0: u32) -> Result<()>
pub unsafe fn UpdateOverlayZOrder<P0>(
&self,
param0: u32,
param1: P0,
) -> Result<()>where
P0: Param<IDirectDrawSurface7>,
pub unsafe fn GetDDInterface(&self, param0: *mut *mut c_void) -> Result<()>
pub unsafe fn PageLock(&self, param0: u32) -> Result<()>
pub unsafe fn PageUnlock(&self, param0: u32) -> Result<()>
pub unsafe fn SetSurfaceDesc( &self, param0: *mut DDSURFACEDESC2, param1: u32, ) -> Result<()>
pub unsafe fn SetPrivateData( &self, param0: *const GUID, param1: *mut c_void, param2: u32, param3: u32, ) -> Result<()>
pub unsafe fn GetPrivateData( &self, param0: *const GUID, param1: *mut c_void, param2: *mut u32, ) -> Result<()>
pub unsafe fn FreePrivateData(&self, param0: *const GUID) -> Result<()>
pub unsafe fn GetUniquenessValue(&self, param0: *mut u32) -> Result<()>
pub unsafe fn ChangeUniquenessValue(&self) -> Result<()>
pub unsafe fn SetPriority(&self, param0: u32) -> Result<()>
pub unsafe fn GetPriority(&self, param0: *mut u32) -> Result<()>
pub unsafe fn SetLOD(&self, param0: u32) -> Result<()>
pub unsafe fn GetLOD(&self, param0: *mut u32) -> Result<()>
Trait Implementations§
§impl CanInto<IUnknown> for IDirectDrawSurface7
impl CanInto<IUnknown> for IDirectDrawSurface7
§impl Clone for IDirectDrawSurface7
impl Clone for IDirectDrawSurface7
§fn clone(&self) -> IDirectDrawSurface7
fn clone(&self) -> IDirectDrawSurface7
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 IDirectDrawSurface7
impl Debug for IDirectDrawSurface7
§impl Deref for IDirectDrawSurface7
impl Deref for IDirectDrawSurface7
§impl From<&IDirectDrawSurface7> for &IUnknown
impl From<&IDirectDrawSurface7> for &IUnknown
§fn from(value: &IDirectDrawSurface7) -> Self
fn from(value: &IDirectDrawSurface7) -> Self
Converts to this type from the input type.
§impl From<IDirectDrawSurface7> for IUnknown
impl From<IDirectDrawSurface7> for IUnknown
§fn from(value: IDirectDrawSurface7) -> Self
fn from(value: IDirectDrawSurface7) -> Self
Converts to this type from the input type.
§impl Interface for IDirectDrawSurface7
impl Interface for IDirectDrawSurface7
§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.
§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 IDirectDrawSurface7
impl PartialEq for IDirectDrawSurface7
§fn eq(&self, other: &IDirectDrawSurface7) -> bool
fn eq(&self, other: &IDirectDrawSurface7) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for IDirectDrawSurface7
impl StructuralPartialEq for IDirectDrawSurface7
Auto Trait Implementations§
impl Freeze for IDirectDrawSurface7
impl RefUnwindSafe for IDirectDrawSurface7
impl !Send for IDirectDrawSurface7
impl !Sync for IDirectDrawSurface7
impl Unpin for IDirectDrawSurface7
impl UnwindSafe for IDirectDrawSurface7
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)