winsafe\uxtheme/structs.rs
1#![allow(non_snake_case)]
2
3/// [`MARGINS`](https://learn.microsoft.com/en-us/windows/win32/api/uxtheme/ns-uxtheme-margins)
4/// struct.
5#[repr(C)]
6#[derive(Default, PartialEq, Eq)]
7pub struct MARGINS {
8 pub cxLeftWidth: i32,
9 pub cxRightWidth: i32,
10 pub cyTopHeight: i32,
11 pub cyBottomHeight: i32,
12}