#[repr(C)]pub struct FINDREPLACE {
pub lStructSize: u32,
pub hwndOwner: *mut c_void,
pub hInstance: *mut c_void,
pub Flags: u32,
pub lpstrFindWhat: *mut u16,
pub lpstrReplaceWith: *mut u16,
pub wFindWhatLen: u16,
pub wReplaceWithLen: u16,
pub lCustData: isize,
pub lpfnHook: Option<unsafe extern "system" fn(*mut c_void, u32, usize, isize) -> usize>,
pub lpTemplateName: *const u16,
}Expand description
C.14 FINDREPLACE
contains information that is used by the system to initialize the Find and Replace common dialog boxes and to return the user’s dialog box selections
Fields§
§lStructSize: u32§hwndOwner: *mut c_void§hInstance: *mut c_void§Flags: u32§lpstrFindWhat: *mut u16§lpstrReplaceWith: *mut u16§wFindWhatLen: u16§wReplaceWithLen: u16§lCustData: isize§lpfnHook: Option<unsafe extern "system" fn(*mut c_void, u32, usize, isize) -> usize>§lpTemplateName: *const u16Trait Implementations§
Source§impl Clone for FINDREPLACEW
impl Clone for FINDREPLACEW
Source§fn clone(&self) -> FINDREPLACEW
fn clone(&self) -> FINDREPLACEW
Returns a duplicate 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 moreSource§impl Default for FINDREPLACEW
Available on AArch64 or target_arch=arm64ec or x86-64 only.
impl Default for FINDREPLACEW
Available on AArch64 or
target_arch=arm64ec or x86-64 only.Source§fn default() -> FINDREPLACEW
fn default() -> FINDREPLACEW
Returns the “default value” for a type. Read more
impl Copy for FINDREPLACEW
Auto Trait Implementations§
impl Freeze for FINDREPLACEW
impl RefUnwindSafe for FINDREPLACEW
impl !Send for FINDREPLACEW
impl !Sync for FINDREPLACEW
impl Unpin for FINDREPLACEW
impl UnwindSafe for FINDREPLACEW
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