tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

static_constants.h (658B)


      1 // Copyright 2019 The Chromium Authors
      2 // Use of this source code is governed by a BSD-style license that can be
      3 // found in the LICENSE file.
      4 
      5 // Defines constants needed before imports (like base.dll) are fully resolved.
      6 // For example, constants defined here can be used by interceptions (i.e. hooks)
      7 // in the sandbox, which run before imports are resolved, and can therefore only
      8 // reference static variables.
      9 
     10 #ifndef BASE_WIN_STATIC_CONSTANTS_H_
     11 #define BASE_WIN_STATIC_CONSTANTS_H_
     12 
     13 namespace base {
     14 namespace win {
     15 
     16 extern const char kApplicationVerifierDllName[];
     17 
     18 }  // namespace win
     19 }  // namespace base
     20 
     21 #endif  // BASE_WIN_STATIC_CONSTANTS_H_