Files
wufuc/wufuc/patchwua.h
zeffy 6934a7cb1b fix
2017-11-30 01:21:57 -08:00

12 lines
311 B
C

#pragma once
typedef struct tagPatchSet
{
const char *Pattern;
const size_t Offset1;
const size_t Offset2;
} PatchSet;
bool calculate_pointers(uintptr_t lpfn, const PatchSet *ps, LPBOOL *ppba, LPBOOL *ppbb);
bool patch_wua(void *lpBaseOfDll, size_t SizeOfImage, const wchar_t *fname);