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:
parent
4537a6ec01
commit
1b6eb960e3
47 changed files with 1383 additions and 439 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue