From a18ecfd633e9d94ccf5dbf03dda6317bfa42de2b Mon Sep 17 00:00:00 2001 From: t-h-i-s-u-s-e-r-n-a-m-e-i-s-c-a-n-c-e-r <88607531+t-h-i-s-u-s-e-r-n-a-m-e-i-s-c-a-n-c-e-r@users.noreply.github.com> Date: Sun, 8 Aug 2021 07:48:32 +0200 Subject: [PATCH] add access() --- core/include/db_manager.h | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/core/include/db_manager.h b/core/include/db_manager.h index fcc5f4a..1d3bd21 100644 --- a/core/include/db_manager.h +++ b/core/include/db_manager.h @@ -30,6 +30,17 @@ #include #include +#if defined(_WIN32) + #include + #define access(pathname, mode) _access(pathname, mode) + +#elif __unix__ + #include + +#else + #define access(pathname, mode) 1 + +#endif /** * @brief A class used to handle database interaction. *