1
0
Fork 0
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:
Julian Storer 2010-05-25 14:31:50 +01:00
parent 4537a6ec01
commit 1b6eb960e3
47 changed files with 1383 additions and 439 deletions

View file

@ -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");