mirror of
https://github.com/YGGverse/hlsdk-portable.git
synced 2025-03-13 05:51:19 +00:00
23 lines
566 B
C
23 lines
566 B
C
![]() |
// AgDownload.h: interface for the AgDownload class.
|
||
|
//
|
||
|
//////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
#if !defined(AFX_AGDOWNLOAD_H__67A39740_D747_4453_AC71_32320604FAAB__INCLUDED_)
|
||
|
#define AFX_AGDOWNLOAD_H__67A39740_D747_4453_AC71_32320604FAAB__INCLUDED_
|
||
|
|
||
|
#if _MSC_VER > 1000
|
||
|
#pragma once
|
||
|
#endif // _MSC_VER > 1000
|
||
|
|
||
|
class AgDownload
|
||
|
{
|
||
|
public:
|
||
|
AgDownload();
|
||
|
virtual ~AgDownload();
|
||
|
|
||
|
void DownloadFile(const char* pszURL, const char* pszSaveAs);
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // !defined(AFX_AGDOWNLOAD_H__67A39740_D747_4453_AC71_32320604FAAB__INCLUDED_)
|