blob: 98d52030c9a76bbb7548c01cf7d3a4dc4eb72bc5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#ifndef NULLSOFT_WAC_DOWNLOAD_MANAGER_FACTORY_H
#define NULLSOFT_WAC_DOWNLOAD_MANAGER_FACTORY_H
#include "api__wac_downloadManager.h"
#include "api/service/waservicefactory.h"
#include "api/service/services.h"
namespace wa
{
namespace Components
{
class WAC_DownloadManagerFactory : public waServiceFactory
{
public:
FOURCC GetServiceType();
const char *GetServiceName();
GUID GetGUID();
const char *GetTestString();
void *GetInterface( int global_lock );
int ReleaseInterface( void *ifc );
int SupportNonLockingInterface();
int ServiceNotify( int msg, int param1, int param2 );
HRESULT Register( api_service *p_service );
HRESULT Unregister( api_service *p_service );
protected:
RECVS_DISPATCH;
};
}
}
#endif // !NULLSOFT_WAC_DOWNLOAD_MANAGER_FACTORY_H
|