From 77fe83f5caae47e52087940e727ab66971dc2662 Mon Sep 17 00:00:00 2001 From: oberrich <6305520+oberrich@users.noreply.github.com> Date: Fri, 12 Apr 2024 07:50:46 +0200 Subject: [PATCH] style: :art: change `use` order in example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 65e448f..44d6fda 100644 --- a/README.md +++ b/README.md @@ -18,8 +18,8 @@ The [`syscall!` macro][syscall-macro] provides a type-safe way to invoke a Windo ```rust #![feature(asm_const, maybe_uninit_uninit_array, maybe_uninit_array_assume_init)] -use windows_syscall::syscall; use phnt::ffi::{NTSTATUS, HANDLE, NtClose, NtTestAlert}; // = "0.0.25" +use windows_syscall::syscall; fn main() { const INVALID_HANDLE: HANDLE = core::ptr::null_mut();