From 05a017da04a3f7a40bc39039aece0d2698d60504 Mon Sep 17 00:00:00 2001 From: Stepan Koltsov Date: Wed, 11 Sep 2024 03:12:55 +0100 Subject: [PATCH] Link windows-sys crate 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. --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index da5a64f2e1083..9b02a3cdccdd9 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 ## v1.0 Roadmap