blob: 4140583ead1b97c15a8e2ee068f0a0a8fe3bf029 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef _STEAM_REQUEST_AVATAR_H_
#define _STEAM_REQUEST_AVATAR_H_
struct GetAvatarRequest : public HttpRequest
{
GetAvatarRequest(const char *url) :
HttpRequest(REQUEST_GET, url)
{
flags = NLHRF_HTTP11 | NLHRF_NODUMP;
}
};
#endif //_STEAM_REQUEST_AVATAR_H_
|