#![allow(non_snake_case, non_camel_case_types, non_upper_case_globals, clashing_extern_declarations, clippy::all)] #[doc = "*Required features: 'Win32_System_Diagnostics_ToolHelp'*"] #[repr(transparent)] #[derive(:: core :: cmp :: PartialEq, :: core :: cmp :: Eq)] pub struct CREATE_TOOLHELP_SNAPSHOT_FLAGS(pub u32); #[doc = "*Required features: 'Win32_System_Diagnostics_ToolHelp'*"] pub const TH32CS_INHERIT: CREATE_TOOLHELP_SNAPSHOT_FLAGS = CREATE_TOOLHELP_SNAPSHOT_FLAGS(2147483648u32); #[doc = "*Required features: 'Win32_System_Diagnostics_ToolHelp'*"] pub const TH32CS_SNAPALL: CREATE_TOOLHELP_SNAPSHOT_FLAGS = CREATE_TOOLHELP_SNAPSHOT_FLAGS(15u32); #[doc = "*Required features: 'Win32_System_Diagnostics_ToolHelp'*"] pub const TH32CS_SNAPHEAPLIST: CREATE_TOOLHELP_SNAPSHOT_FLAGS = CREATE_TOOLHELP_SNAPSHOT_FLAGS(1u32); #[doc = "*Required features: 'Win32_System_Diagnostics_ToolHelp'*"] pub const TH32CS_SNAPMODULE: CREATE_TOOLHELP_SNAPSHOT_FLAGS = CREATE_TOOLHELP_SNAPSHOT_FLAGS(8u32); #[doc = "*Required features: 'Win32_System_Diagnostics_ToolHelp'*"] pub const TH32CS_SNAPMODULE32: CREATE_TOOLHELP_SNAPSHOT_FLAGS = CREATE_TOOLHELP_SNAPSHOT_FLAGS(16u32); #[doc = "*Required features: 'Win32_System_Diagnostics_ToolHelp'*"] pub const TH32CS_SNAPPROCESS: CREATE_TOOLHELP_SNAPSHOT_FLAGS = CREATE_TOOLHELP_SNAPSHOT_FLAGS(2u32); #[doc = "*Required features: 'Win32_System_Diagnostics_ToolHelp'*"] pub const TH32CS_SNAPTHREAD: CREATE_TOOLHELP_SNAPSHOT_FLAGS = CREATE_TOOLHELP_SNAPSHOT_FLAGS(4u32); impl ::core::marker::Copy for CREATE_TOOLHELP_SNAPSHOT_FLAGS {} impl ::core::clone::Clone for CREATE_TOOLHELP_SNAPSHOT_FLAGS { fn clone(&self) -> Self { *self } } impl ::core::default::Default for CREATE_TOOLHELP_SNAPSHOT_FLAGS { fn default() -> Self { Self(0) } } unsafe impl ::windows::core::Abi for CREATE_TOOLHELP_SNAPSHOT_FLAGS { type Abi = Self; } impl ::core::fmt::Debug for CREATE_TOOLHELP_SNAPSHOT_FLAGS { fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_tuple("CREATE_TOOLHELP_SNAPSHOT_FLAGS").field(&self.0).finish() } } impl ::core::ops::BitOr for CREATE_TOOLHELP_SNAPSHOT_FLAGS { type Output = Self; fn bitor(self, other: Self) -> Self { Self(self.0 | other.0) } } impl ::core::ops::BitAnd for CREATE_TOOLHELP_SNAPSHOT_FLAGS { type Output = Self; fn bitand(self, other: Self) -> Self { Self(self.0 & other.0) } } impl ::core::ops::BitOrAssign for CREATE_TOOLHELP_SNAPSHOT_FLAGS { fn bitor_assign(&mut self, other: Self) { self.0.bitor_assign(other.0) } } impl ::core::ops::BitAndAssign for CREATE_TOOLHELP_SNAPSHOT_FLAGS { fn bitand_assign(&mut self, other: Self) { self.0.bitand_assign(other.0) } } impl ::core::ops::Not for CREATE_TOOLHELP_SNAPSHOT_FLAGS { type Output = Self; fn not(self) -> Self { Self(self.0.not()) } } #[doc = "*Required features: 'Win32_System_Diagnostics_ToolHelp', 'Win32_Foundation'*"] #[cfg(feature = "Win32_Foundation")] #[inline] pub unsafe fn CreateToolhelp32Snapshot(dwflags: CREATE_TOOLHELP_SNAPSHOT_FLAGS, th32processid: u32) -> super::super::super::Foundation::HANDLE { #[cfg(windows)] { #[link(name = "windows")] extern "system" { fn CreateToolhelp32Snapshot(dwflags: CREATE_TOOLHELP_SNAPSHOT_FLAGS, th32processid: u32) -> super::super::super::Foundation::HANDLE; } ::core::mem::transmute(CreateToolhelp32Snapshot(::core::mem::transmute(dwflags), ::core::mem::transmute(th32processid))) } #[cfg(not(windows))] unimplemented!("Unsupported target OS"); } #[repr(C)] #[doc = "*Required features: 'Win32_System_Diagnostics_ToolHelp', 'Win32_Foundation'*"] #[cfg(feature = "Win32_Foundation")] pub struct HEAPENTRY32 { pub dwSize: usize, pub hHandle: super::super::super::Foundation::HANDLE, pub dwAddress: usize, pub dwBlockSize: usize, pub dwFlags: HEAPENTRY32_FLAGS, pub dwLockCount: u32, pub dwResvd: u32, pub th32ProcessID: u32, pub th32HeapID: usize, } #[cfg(feature = "Win32_Foundation")] impl ::core::marker::Copy for HEAPENTRY32 {} #[cfg(feature = "Win32_Foundation")] impl ::core::clone::Clone for HEAPENTRY32 { fn clone(&self) -> Self { *self } } #[cfg(feature = "Win32_Foundation")] impl ::core::fmt::Debug for HEAPENTRY32 { fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("HEAPENTRY32").field("dwSize", &self.dwSize).field("hHandle", &self.hHandle).field("dwAddress", &self.dwAddress).field("dwBlockSize", &self.dwBlockSize).field("dwFlags", &self.dwFlags).field("dwLockCount", &self.dwLockCount).field("dwResvd", &self.dwResvd).field("th32ProcessID", &self.th32ProcessID).field("th32HeapID", &self.th32HeapID).finish() } } #[cfg(feature = "Win32_Foundation")] unsafe impl ::windows::core::Abi for HEAPENTRY32 { type Abi = Self; } #[cfg(feature = "Win32_Foundation")] impl ::core::cmp::PartialEq for HEAPENTRY32 { fn eq(&self, other: &Self) -> bool { unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::()) == 0 } } } #[cfg(feature = "Win32_Foundation")] impl ::core::cmp::Eq for HEAPENTRY32 {} #[cfg(feature = "Win32_Foundation")] impl ::core::default::Default for HEAPENTRY32 { fn default() -> Self { unsafe { ::core::mem::zeroed() } } } #[doc = "*Required features: 'Win32_System_Diagnostics_ToolHelp'*"] #[repr(transparent)] #[derive(:: core :: cmp :: PartialEq, :: core :: cmp :: Eq)] pub struct HEAPENTRY32_FLAGS(pub u32); #[doc = "*Required features: 'Win32_System_Diagnostics_ToolHelp'*"] pub const LF32_FIXED: HEAPENTRY32_FLAGS = HEAPENTRY32_FLAGS(1u32); #[doc = "*Required features: 'Win32_System_Diagnostics_ToolHelp'*"] pub const LF32_FREE: HEAPENTRY32_FLAGS = HEAPENTRY32_FLAGS(2u32); #[doc = "*Required features: 'Win32_System_Diagnostics_ToolHelp'*"] pub const LF32_MOVEABLE: HEAPENTRY32_FLAGS = HEAPENTRY32_FLAGS(4u32); impl ::core::marker::Copy for HEAPENTRY32_FLAGS {} impl ::core::clone::Clone for HEAPENTRY32_FLAGS { fn clone(&self) -> Self { *self } } impl ::core::default::Default for HEAPENTRY32_FLAGS { fn default() -> Self { Self(0) } } unsafe impl ::windows::core::Abi for HEAPENTRY32_FLAGS { type Abi = Self; } impl ::core::fmt::Debug for HEAPENTRY32_FLAGS { fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_tuple("HEAPENTRY32_FLAGS").field(&self.0).finish() } } #[repr(C)] #[doc = "*Required features: 'Win32_System_Diagnostics_ToolHelp'*"] pub struct HEAPLIST32 { pub dwSize: usize, pub th32ProcessID: u32, pub th32HeapID: usize, pub dwFlags: u32, } impl ::core::marker::Copy for HEAPLIST32 {} impl ::core::clone::Clone for HEAPLIST32 { fn clone(&self) -> Self { *self } } impl ::core::fmt::Debug for HEAPLIST32 { fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("HEAPLIST32").field("dwSize", &self.dwSize).field("th32ProcessID", &self.th32ProcessID).field("th32HeapID", &self.th32HeapID).field("dwFlags", &self.dwFlags).finish() } } unsafe impl ::windows::core::Abi for HEAPLIST32 { type Abi = Self; } impl ::core::cmp::PartialEq for HEAPLIST32 { fn eq(&self, other: &Self) -> bool { unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::()) == 0 } } } impl ::core::cmp::Eq for HEAPLIST32 {} impl ::core::default::Default for HEAPLIST32 { fn default() -> Self { unsafe { ::core::mem::zeroed() } } } #[doc = "*Required features: 'Win32_System_Diagnostics_ToolHelp'*"] pub const HF32_DEFAULT: u32 = 1u32; #[doc = "*Required features: 'Win32_System_Diagnostics_ToolHelp'*"] pub const HF32_SHARED: u32 = 2u32; #[doc = "*Required features: 'Win32_System_Diagnostics_ToolHelp', 'Win32_Foundation'*"] #[cfg(feature = "Win32_Foundation")] #[inline] pub unsafe fn Heap32First(lphe: *mut HEAPENTRY32, th32processid: u32, th32heapid: usize) -> super::super::super::Foundation::BOOL { #[cfg(windows)] { #[link(name = "windows")] extern "system" { fn Heap32First(lphe: *mut HEAPENTRY32, th32processid: u32, th32heapid: usize) -> super::super::super::Foundation::BOOL; } ::core::mem::transmute(Heap32First(::core::mem::transmute(lphe), ::core::mem::transmute(th32processid), ::core::mem::transmute(th32heapid))) } #[cfg(not(windows))] unimplemented!("Unsupported target OS"); } #[doc = "*Required features: 'Win32_System_Diagnostics_ToolHelp', 'Win32_Foundation'*"] #[cfg(feature = "Win32_Foundation")] #[inline] pub unsafe fn Heap32ListFirst<'a, Param0: ::windows::core::IntoParam<'a, super::super::super::Foundation::HANDLE>>(hsnapshot: Param0, lphl: *mut HEAPLIST32) -> super::super::super::Foundation::BOOL { #[cfg(windows)] { #[link(name = "windows")] extern "system" { fn Heap32ListFirst(hsnapshot: super::super::super::Foundation::HANDLE, lphl: *mut HEAPLIST32) -> super::super::super::Foundation::BOOL; } ::core::mem::transmute(Heap32ListFirst(hsnapshot.into_param().abi(), ::core::mem::transmute(lphl))) } #[cfg(not(windows))] unimplemented!("Unsupported target OS"); } #[doc = "*Required features: 'Win32_System_Diagnostics_ToolHelp', 'Win32_Foundation'*"] #[cfg(feature = "Win32_Foundation")] #[inline] pub unsafe fn Heap32ListNext<'a, Param0: ::windows::core::IntoParam<'a, super::super::super::Foundation::HANDLE>>(hsnapshot: Param0, lphl: *mut HEAPLIST32) -> super::super::super::Foundation::BOOL { #[cfg(windows)] { #[link(name = "windows")] extern "system" { fn Heap32ListNext(hsnapshot: super::super::super::Foundation::HANDLE, lphl: *mut HEAPLIST32) -> super::super::super::Foundation::BOOL; } ::core::mem::transmute(Heap32ListNext(hsnapshot.into_param().abi(), ::core::mem::transmute(lphl))) } #[cfg(not(windows))] unimplemented!("Unsupported target OS"); } #[doc = "*Required features: 'Win32_System_Diagnostics_ToolHelp', 'Win32_Foundation'*"] #[cfg(feature = "Win32_Foundation")] #[inline] pub unsafe fn Heap32Next(lphe: *mut HEAPENTRY32) -> super::super::super::Foundation::BOOL { #[cfg(windows)] { #[link(name = "windows")] extern "system" { fn Heap32Next(lphe: *mut HEAPENTRY32) -> super::super::super::Foundation::BOOL; } ::core::mem::transmute(Heap32Next(::core::mem::transmute(lphe))) } #[cfg(not(windows))] unimplemented!("Unsupported target OS"); } #[doc = "*Required features: 'Win32_System_Diagnostics_ToolHelp'*"] pub const MAX_MODULE_NAME32: u32 = 255u32; #[repr(C)] #[doc = "*Required features: 'Win32_System_Diagnostics_ToolHelp', 'Win32_Foundation'*"] #[cfg(feature = "Win32_Foundation")] pub struct MODULEENTRY32 { pub dwSize: u32, pub th32ModuleID: u32, pub th32ProcessID: u32, pub GlblcntUsage: u32, pub ProccntUsage: u32, pub modBaseAddr: *mut u8, pub modBaseSize: u32, pub hModule: super::super::super::Foundation::HINSTANCE, pub szModule: [super::super::super::Foundation::CHAR; 256], pub szExePath: [super::super::super::Foundation::CHAR; 260], } #[cfg(feature = "Win32_Foundation")] impl ::core::marker::Copy for MODULEENTRY32 {} #[cfg(feature = "Win32_Foundation")] impl ::core::clone::Clone for MODULEENTRY32 { fn clone(&self) -> Self { *self } } #[cfg(feature = "Win32_Foundation")] impl ::core::fmt::Debug for MODULEENTRY32 { fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("MODULEENTRY32").field("dwSize", &self.dwSize).field("th32ModuleID", &self.th32ModuleID).field("th32ProcessID", &self.th32ProcessID).field("GlblcntUsage", &self.GlblcntUsage).field("ProccntUsage", &self.ProccntUsage).field("modBaseAddr", &self.modBaseAddr).field("modBaseSize", &self.modBaseSize).field("hModule", &self.hModule).field("szModule", &self.szModule).field("szExePath", &self.szExePath).finish() } } #[cfg(feature = "Win32_Foundation")] unsafe impl ::windows::core::Abi for MODULEENTRY32 { type Abi = Self; } #[cfg(feature = "Win32_Foundation")] impl ::core::cmp::PartialEq for MODULEENTRY32 { fn eq(&self, other: &Self) -> bool { unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::()) == 0 } } } #[cfg(feature = "Win32_Foundation")] impl ::core::cmp::Eq for MODULEENTRY32 {} #[cfg(feature = "Win32_Foundation")] impl ::core::default::Default for MODULEENTRY32 { fn default() -> Self { unsafe { ::core::mem::zeroed() } } } #[repr(C)] #[doc = "*Required features: 'Win32_System_Diagnostics_ToolHelp', 'Win32_Foundation'*"] #[cfg(feature = "Win32_Foundation")] pub struct MODULEENTRY32W { pub dwSize: u32, pub th32ModuleID: u32, pub th32ProcessID: u32, pub GlblcntUsage: u32, pub ProccntUsage: u32, pub modBaseAddr: *mut u8, pub modBaseSize: u32, pub hModule: super::super::super::Foundation::HINSTANCE, pub szModule: [u16; 256], pub szExePath: [u16; 260], } #[cfg(feature = "Win32_Foundation")] impl ::core::marker::Copy for MODULEENTRY32W {} #[cfg(feature = "Win32_Foundation")] impl ::core::clone::Clone for MODULEENTRY32W { fn clone(&self) -> Self { *self } } #[cfg(feature = "Win32_Foundation")] impl ::core::fmt::Debug for MODULEENTRY32W { fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("MODULEENTRY32W").field("dwSize", &self.dwSize).field("th32ModuleID", &self.th32ModuleID).field("th32ProcessID", &self.th32ProcessID).field("GlblcntUsage", &self.GlblcntUsage).field("ProccntUsage", &self.ProccntUsage).field("modBaseAddr", &self.modBaseAddr).field("modBaseSize", &self.modBaseSize).field("hModule", &self.hModule).field("szModule", &self.szModule).field("szExePath", &self.szExePath).finish() } } #[cfg(feature = "Win32_Foundation")] unsafe impl ::windows::core::Abi for MODULEENTRY32W { type Abi = Self; } #[cfg(feature = "Win32_Foundation")] impl ::core::cmp::PartialEq for MODULEENTRY32W { fn eq(&self, other: &Self) -> bool { unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::()) == 0 } } } #[cfg(feature = "Win32_Foundation")] impl ::core::cmp::Eq for MODULEENTRY32W {} #[cfg(feature = "Win32_Foundation")] impl ::core::default::Default for MODULEENTRY32W { fn default() -> Self { unsafe { ::core::mem::zeroed() } } } #[doc = "*Required features: 'Win32_System_Diagnostics_ToolHelp', 'Win32_Foundation'*"] #[cfg(feature = "Win32_Foundation")] #[inline] pub unsafe fn Module32First<'a, Param0: ::windows::core::IntoParam<'a, super::super::super::Foundation::HANDLE>>(hsnapshot: Param0, lpme: *mut MODULEENTRY32) -> super::super::super::Foundation::BOOL { #[cfg(windows)] { #[link(name = "windows")] extern "system" { fn Module32First(hsnapshot: super::super::super::Foundation::HANDLE, lpme: *mut MODULEENTRY32) -> super::super::super::Foundation::BOOL; } ::core::mem::transmute(Module32First(hsnapshot.into_param().abi(), ::core::mem::transmute(lpme))) } #[cfg(not(windows))] unimplemented!("Unsupported target OS"); } #[doc = "*Required features: 'Win32_System_Diagnostics_ToolHelp', 'Win32_Foundation'*"] #[cfg(feature = "Win32_Foundation")] #[inline] pub unsafe fn Module32FirstW<'a, Param0: ::windows::core::IntoParam<'a, super::super::super::Foundation::HANDLE>>(hsnapshot: Param0, lpme: *mut MODULEENTRY32W) -> super::super::super::Foundation::BOOL { #[cfg(windows)] { #[link(name = "windows")] extern "system" { fn Module32FirstW(hsnapshot: super::super::super::Foundation::HANDLE, lpme: *mut MODULEENTRY32W) -> super::super::super::Foundation::BOOL; } ::core::mem::transmute(Module32FirstW(hsnapshot.into_param().abi(), ::core::mem::transmute(lpme))) } #[cfg(not(windows))] unimplemented!("Unsupported target OS"); } #[doc = "*Required features: 'Win32_System_Diagnostics_ToolHelp', 'Win32_Foundation'*"] #[cfg(feature = "Win32_Foundation")] #[inline] pub unsafe fn Module32Next<'a, Param0: ::windows::core::IntoParam<'a, super::super::super::Foundation::HANDLE>>(hsnapshot: Param0, lpme: *mut MODULEENTRY32) -> super::super::super::Foundation::BOOL { #[cfg(windows)] { #[link(name = "windows")] extern "system" { fn Module32Next(hsnapshot: super::super::super::Foundation::HANDLE, lpme: *mut MODULEENTRY32) -> super::super::super::Foundation::BOOL; } ::core::mem::transmute(Module32Next(hsnapshot.into_param().abi(), ::core::mem::transmute(lpme))) } #[cfg(not(windows))] unimplemented!("Unsupported target OS"); } #[doc = "*Required features: 'Win32_System_Diagnostics_ToolHelp', 'Win32_Foundation'*"] #[cfg(feature = "Win32_Foundation")] #[inline] pub unsafe fn Module32NextW<'a, Param0: ::windows::core::IntoParam<'a, super::super::super::Foundation::HANDLE>>(hsnapshot: Param0, lpme: *mut MODULEENTRY32W) -> super::super::super::Foundation::BOOL { #[cfg(windows)] { #[link(name = "windows")] extern "system" { fn Module32NextW(hsnapshot: super::super::super::Foundation::HANDLE, lpme: *mut MODULEENTRY32W) -> super::super::super::Foundation::BOOL; } ::core::mem::transmute(Module32NextW(hsnapshot.into_param().abi(), ::core::mem::transmute(lpme))) } #[cfg(not(windows))] unimplemented!("Unsupported target OS"); } #[repr(C)] #[doc = "*Required features: 'Win32_System_Diagnostics_ToolHelp', 'Win32_Foundation'*"] #[cfg(feature = "Win32_Foundation")] pub struct PROCESSENTRY32 { pub dwSize: u32, pub cntUsage: u32, pub th32ProcessID: u32, pub th32DefaultHeapID: usize, pub th32ModuleID: u32, pub cntThreads: u32, pub th32ParentProcessID: u32, pub pcPriClassBase: i32, pub dwFlags: u32, pub szExeFile: [super::super::super::Foundation::CHAR; 260], } #[cfg(feature = "Win32_Foundation")] impl ::core::marker::Copy for PROCESSENTRY32 {} #[cfg(feature = "Win32_Foundation")] impl ::core::clone::Clone for PROCESSENTRY32 { fn clone(&self) -> Self { *self } } #[cfg(feature = "Win32_Foundation")] impl ::core::fmt::Debug for PROCESSENTRY32 { fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("PROCESSENTRY32").field("dwSize", &self.dwSize).field("cntUsage", &self.cntUsage).field("th32ProcessID", &self.th32ProcessID).field("th32DefaultHeapID", &self.th32DefaultHeapID).field("th32ModuleID", &self.th32ModuleID).field("cntThreads", &self.cntThreads).field("th32ParentProcessID", &self.th32ParentProcessID).field("pcPriClassBase", &self.pcPriClassBase).field("dwFlags", &self.dwFlags).field("szExeFile", &self.szExeFile).finish() } } #[cfg(feature = "Win32_Foundation")] unsafe impl ::windows::core::Abi for PROCESSENTRY32 { type Abi = Self; } #[cfg(feature = "Win32_Foundation")] impl ::core::cmp::PartialEq for PROCESSENTRY32 { fn eq(&self, other: &Self) -> bool { unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::()) == 0 } } } #[cfg(feature = "Win32_Foundation")] impl ::core::cmp::Eq for PROCESSENTRY32 {} #[cfg(feature = "Win32_Foundation")] impl ::core::default::Default for PROCESSENTRY32 { fn default() -> Self { unsafe { ::core::mem::zeroed() } } } #[repr(C)] #[doc = "*Required features: 'Win32_System_Diagnostics_ToolHelp'*"] pub struct PROCESSENTRY32W { pub dwSize: u32, pub cntUsage: u32, pub th32ProcessID: u32, pub th32DefaultHeapID: usize, pub th32ModuleID: u32, pub cntThreads: u32, pub th32ParentProcessID: u32, pub pcPriClassBase: i32, pub dwFlags: u32, pub szExeFile: [u16; 260], } impl ::core::marker::Copy for PROCESSENTRY32W {} impl ::core::clone::Clone for PROCESSENTRY32W { fn clone(&self) -> Self { *self } } impl ::core::fmt::Debug for PROCESSENTRY32W { fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("PROCESSENTRY32W").field("dwSize", &self.dwSize).field("cntUsage", &self.cntUsage).field("th32ProcessID", &self.th32ProcessID).field("th32DefaultHeapID", &self.th32DefaultHeapID).field("th32ModuleID", &self.th32ModuleID).field("cntThreads", &self.cntThreads).field("th32ParentProcessID", &self.th32ParentProcessID).field("pcPriClassBase", &self.pcPriClassBase).field("dwFlags", &self.dwFlags).field("szExeFile", &self.szExeFile).finish() } } unsafe impl ::windows::core::Abi for PROCESSENTRY32W { type Abi = Self; } impl ::core::cmp::PartialEq for PROCESSENTRY32W { fn eq(&self, other: &Self) -> bool { unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::()) == 0 } } } impl ::core::cmp::Eq for PROCESSENTRY32W {} impl ::core::default::Default for PROCESSENTRY32W { fn default() -> Self { unsafe { ::core::mem::zeroed() } } } #[doc = "*Required features: 'Win32_System_Diagnostics_ToolHelp', 'Win32_Foundation'*"] #[cfg(feature = "Win32_Foundation")] #[inline] pub unsafe fn Process32First<'a, Param0: ::windows::core::IntoParam<'a, super::super::super::Foundation::HANDLE>>(hsnapshot: Param0, lppe: *mut PROCESSENTRY32) -> super::super::super::Foundation::BOOL { #[cfg(windows)] { #[link(name = "windows")] extern "system" { fn Process32First(hsnapshot: super::super::super::Foundation::HANDLE, lppe: *mut PROCESSENTRY32) -> super::super::super::Foundation::BOOL; } ::core::mem::transmute(Process32First(hsnapshot.into_param().abi(), ::core::mem::transmute(lppe))) } #[cfg(not(windows))] unimplemented!("Unsupported target OS"); } #[doc = "*Required features: 'Win32_System_Diagnostics_ToolHelp', 'Win32_Foundation'*"] #[cfg(feature = "Win32_Foundation")] #[inline] pub unsafe fn Process32FirstW<'a, Param0: ::windows::core::IntoParam<'a, super::super::super::Foundation::HANDLE>>(hsnapshot: Param0, lppe: *mut PROCESSENTRY32W) -> super::super::super::Foundation::BOOL { #[cfg(windows)] { #[link(name = "windows")] extern "system" { fn Process32FirstW(hsnapshot: super::super::super::Foundation::HANDLE, lppe: *mut PROCESSENTRY32W) -> super::super::super::Foundation::BOOL; } ::core::mem::transmute(Process32FirstW(hsnapshot.into_param().abi(), ::core::mem::transmute(lppe))) } #[cfg(not(windows))] unimplemented!("Unsupported target OS"); } #[doc = "*Required features: 'Win32_System_Diagnostics_ToolHelp', 'Win32_Foundation'*"] #[cfg(feature = "Win32_Foundation")] #[inline] pub unsafe fn Process32Next<'a, Param0: ::windows::core::IntoParam<'a, super::super::super::Foundation::HANDLE>>(hsnapshot: Param0, lppe: *mut PROCESSENTRY32) -> super::super::super::Foundation::BOOL { #[cfg(windows)] { #[link(name = "windows")] extern "system" { fn Process32Next(hsnapshot: super::super::super::Foundation::HANDLE, lppe: *mut PROCESSENTRY32) -> super::super::super::Foundation::BOOL; } ::core::mem::transmute(Process32Next(hsnapshot.into_param().abi(), ::core::mem::transmute(lppe))) } #[cfg(not(windows))] unimplemented!("Unsupported target OS"); } #[doc = "*Required features: 'Win32_System_Diagnostics_ToolHelp', 'Win32_Foundation'*"] #[cfg(feature = "Win32_Foundation")] #[inline] pub unsafe fn Process32NextW<'a, Param0: ::windows::core::IntoParam<'a, super::super::super::Foundation::HANDLE>>(hsnapshot: Param0, lppe: *mut PROCESSENTRY32W) -> super::super::super::Foundation::BOOL { #[cfg(windows)] { #[link(name = "windows")] extern "system" { fn Process32NextW(hsnapshot: super::super::super::Foundation::HANDLE, lppe: *mut PROCESSENTRY32W) -> super::super::super::Foundation::BOOL; } ::core::mem::transmute(Process32NextW(hsnapshot.into_param().abi(), ::core::mem::transmute(lppe))) } #[cfg(not(windows))] unimplemented!("Unsupported target OS"); } #[repr(C)] #[doc = "*Required features: 'Win32_System_Diagnostics_ToolHelp'*"] pub struct THREADENTRY32 { pub dwSize: u32, pub cntUsage: u32, pub th32ThreadID: u32, pub th32OwnerProcessID: u32, pub tpBasePri: i32, pub tpDeltaPri: i32, pub dwFlags: u32, } impl ::core::marker::Copy for THREADENTRY32 {} impl ::core::clone::Clone for THREADENTRY32 { fn clone(&self) -> Self { *self } } impl ::core::fmt::Debug for THREADENTRY32 { fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("THREADENTRY32").field("dwSize", &self.dwSize).field("cntUsage", &self.cntUsage).field("th32ThreadID", &self.th32ThreadID).field("th32OwnerProcessID", &self.th32OwnerProcessID).field("tpBasePri", &self.tpBasePri).field("tpDeltaPri", &self.tpDeltaPri).field("dwFlags", &self.dwFlags).finish() } } unsafe impl ::windows::core::Abi for THREADENTRY32 { type Abi = Self; } impl ::core::cmp::PartialEq for THREADENTRY32 { fn eq(&self, other: &Self) -> bool { unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::()) == 0 } } } impl ::core::cmp::Eq for THREADENTRY32 {} impl ::core::default::Default for THREADENTRY32 { fn default() -> Self { unsafe { ::core::mem::zeroed() } } } #[doc = "*Required features: 'Win32_System_Diagnostics_ToolHelp', 'Win32_Foundation'*"] #[cfg(feature = "Win32_Foundation")] #[inline] pub unsafe fn Thread32First<'a, Param0: ::windows::core::IntoParam<'a, super::super::super::Foundation::HANDLE>>(hsnapshot: Param0, lpte: *mut THREADENTRY32) -> super::super::super::Foundation::BOOL { #[cfg(windows)] { #[link(name = "windows")] extern "system" { fn Thread32First(hsnapshot: super::super::super::Foundation::HANDLE, lpte: *mut THREADENTRY32) -> super::super::super::Foundation::BOOL; } ::core::mem::transmute(Thread32First(hsnapshot.into_param().abi(), ::core::mem::transmute(lpte))) } #[cfg(not(windows))] unimplemented!("Unsupported target OS"); } #[doc = "*Required features: 'Win32_System_Diagnostics_ToolHelp', 'Win32_Foundation'*"] #[cfg(feature = "Win32_Foundation")] #[inline] pub unsafe fn Thread32Next<'a, Param0: ::windows::core::IntoParam<'a, super::super::super::Foundation::HANDLE>>(hsnapshot: Param0, lpte: *mut THREADENTRY32) -> super::super::super::Foundation::BOOL { #[cfg(windows)] { #[link(name = "windows")] extern "system" { fn Thread32Next(hsnapshot: super::super::super::Foundation::HANDLE, lpte: *mut THREADENTRY32) -> super::super::super::Foundation::BOOL; } ::core::mem::transmute(Thread32Next(hsnapshot.into_param().abi(), ::core::mem::transmute(lpte))) } #[cfg(not(windows))] unimplemented!("Unsupported target OS"); } #[doc = "*Required features: 'Win32_System_Diagnostics_ToolHelp', 'Win32_Foundation'*"] #[cfg(feature = "Win32_Foundation")] #[inline] pub unsafe fn Toolhelp32ReadProcessMemory(th32processid: u32, lpbaseaddress: *const ::core::ffi::c_void, lpbuffer: *mut ::core::ffi::c_void, cbread: usize, lpnumberofbytesread: *mut usize) -> super::super::super::Foundation::BOOL { #[cfg(windows)] { #[link(name = "windows")] extern "system" { fn Toolhelp32ReadProcessMemory(th32processid: u32, lpbaseaddress: *const ::core::ffi::c_void, lpbuffer: *mut ::core::ffi::c_void, cbread: usize, lpnumberofbytesread: *mut usize) -> super::super::super::Foundation::BOOL; } ::core::mem::transmute(Toolhelp32ReadProcessMemory(::core::mem::transmute(th32processid), ::core::mem::transmute(lpbaseaddress), ::core::mem::transmute(lpbuffer), ::core::mem::transmute(cbread), ::core::mem::transmute(lpnumberofbytesread))) } #[cfg(not(windows))] unimplemented!("Unsupported target OS"); } #[cfg(feature = "implement")] ::core::include!("impl.rs");