static_constants.h 680 B

123456789101112131415161718192021
  1. // Copyright 2019 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. // Defines constants needed before imports (like base.dll) are fully resolved.
  5. // For example, constants defined here can be used by interceptions (i.e. hooks)
  6. // in the sandbox, which run before imports are resolved, and can therefore only
  7. // reference static variables.
  8. #ifndef BASE_WIN_STATIC_CONSTANTS_H_
  9. #define BASE_WIN_STATIC_CONSTANTS_H_
  10. namespace base {
  11. namespace win {
  12. extern const char kApplicationVerifierDllName[];
  13. } // namespace win
  14. } // namespace base
  15. #endif // BASE_WIN_STATIC_CONSTANTS_H_