mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-09-24 15:54:12 +00:00
39 lines
992 B
C++
39 lines
992 B
C++
#include "RenameDownloader.h"
|
|
#include "api.h"
|
|
#include "../nu/AutoUrl.h"
|
|
#include "main.h"
|
|
#include "../../..\Components\wac_network\wac_network_http_receiver_api.h"
|
|
#include <strsafe.h>
|
|
|
|
class PingCallback : public ifc_downloadManagerCallback
|
|
{
|
|
public:
|
|
void OnInit(DownloadToken token)
|
|
{
|
|
api_httpreceiver *jnet = WAC_API_DOWNLOADMANAGER->GetReceiver(token);
|
|
if (jnet)
|
|
{
|
|
jnet->AddHeaderValue("X-Winamp-ID", winamp_id_str);
|
|
jnet->AddHeaderValue("X-Winamp-Name", winamp_name);
|
|
}
|
|
}
|
|
|
|
RECVS_DISPATCH;
|
|
};
|
|
|
|
#define CBCLASS PingCallback
|
|
START_DISPATCH;
|
|
VCB(IFC_DOWNLOADMANAGERCALLBACK_ONINIT, OnInit)
|
|
END_DISPATCH;
|
|
#undef CBCLASS
|
|
|
|
static PingCallback ping_callback;
|
|
void RenameDevice(const char *root_url, const wchar_t *new_name)
|
|
{
|
|
if ( WAC_API_DOWNLOADMANAGER )
|
|
{
|
|
char url[1024] = {0};
|
|
StringCbPrintfA(url, sizeof(url), "%s/set?nick=%s", root_url, AutoUrl(new_name));
|
|
WAC_API_DOWNLOADMANAGER->DownloadEx(url, &ping_callback, api_downloadManager::DOWNLOADEX_BUFFER);
|
|
}
|
|
}
|