• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef CRAZY_LINKER_WRAPPERS_H
6 #define CRAZY_LINKER_WRAPPERS_H
7 
8 namespace crazy {
9 
10 // If |symbol_name| is the name of a linker-specific symbol name, like
11 // 'dlopen' or 'dlsym', return the address of the corresponding wrapper.
12 // Return NULL otherwise.
13 void* WrapLinkerSymbol(const char* symbol_name);
14 
15 }  // namespace crazy
16 
17 #endif  // CRAZY_LINKER_WRAPPERS_H
18