Match-id-515db564370c501883bd877581f460290f764189

This commit is contained in:
BianTanggui
2020-05-27 16:42:58 +08:00
parent 6ba728cbb3
commit 45a23dceae
224 changed files with 67778 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
#ifndef __MOCKCPP_API_HOOK_H__
#define __MOCKCPP_API_HOOK_H__
#include <mockcpp/mockcpp.h>
MOCKCPP_NS_START
struct ApiHookImpl;
struct ApiHook
{
ApiHook ( const void* api
, const void* stub );
~ApiHook();
private:
ApiHookImpl* This;
};
MOCKCPP_NS_END
#endif