Skip to content

Commit

Permalink
samples
Browse files Browse the repository at this point in the history
  • Loading branch information
kennykerr committed Jan 14, 2025
1 parent e2baf70 commit 2ec6676
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/samples/windows-sys/enum_windows/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use windows_sys::{Win32::Foundation::*, Win32::UI::WindowsAndMessaging::*};
use windows_sys::{core::*, Win32::Foundation::*, Win32::UI::WindowsAndMessaging::*};

fn main() {
unsafe {
Expand Down
2 changes: 1 addition & 1 deletion crates/samples/windows/enum_windows/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use windows::{Win32::Foundation::*, Win32::UI::WindowsAndMessaging::*};
use windows::{core::*, Win32::Foundation::*, Win32::UI::WindowsAndMessaging::*};

fn main() -> windows::core::Result<()> {
unsafe { EnumWindows(Some(enum_window), LPARAM(0)) }
Expand Down

0 comments on commit 2ec6676

Please sign in to comment.