From 7bb01866109c5d97569920b24f4c87cc6abe4921 Mon Sep 17 00:00:00 2001 From: Hwankyu Jhun Date: Wed, 15 Nov 2023 18:10:56 +0900 Subject: [PATCH] Add a missing header file Adds: - pkginfo_internal.h Change-Id: I920b6e09fe1e648467318ea976eb8b7e9169bb6d Signed-off-by: Hwankyu Jhun --- src/pkginfo_internal.h | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/pkginfo_internal.h diff --git a/src/pkginfo_internal.h b/src/pkginfo_internal.h new file mode 100644 index 0000000..c47901a --- /dev/null +++ b/src/pkginfo_internal.h @@ -0,0 +1,29 @@ +/* + * 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. + */ + +#pragma once + +#include + +#ifdef __cplusplus +extern "C" { +#endif + +bool aul_is_calling_appinfo_cb(); + +#ifdef __cplusplus +} +#endif -- 2.7.4