From a12521ffd31b3a9ecbf587fa8b446d7406c477e5 Mon Sep 17 00:00:00 2001 From: Mario Kneidinger Date: Wed, 15 May 2019 21:28:23 +0200 Subject: [PATCH] Changed "Windows Internal Library" to "Windows Implementation Library" (#827) --- doc/STYLE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/STYLE.md b/doc/STYLE.md index 5deb15d6b2..5b197dd8c6 100644 --- a/doc/STYLE.md +++ b/doc/STYLE.md @@ -3,5 +3,5 @@ ## Philosophy 1. If it's inserting something into the existing classes/functions, try to follow the existing style as closely as possible. 1. If it's brand new code or refactoring a complete class or area of the code, please follow as Modern C++ of a style as you can and reference the [C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines) as much as you possibly can. -1. When working with any Win32 or NT API, please try to use the [Windows Internal Library](./WIL.md) smart pointers and result handlers. +1. When working with any Win32 or NT API, please try to use the [Windows Implementation Library](./WIL.md) smart pointers and result handlers. 1. The use of NTSTATUS as a result code is discouraged, HRESULT or exceptions are preferred. Functions should not return a status code if they would always return a successful status code. Any function that returns a status code should be marked `noexcept` and have the `nodiscard` attribute.