blob: 620dc6ab9c949a9f5fd90187484025b459d9f951 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#pragma once
#include "../devices/ifc_deviceactivity.h"
class ConnectActivity : public ifc_deviceactivity
{
public:
BOOL GetActive();
BOOL GetCancelable();
HRESULT GetProgress(unsigned int *percentCompleted);
HRESULT GetDisplayName(wchar_t *buffer, size_t bufferMax);
HRESULT GetStatus(wchar_t *buffer, size_t bufferMax);
HRESULT Cancel(HWND hostWindow);
protected:
RECVS_DISPATCH;
};
|