mirror of
https://github.com/klezVirus/ThreadPoolExecChain
synced 2026-06-08 15:20:22 +00:00
9 lines
374 B
C
9 lines
374 B
C
#pragma once
|
|
#pragma once
|
|
#include <windows.h>
|
|
#include <stdio.h>
|
|
|
|
void* find_pattern_masked(const void* haystack, size_t haystack_size, const unsigned char* pattern, const unsigned char* mask, size_t pattern_len);
|
|
void* find_pattern_in_module(HMODULE hmod, const unsigned char* pattern, const unsigned char* mask, size_t pattern_len);
|
|
|
|
void* find_address_to_push(); |