From b862acfd6fcb3f574c726b2539c6297c49302a5d Mon Sep 17 00:00:00 2001 From: Stepan Koltsov Date: Wed, 25 Sep 2024 00:53:37 +0100 Subject: [PATCH] Link windows-sys crate (#3915) WinAPI provides low level libc-like functions but for Windows. One may expect to find it here, so provide the links. `windows-sys` is provided by Microsoft. Official, looks good. (backport ) (cherry picked from commit 433d01944e237d89c786c419bc63fb3368bf9c9a) --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 395b94ce0c8f3..3d5b5ec583457 100644 --- a/README.md +++ b/README.md @@ -11,10 +11,14 @@ This crate exports all underlying platform types, functions, and constants under the crate root, so all items are accessible as `libc::foo`. The types and values of all the exported APIs match the platform that libc is compiled for. +Windows API bindings are not included in this crate. If you are looking for WinAPI +bindings, consider using crates like [windows-sys]. + More detailed information about the design of this library can be found in its [associated RFC][rfc]. [rfc]: https://github.com/rust-lang/rfcs/blob/HEAD/text/1291-promote-libc.md +[windows-sys]: https://docs.rs/windows-sys ## v0.3 Roadmap