Fix NtQueueApcThreadEx

This commit is contained in:
momo5502
2025-04-13 13:50:44 +02:00
parent a3f811a466
commit 30e77f5f9a
2 changed files with 20 additions and 2 deletions

View File

@@ -109,4 +109,13 @@ typedef struct _KCONTINUE_ARGUMENT
#define KCONTINUE_FLAG_TEST_ALERT 0x00000001
#define KCONTINUE_FLAG_DELIVER_APC 0x00000002
#ifndef OS_WINDOWS
typedef enum _QUEUE_USER_APC_FLAGS
{
QUEUE_USER_APC_FLAGS_NONE,
QUEUE_USER_APC_FLAGS_SPECIAL_USER_APC,
QUEUE_USER_APC_CALLBACK_DATA_CONTEXT
} QUEUE_USER_APC_FLAGS;
#endif
// NOLINTEND(modernize-use-using,cppcoreguidelines-avoid-c-arrays,hicpp-avoid-c-arrays,modernize-avoid-c-arrays)