Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Everything as it (hopefully) should be #15

Merged
merged 26 commits into from
Feb 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions descriptions/ntcreatefile.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,10 @@ Buffer for Extended Attributes contains one or more of `FILE_FULL_EA_INFORMATION

Length of `EaBuffer`.

# Related Win32 API
- [`CreateFileA`](https://learn.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-createfilea)
- [`CreateFileW`](https://learn.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-createfilew)

# Documented by

* Tomasz Nowak
Expand Down
1 change: 1 addition & 0 deletions descriptions/ntdelayexecution.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Despite the name, `NtAlertThreadByThreadId` is unrelated to alertable sleeps and

# Related Win32 API
- [`SleepEx`](https://learn.microsoft.com/en-us/windows/win32/api/synchapi/nf-synchapi-sleepex)
- [`Sleep`](https://learn.microsoft.com/en-us/windows/win32/api/synchapi/nf-synchapi-sleep)

# See also
- `NtWaitForSingleObject`
Expand Down
3 changes: 3 additions & 0 deletions descriptions/ntdeletefile.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ Example: \
If you have only file name as Unicode string, use it as **ObjectName**. \
If you have only a `HANDLE` to file, set it as **RootDirectory**. Set **ObjectName** as empty string.

# Related Win32 API
- [`DeleteFile`](https://learn.microsoft.com/en-us/windows/win32/api/winbase/nf-winbase-deletefile) (Although it does more than just forwarding the arguments and invoking this procedure.)

# Documented by

* Tomasz Nowak
Expand Down
1 change: 0 additions & 1 deletion descriptions/ntqueryperformancecounter.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,3 @@ Another method of `uptime` calculation:

* Sven B. Schreiber
* Tomasz Nowak
* Wojciech Dudek
3 changes: 3 additions & 0 deletions descriptions/ntreadfile.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ Offset from beginning of file, in bytes.

??? (In my opinion: use this, if you previously lock file, and now you want read it, but without unlocking).

# Related Win32 API
- [`ReadFile`](https://learn.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-readfile) (Although it does more than just forwarding the arguments and invoking this procedure.)

# Documented by

* Tomasz Nowak
Expand Down
3 changes: 3 additions & 0 deletions descriptions/ntwritefile.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ Offset from beginning of file, where write starts.

??? (See `NtReadFile`).

# Related Win32 API
- [`WriteFile`](https://learn.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-writefile) (Although it does more than just forwarding the arguments and invoking this procedure.)

# Documented by

* Tomasz Nowak
Expand Down
Loading