mirror of
https://github.com/repnz/apc-research
synced 2026-06-08 17:06:23 +00:00
18 lines
204 B
C
18 lines
204 B
C
#include <windows.h>
|
|
#include <stdio.h>
|
|
|
|
VOID
|
|
WINAPI
|
|
ApcCode(
|
|
ULONG_PTR dwData
|
|
)
|
|
{
|
|
printf("32 bit code!\n");
|
|
}
|
|
|
|
int main()
|
|
{
|
|
QueueUserAPC(ApcCode, GetCurrentThread(), 0);
|
|
|
|
SleepEx(INFINITE, TRUE);
|
|
} |