Add util source and header with functions used in multiple locations.

This commit is contained in:
Dr!fter
2016-08-30 16:39:33 -04:00
parent 3f62ff4faf
commit c3bc30ece3
2 changed files with 58 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#ifndef _INCLUDE_UTIL_FUNCTIONS_H_
#define _INCLUDE_UTIL_FUNCTIONS_H_
#include "vhook.h"
size_t GetParamOffset(HookParamsStruct *params, unsigned int index);
void * GetObjectAddr(HookParamType type, unsigned int flags, void **params, size_t offset);
size_t GetParamTypeSize(HookParamType type);
size_t GetParamsSize(DHooksCallback *dg);
#endif