1 //===-- interception_linux.h ------------------------------------*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file is a part of AddressSanitizer, an address sanity checker.
12 // Windows-specific interception methods.
13 //===----------------------------------------------------------------------===//
17 #if !defined(INCLUDED_FROM_INTERCEPTION_LIB)
18 # error "interception_win.h should be included from interception library only"
21 #ifndef INTERCEPTION_WIN_H
22 #define INTERCEPTION_WIN_H
24 namespace __interception
{
25 // returns true if a function with the given name was found.
26 bool GetRealFunctionAddress(const char *func_name
, uptr
*func_addr
);
28 // returns true if the old function existed, false on failure.
29 bool OverrideFunction(uptr old_func
, uptr new_func
, uptr
*orig_old_func
);
30 } // namespace __interception
33 # define INTERCEPT_FUNCTION_WIN(func) \
34 ::__interception::GetRealFunctionAddress( \
35 #func, (::__interception::uptr*)&REAL(func))
37 # define INTERCEPT_FUNCTION_WIN(func) \
38 ::__interception::OverrideFunction( \
39 (::__interception::uptr)func, \
40 (::__interception::uptr)WRAP(func), \
41 (::__interception::uptr*)&REAL(func))
44 #define INTERCEPT_FUNCTION_VER_WIN(func, symver) \
45 INTERCEPT_FUNCTION_WIN(func)
47 #endif // INTERCEPTION_WIN_H