Lines Matching refs:func
65 #define INTERCEPT_FUNCTION_WIN(func) \ argument
66 ::__interception::OverrideFunction(#func, \
67 (::__interception::uptr)WRAP(func), \
68 (::__interception::uptr *)&REAL(func))
70 #define INTERCEPT_FUNCTION_WIN(func) \ argument
71 ::__interception::OverrideFunction((::__interception::uptr)func, \
72 (::__interception::uptr)WRAP(func), \
73 (::__interception::uptr *)&REAL(func))
76 #define INTERCEPT_FUNCTION_VER_WIN(func, symver) INTERCEPT_FUNCTION_WIN(func) argument
78 #define INTERCEPT_FUNCTION_DLLIMPORT(user_dll, provider_dll, func) \ argument
80 user_dll, provider_dll, #func, (::__interception::uptr)WRAP(func), \
81 (::__interception::uptr *)&REAL(func))