sandbox_globals.cc 512 B

123456789101112131415161718
  1. // Copyright 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. #include <windows.h>
  5. #include "sandbox/win/src/sandbox_nt_types.h"
  6. #include "sandbox/win/src/sandbox_types.h"
  7. namespace sandbox {
  8. // The section for IPC and policy.
  9. SANDBOX_INTERCEPT HANDLE g_shared_section = nullptr;
  10. // This is the list of all imported symbols from ntdll.dll.
  11. SANDBOX_INTERCEPT NtExports g_nt = {};
  12. } // namespace sandbox