forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmini_installer_constants.h
50 lines (40 loc) · 1.73 KB
/
mini_installer_constants.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_INSTALLER_MINI_INSTALLER_MINI_INSTALLER_CONSTANTS_H_
#define CHROME_INSTALLER_MINI_INSTALLER_MINI_INSTALLER_CONSTANTS_H_
namespace mini_installer {
// Various filenames and prefixes.
extern const wchar_t kSetupExe[];
extern const wchar_t kChromeArchivePrefix[];
extern const wchar_t kSetupPrefix[];
// Unprefixed command line switch names for setup.exe.
extern const wchar_t kCmdInstallArchive[];
extern const wchar_t kCmdUncompressedArchive[];
extern const wchar_t kCmdUpdateSetupExe[];
extern const wchar_t kCmdNewSetupExe[];
extern const wchar_t kCmdPreviousVersion[];
extern const wchar_t kTempPrefix[];
extern const wchar_t kFullInstallerSuffix[];
// The resource types that would be unpacked from the mini installer.
extern const wchar_t kBinResourceType[];
#if defined(COMPONENT_BUILD)
extern const wchar_t kDepResourceType[];
#endif
extern const wchar_t kLZCResourceType[];
extern const wchar_t kLZMAResourceType[];
// Registry value names.
extern const wchar_t kApRegistryValue[];
extern const wchar_t kCleanupRegistryValue[];
extern const wchar_t kInstallerErrorRegistryValue[];
extern const wchar_t kInstallerExtraCode1RegistryValue[];
extern const wchar_t kInstallerResultRegistryValue[];
extern const wchar_t kPvRegistryValue[];
extern const wchar_t kUninstallArgumentsRegistryValue[];
extern const wchar_t kUninstallRegistryValue[];
// Registry key paths.
extern const wchar_t kClientsKeyBase[];
extern const wchar_t kClientStateKeyBase[];
extern const wchar_t kCleanupRegistryKey[];
} // namespace mini_installer
#endif // CHROME_INSTALLER_MINI_INSTALLER_MINI_INSTALLER_CONSTANTS_H_