This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
# License: MPL-2.0 | |
# Text: https://www.mozilla.org/en-US/MPL/2.0/ | |
#> | |
<# | |
.SYNOPSIS | |
Determines the VST plugin type by analyzing the DLL exports. | |
.DESCRIPTION | |
Analyzes a DLL file to determine if it is a VST2 or VST3 plugin by examining its exports. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* License: MPL 2.0 | |
* Text: https://www.mozilla.org/en-US/MPL/2.0/ | |
*/ | |
import android.util.Log | |
import kotlinx.coroutines.Dispatchers | |
import kotlinx.coroutines.withContext | |
import java.net.DatagramPacket | |
import java.net.DatagramSocket |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Licensed under the BSD-3-Clause-Clear license. | |
* The license text in enclosed in the comment section. | |
*/ | |
/** | |
* The idea is to use the hidden SYSTEM_LOCALES ("system_locales") setting | |
* to get the currently displayed locale. Although the documentation says | |
* that one must use `LocaleList.getDefault` instead, I couldn't really |