1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-17 00:44:19 +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

@ -458,6 +458,17 @@ int64 juce_getInternetFileContentLength (void* handle)
return -1;
}
void juce_getInternetFileHeaders (void* handle, StringPairArray& headers)
{
JUCE_HTTPSocketStream* const s = (JUCE_HTTPSocketStream*) handle;
if (s != 0)
{
// xxx todo
jassertfalse;
}
}
int juce_seekInInternetFile (void* handle, int newPosition)
{
JUCE_HTTPSocketStream* const s = (JUCE_HTTPSocketStream*) handle;