mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-28 02:30:05 +00:00
Added HTTP header retrieval functionality to the URL class. More drawable and Jucer development.
This commit is contained in:
parent
4537a6ec01
commit
1b6eb960e3
47 changed files with 1383 additions and 439 deletions
|
|
@ -2763,6 +2763,9 @@ void juce_updateMultiMonitorInfo (Array <Rectangle<int> >& monitorCoords, const
|
|||
{
|
||||
void* h = dlopen ("libXinerama.so", RTLD_GLOBAL | RTLD_NOW);
|
||||
|
||||
if (h == 0)
|
||||
h = dlopen ("libXinerama.so.1", RTLD_GLOBAL | RTLD_NOW);
|
||||
|
||||
if (h != 0)
|
||||
{
|
||||
xXineramaIsActive = (tXineramaIsActive) dlsym (h, "XineramaIsActive");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue