We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ebb916 commit 99a3e4eCopy full SHA for 99a3e4e
std/src/sys/windows/c/windows_sys.rs
@@ -4275,3 +4275,20 @@ impl ::core::clone::Clone for XSAVE_FORMAT {
4275
*self
4276
}
4277
4278
+// Begin of ARM32 shim
4279
+cfg_if::cfg_if! {
4280
+if #[cfg(target_arch = "arm")] {
4281
+#[repr(C)]
4282
+pub struct WSADATA {
4283
+ pub wVersion: u16,
4284
+ pub wHighVersion: u16,
4285
+ pub szDescription: [u8; 257],
4286
+ pub szSystemStatus: [u8; 129],
4287
+ pub iMaxSockets: u16,
4288
+ pub iMaxUdpDg: u16,
4289
+ pub lpVendorInfo: PSTR,
4290
+}
4291
+pub enum CONTEXT {}
4292
4293
4294
+// End of ARM32 shim
0 commit comments