You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+15-2Lines changed: 15 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
# Guidelines
2
2
3
3
* Never get definitions from MinGW headers or MSDN. Always stick to the Windows SDK headers, in
4
-
particular the latest Windows 10 SDK.
4
+
particular the latest Windows 10 SDK — you can find it [here](https://developer.microsoft.com/en-us/windows/downloads/windows-10-sdk). Look for a folder called "Include" inside the installed SDK to find the header (and other) files.
5
5
* Definitions which depend on whether `UNICODE` is defined should not be included. It is the user's
6
6
responsibility to explicitly choose between `W` and `A` functions (and they should always choose
7
7
`W`).
@@ -98,9 +98,12 @@ FN!{stdcall NAMEENUMPROCA(
98
98
cast must be performed, do the cast using the primitive integer types.
99
99
* If the constant is a pointer that is initialized to a negative literal, do `-1isize as LPFOO`.
0 commit comments