|
|
@ -27,7 +27,8 @@ languages consistent. |
|
|
|
9. [Function Prototypes](#function-prototypes) |
|
|
|
9. [Function Prototypes](#function-prototypes) |
|
|
|
10. [Section](#section) |
|
|
|
10. [Section](#section) |
|
|
|
11. [Type Declarations](#type-declarations) |
|
|
|
11. [Type Declarations](#type-declarations) |
|
|
|
12. [Project Organization](#project-organization) |
|
|
|
12. [Alignment](#alignment) |
|
|
|
|
|
|
|
13. [Project Organization](#project-organization) |
|
|
|
|
|
|
|
|
|
|
|
## Getting Started |
|
|
|
## Getting Started |
|
|
|
|
|
|
|
|
|
|
@ -241,6 +242,22 @@ Examples: |
|
|
|
; ... |
|
|
|
; ... |
|
|
|
``` |
|
|
|
``` |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Alignment |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Prefer to keep type declarations and instantiations aligned. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Example: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
```asm |
|
|
|
|
|
|
|
.DATA |
|
|
|
|
|
|
|
ClassName db "WinClass", 0 |
|
|
|
|
|
|
|
AppName db "Window", 0 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.DATA? |
|
|
|
|
|
|
|
hInstance HINSTANCE ? |
|
|
|
|
|
|
|
CommandLine LPSTR ? |
|
|
|
|
|
|
|
``` |
|
|
|
|
|
|
|
|
|
|
|
### Project Organization |
|
|
|
### Project Organization |
|
|
|
|
|
|
|
|
|
|
|
TODO |
|
|
|
TODO |
|
|
|