mirror of
https://github.com/vgeorgiev90/CallStackSpoof
synced 2026-06-06 16:54:33 +00:00
27 lines
393 B
C
27 lines
393 B
C
#pragma once
|
|
#include <windows.h>
|
|
#include <stdio.h>
|
|
#include <structs.h>
|
|
#include <time.h>
|
|
|
|
|
|
|
|
// max size of the gadget array
|
|
#define GADGETS_MAX 16
|
|
|
|
|
|
#define DEBUG
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Conditional debug
|
|
#ifdef DEBUG
|
|
#define DEBUG_PRINT(...) printf(__VA_ARGS__)
|
|
#define WDEBUG_PRINT(...) wprintf(__VA_ARGS__)
|
|
#else
|
|
#define DEBUG_PRINT(...) do {} while (0)
|
|
#define WDEBUG_PRINT(...) do {} while (0)
|
|
#endif |