Skip to content

Commit d10cf7f

Browse files
committed
Rename QUEUE_USER_APC_CALLBACK_DATA_CONTEXT to QUEUE_USER_APC_FLAGS_CALLBACK_DATA_CONTEXT
Renamed in winsiderss/systeminformer@1c5ce28
1 parent 9f2abb6 commit d10cf7f

4 files changed

+3
-3
lines changed

descriptions/ntqueueapcthreadex2.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Queues a user-mode Asynchronous Procedure Call (APC) on the specified thread.
1212
# Supported flags
1313
- `QUEUE_USER_APC_FLAGS_NONE` - indicates that none of the flags listed below are used. The behavior defaults to regular APCs that require the thread to first enter an alertable wait via `NtDelayExecution` (or a similar function) or call `NtTestAlert`.
1414
- `QUEUE_USER_APC_FLAGS_SPECIAL_USER_APC` - queue a *special user-mode APC* that does not require the thread to enter an alertable state. The APC will be executed on the next thread's transition to user mode.
15-
- `QUEUE_USER_APC_CALLBACK_DATA_CONTEXT` - let the callback routine receive the context (set of registers) that was interrupted when the thread was directed to call the APC function.
15+
- `QUEUE_USER_APC_FLAGS_CALLBACK_DATA_CONTEXT` - let the callback routine receive the context (set of registers) that was interrupted when the thread was directed to call the APC function.
1616

1717
# Remarks
1818
To queue a WoW64 APC, encode the `ApcRoutine` parameter using the `Wow64EncodeApcRoutine` macro or use `RtlQueueApcWow64Thread`.

descriptions/queue_user_apc_flags_none.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This flags indicates the absence of other APC flags. The behavior defaults to re
55

66
# Related flags
77
- `QUEUE_USER_APC_FLAGS_SPECIAL_USER_APC`
8-
- `QUEUE_USER_APC_CALLBACK_DATA_CONTEXT`
8+
- `QUEUE_USER_APC_FLAGS_CALLBACK_DATA_CONTEXT`
99

1010
# Required OS version
1111
This flag was introduced in Windows 11.

descriptions/queue_user_apc_flags_special_user_apc.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This flags indicates the use of a *special user-mode APC* that does not require
55

66
# Related flags
77
- `QUEUE_USER_APC_FLAGS_NONE`
8-
- `QUEUE_USER_APC_CALLBACK_DATA_CONTEXT`
8+
- `QUEUE_USER_APC_FLAGS_CALLBACK_DATA_CONTEXT`
99

1010
# Remarks
1111
For the introduction to special user-mode APCs, see [this blog post](https://repnz.github.io/posts/apc/user-apc/#ntqueueapcthreadex-meet-special-user-apc).

0 commit comments

Comments
 (0)