Lines Matching refs:func
64 #define INTERCEPT_FUNCTION_WIN(func) \ argument
65 ::__interception::OverrideFunction(#func, \
66 (::__interception::uptr)WRAP(func), \
67 (::__interception::uptr *)&REAL(func))
69 #define INTERCEPT_FUNCTION_WIN(func) \ argument
70 ::__interception::OverrideFunction((::__interception::uptr)func, \
71 (::__interception::uptr)WRAP(func), \
72 (::__interception::uptr *)&REAL(func))
75 #define INTERCEPT_FUNCTION_VER_WIN(func, symver) INTERCEPT_FUNCTION_WIN(func) argument
77 #define INTERCEPT_FUNCTION_DLLIMPORT(user_dll, provider_dll, func) \ argument
79 user_dll, provider_dll, #func, (::__interception::uptr)WRAP(func), \
80 (::__interception::uptr *)&REAL(func))