Skip to content

Commit

Permalink
Fix warnings on windows (#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
glowcoil authored Dec 17, 2023
1 parent b59a67d commit 1b8c876
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions src/win/drop_target.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ impl DropTarget {
}
}

#[allow(non_snake_case)]
fn on_event(&self, pdwEffect: Option<*mut DWORD>, event: MouseEvent) {
let Some(window_state) = self.window_state.upgrade() else {
return;
Expand Down Expand Up @@ -165,6 +166,7 @@ impl DropTarget {
}
}

#[allow(non_snake_case)]
unsafe extern "system" fn query_interface(
this: *mut IUnknown, riid: REFIID, ppvObject: *mut *mut winapi::ctypes::c_void,
) -> HRESULT {
Expand Down Expand Up @@ -197,6 +199,7 @@ impl DropTarget {
result as ULONG
}

#[allow(non_snake_case)]
unsafe extern "system" fn drag_enter(
this: *mut IDropTarget, pDataObj: *const IDataObject, grfKeyState: DWORD, pt: POINTL,
pdwEffect: *mut DWORD,
Expand All @@ -222,6 +225,7 @@ impl DropTarget {
S_OK
}

#[allow(non_snake_case)]
unsafe extern "system" fn drag_over(
this: *mut IDropTarget, grfKeyState: DWORD, pt: POINTL, pdwEffect: *mut DWORD,
) -> HRESULT {
Expand Down Expand Up @@ -251,6 +255,7 @@ impl DropTarget {
S_OK
}

#[allow(non_snake_case)]
unsafe extern "system" fn drop(
this: *mut IDropTarget, pDataObj: *const IDataObject, grfKeyState: DWORD, pt: POINTL,
pdwEffect: *mut DWORD,
Expand Down
2 changes: 1 addition & 1 deletion src/win/window.rs
Original file line number Diff line number Diff line change
Expand Up @@ -786,6 +786,6 @@ unsafe impl HasRawDisplayHandle for Window<'_> {
}
}

pub fn copy_to_clipboard(data: &str) {
pub fn copy_to_clipboard(_data: &str) {
todo!()
}

0 comments on commit 1b8c876

Please sign in to comment.