summaryrefslogtreecommitdiff
path: root/src/lib/launchpad-common/aul_keys.hh
blob: de54fbf0d01cd17ba060461fc57bde4c6f1fca33 (plain)
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
51
52
53
54
55
56
57
58
59
60
61
/*
 * Copyright (c) 2023 Samsung Electronics Co., Ltd All Rights Reserved
 *
 * Licensed under the Apache License, Version 2.0 (the License);
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an AS IS BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#ifndef LIB_LAUNCHPAD_COMMON_AUL_KEYS_HH_
#define LIB_LAUNCHPAD_COMMON_AUL_KEYS_HH_

namespace launchpad {

constexpr const char kAulApiVersion[] = "__AUL_API_VERSION__";
constexpr const char kAulAppId[] = "__AUL_APPID__";
constexpr const char kAulAppType[] = "__AUL_APP_TYPE__";
constexpr const char kAulCallerPid[] = "__AUL_CALLER_PID__";
constexpr const char kAulCompType[] = "__AUL_COMP_TYPE__";
constexpr const char kAulDebug[] = "__AUL_DEBUG__";
constexpr const char kAulEnabledLightUser[] = "__AUL_ENABLED_LIGHT_USER__";
constexpr const char kAulExec[] = "__AUL_EXEC__";
constexpr const char kAulFastLaunch[] = "__AUL_FAST_LAUNCH__";
constexpr const char kAulHighPriority[] = "__AUL_HIGHPRIORITY__";
constexpr const char kAulHwAcc[] = "__AUL_HWACC__";
constexpr const char kAulInstalledStorage[] = "__AUL_INSTALLED_STORAGE__";
constexpr const char kAulInternalPool[] = "__AUL_INTERNAL_POOL__";
constexpr const char kAulIsGlobal[] = "__AUL_IS_GLOBAL__";
constexpr const char kAulIsInstalled[] = "__AUL_IS_INSTALLED__";
constexpr const char kAulLoaderExtra[] = "__AUL_LOADER_EXTRA__";
constexpr const char kAulLoaderId[] = "__AUL_LOADER_ID__";
constexpr const char kAulLoaderName[] = "__AUL_LOADER_NAME__";
constexpr const char kAulLoaderPath[] = "__AUL_LOADER_PATH__";
constexpr const char kAulMountAllowedResDir[] = "__AUL_MOUNT_ALLOWED_RES_DIR__";
constexpr const char kAulMountGlobalResDir[] =  "__AUL_MOUNT_GLOBAL_RES_DIR__";
constexpr const char kAulMultipleInstanceAppId[] =
    "__AUL_MULTIPLE_INSTANCE_APPID__";
constexpr const char kAulOrgCallerPid[] = "__AUL_ORG_CALLER_PID__";
constexpr const char kAulPackageType[] = "__AUL_PACKAGETYPE__";
constexpr const char kAulPid[] = "__AUL_PID__";
constexpr const char kAulPkgId[] = "__AUL_PKGID_";
constexpr const char kAulRootPath[] = "__AUL_ROOT_PATH__";
constexpr const char kAulSdk[] = "__AUL_SDK__";
constexpr const char kAulStarttime[] = "__AUL_STARTTIME__";
constexpr const char kAulTaskManage[] = "__AUL_TASKMANAGE__";
constexpr const char kAulTepPath[] = "__AUL_TEP_PATH__";
constexpr const char kAulWaylandDisplay[] = "__AUL_WAYLAND_DISPLAY__";
constexpr const char kAulWaylandWorkingDir[] = "__AUL_WAYLAND_WORKING_DIR__";
constexpr const char kAulMountGadgetPaths[] = "__AUL_MOUNT_GADGET_PATHS__";
constexpr const char kAulMountGadgetPkgIds[] = "__AUL_MOUNT_GADGET_PKGIDS__";

}  // namespace launchpad

#endif  // LIB_LAUNCHPAD_COMMON_AUL_KEYS_HH_