add missing file

This commit is contained in:
Jesse Chappell 2022-04-15 10:54:39 -04:00
parent 82bfca1198
commit 681dc4de6b

View File

@ -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