summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHwankyu Jhun <h.jhun@samsung.com>2023-11-15 18:10:56 +0900
committerHwankyu Jhun <h.jhun@samsung.com>2023-11-15 18:10:56 +0900
commit7bb01866109c5d97569920b24f4c87cc6abe4921 (patch)
tree3b07c650f1a9331db408aad25caac0e601eedfff
parent740b9495342dc08cc3e60ca671440c276e571f49 (diff)
downloadaul-1-7bb01866109c5d97569920b24f4c87cc6abe4921.tar.gz
aul-1-7bb01866109c5d97569920b24f4c87cc6abe4921.tar.bz2
aul-1-7bb01866109c5d97569920b24f4c87cc6abe4921.zip
Add a missing header file
Adds: - pkginfo_internal.h Change-Id: I920b6e09fe1e648467318ea976eb8b7e9169bb6d Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
-rw-r--r--src/pkginfo_internal.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/pkginfo_internal.h b/src/pkginfo_internal.h
new file mode 100644
index 00000000..c47901a3
--- /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 <stdbool.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+bool aul_is_calling_appinfo_cb();
+
+#ifdef __cplusplus
+}
+#endif