add missing file

This commit is contained in:
essej 2022-04-19 22:02:09 -04:00
parent 8ae5a82c99
commit a8dd5e649d

View File

@ -0,0 +1,17 @@
// SPDX-License-Identifier: GPLv3-or-later WITH Appstore-exception
// Copyright (C) 2020 Jesse Chappell
#include "CrossPlatformUtils.h"
#include "../JuceLibraryCode/JuceHeader.h"
#if JUCE_LINUX
void getSafeAreaInsets(void * component, float & top, float & bottom, float & left, float & right, int & notchPos)
{
top = bottom = left = right = notchPos = 0;
}
#endif