|
|
@ -100,8 +100,9 @@ TODO |
|
|
|
|
|
|
|
|
|
|
|
### Include Ordering |
|
|
|
### Include Ordering |
|
|
|
|
|
|
|
|
|
|
|
As a matter of style, prefer to put all `.inc` files together and all `.lib` files together. Sort them alphabetically, |
|
|
|
As a matter of style, `.inc` files should be ordered system includes first and then project includes separated by a single blank line. |
|
|
|
and separate them by a single blank line. |
|
|
|
|
|
|
|
|
|
|
|
Sort them alphabetically, and separate them by a single blank line. |
|
|
|
|
|
|
|
|
|
|
|
Example: |
|
|
|
Example: |
|
|
|
|
|
|
|
|
|
|
@ -110,6 +111,8 @@ include \masm32\include\kernel32.inc |
|
|
|
include \masm32\include\user32.inc |
|
|
|
include \masm32\include\user32.inc |
|
|
|
include \masm32\include\windows.inc |
|
|
|
include \masm32\include\windows.inc |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
include projectinclude.inc |
|
|
|
|
|
|
|
|
|
|
|
includelib \masm32\include\kernel32.lib |
|
|
|
includelib \masm32\include\kernel32.lib |
|
|
|
includelib \masm32\include\user32.lib |
|
|
|
includelib \masm32\include\user32.lib |
|
|
|
``` |
|
|
|
``` |
|
|
|