C++程序  |  16行  |  458 B

// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CHROME_ELF_NTDLL_CACHE_H_
#define CHROME_ELF_NTDLL_CACHE_H_

#include "chrome_elf/chrome_elf_types.h"

// Caches the addresses of all functions exported by ntdll in  |g_ntdll_lookup|.
void InitCache();

extern FunctionLookupTable g_ntdll_lookup;

#endif  // CHROME_ELF_NTDLL_CACHE_H_