blob: 0c6eff164cde03dd2ce956a714c22b0a44e46426 [file] [log] [blame]
// Copyright 2016 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 SANDBOX_TESTS_INTEGRATION_TESTS_COMMON_H_
#define SANDBOX_TESTS_INTEGRATION_TESTS_COMMON_H_
#include <windows.h>
namespace sandbox {
//------------------------------------------------------------------------------
// Common - for sharing between source files.
//------------------------------------------------------------------------------
enum TestPolicy {
TESTPOLICY_DEP = 1,
TESTPOLICY_ASLR,
TESTPOLICY_STRICTHANDLE,
TESTPOLICY_WIN32K,
TESTPOLICY_EXTENSIONPOINT,
TESTPOLICY_NONSYSFONT,
TESTPOLICY_LOADNOREMOTE,
TESTPOLICY_LOADNOLOW,
};
// Timeout for ::WaitForSingleObject synchronization.
DWORD SboxTestEventTimeout();
} // namespace sandbox
#endif // SANDBOX_TESTS_INTEGRATION_TESTS_COMMON_H_