From 681dc4de6b2d6ef31d0f0496f721f75ff41ee0b0 Mon Sep 17 00:00:00 2001 From: Jesse Chappell Date: Fri, 15 Apr 2022 10:54:39 -0400 Subject: [PATCH] add missing file --- Source/CrossPlatformUtilsWindows.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Source/CrossPlatformUtilsWindows.cpp diff --git a/Source/CrossPlatformUtilsWindows.cpp b/Source/CrossPlatformUtilsWindows.cpp new file mode 100644 index 0000000..15e6bec --- /dev/null +++ b/Source/CrossPlatformUtilsWindows.cpp @@ -0,0 +1,18 @@ +// SPDX-License-Identifier: GPLv3-or-later WITH Appstore-exception +// Copyright (C) 2020 Jesse Chappell + + +#include "CrossPlatformUtils.h" + +#include "../JuceLibraryCode/JuceHeader.h" + +#if JUCE_WINDOWS + + + +void getSafeAreaInsets(void * component, float & top, float & bottom, float & left, float & right, int& notchPos) +{ + top = bottom = left = right = notchPos = 0; +} + +#endif