-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
16 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,21 @@ | ||
# TemplateWindows (MASM x64) | ||
A barebones template project to compile MASM x64 code for the Windows subsystem. It does not depend on any library nor SDK, so any dependency should be hand coded or added manually to the project configuration file. | ||
# Library64 | ||
A collection of common procedures used by the projects in the repository. These are: | ||
|
||
* `GetCharA`: retrieves the keyboard pressed by the user (ANSI). | ||
* `GetCharW`: retrieves the keyboard pressed by the user (Unicode). | ||
* `GetStdHandleIn`: retrieves the handle to the standard input device. | ||
* `GetStdHandleOut`: retrieves the handle to the standard output device. | ||
* `StructInit`: initializes a struct with 0. | ||
* `StrCompareA`: compares two 1-byte strings (ANSI). | ||
* `StrCompareW`: compares two 2-byte strings (Unicode). | ||
* `StrCopyA`: copies a 1-byte string (ANSI). | ||
* `StrCopyW`: copies a 2-byte string (Unicode). | ||
* `StrLengthA`: computes the length of a 1-byte null-terminated string (ANSI). | ||
* `StrLengthW`: computes the length of a 2-byte null-terminated string (Unicode). | ||
* `WaitKey`: waits for the user to press any key. | ||
|
||
Copyright © 2021 by Arthurits Ltd. No commercial nor profit use allowed. This software is provided only for personal and not-for-profit use. | ||
Download latest release: [![GitHub release (latest by date)](https://img.shields.io/github/v/release/arthurits/AssemblySnippets)](https://github.com/arthurits/AssemblySnippets/releases) | ||
|
||
## License | ||
Free for personal use. | ||
No commercial use allowed. | ||
Free for personal use and not-for-profit use. No commercial use allowed. |