paulxstretch/Source/CrossPlatformUtilsLinux.cpp

18 lines
375 B
C++
Raw Normal View History

2022-04-20 02:02:09 +00:00
// 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