diff --git a/descriptions/ntcreatefile.md b/descriptions/ntcreatefile.md index 3cc49a94e61..64a669020a1 100644 --- a/descriptions/ntcreatefile.md +++ b/descriptions/ntcreatefile.md @@ -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 diff --git a/descriptions/ntdelayexecution.md b/descriptions/ntdelayexecution.md index 3d1eb411ea8..edd55082060 100644 --- a/descriptions/ntdelayexecution.md +++ b/descriptions/ntdelayexecution.md @@ -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` diff --git a/descriptions/ntdeletefile.md b/descriptions/ntdeletefile.md index 635d88c19c2..af3a12968e1 100644 --- a/descriptions/ntdeletefile.md +++ b/descriptions/ntdeletefile.md @@ -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 diff --git a/descriptions/ntqueryperformancecounter.md b/descriptions/ntqueryperformancecounter.md index 289e29b794c..3778058bc28 100644 --- a/descriptions/ntqueryperformancecounter.md +++ b/descriptions/ntqueryperformancecounter.md @@ -24,4 +24,3 @@ Another method of `uptime` calculation: * Sven B. Schreiber * Tomasz Nowak -* Wojciech Dudek diff --git a/descriptions/ntreadfile.md b/descriptions/ntreadfile.md index efc05b68768..6baf9ba2140 100644 --- a/descriptions/ntreadfile.md +++ b/descriptions/ntreadfile.md @@ -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 diff --git a/descriptions/ntwritefile.md b/descriptions/ntwritefile.md index 5cbc33e56c3..85d729b421f 100644 --- a/descriptions/ntwritefile.md +++ b/descriptions/ntwritefile.md @@ -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