ReactOS 0.4.16-dev-942-g91fadeb
CEmptyVolumeCacheCallBack.hpp
Go to the documentation of this file.
1/*
2 * PROJECT: ReactOS Disk Cleanup
3 * LICENSE: MIT (https://spdx.org/licenses/MIT)
4 * PURPOSE: CEmptyVolumeCacheCallBack definition / implementation
5 * COPYRIGHT: Copyright 2023-2025 Mark Jansen <mark.jansen@reactos.org>
6 */
7
8
9// We don't really use this, but some windows handlers crash without it
12{
13
15 {
16 return 2;
17 }
19 {
20 return 1;
21 }
24 _COM_Outptr_ void** ppvObject) throw()
25 {
26 if (riid == IID_IUnknown || riid == IID_IEmptyVolumeCacheCallBack)
27 {
28 *ppvObject = (IUnknown*)this;
29 return S_OK;
30 }
31 *ppvObject = NULL;
32 return E_NOINTERFACE;
33 }
34
35
37 _In_ DWORDLONG dwlSpaceUsed,
39 _In_ LPCWSTR pcwszStatus) override
40 {
41 DPRINT("dwlSpaceUsed: %lld, dwFlags: %x\n", dwlSpaceUsed, dwFlags);
42 return S_OK;
43 }
44
46 _In_ DWORDLONG dwlSpaceFreed,
47 _In_ DWORDLONG dwlSpaceToFree,
49 _In_ LPCWSTR pcwszStatus) override
50 {
51 DPRINT("dwlSpaceFreed: %lld, dwlSpaceToFree: %lld, dwFlags: %x\n", dwlSpaceFreed, dwlSpaceToFree, dwFlags);
52 return S_OK;
53 }
54};
#define STDMETHODIMP
Definition: basetyps.h:43
#define STDMETHOD(m)
Definition: basetyps.h:62
const GUID IID_IUnknown
#define NULL
Definition: types.h:112
unsigned long DWORD
Definition: ntddk_ex.h:95
REFIID riid
Definition: atlbase.h:39
ULONG AddRef()
ULONG Release()
#define S_OK
Definition: intsafe.h:52
unsigned long long DWORDLONG
Definition: intsafe.h:93
#define _COM_Outptr_
Definition: no_sal2.h:278
#define _In_
Definition: no_sal2.h:158
#define REFIID
Definition: guiddef.h:118
#define DPRINT
Definition: sndvol32.h:73
STDMETHODIMP PurgeProgress(_In_ DWORDLONG dwlSpaceFreed, _In_ DWORDLONG dwlSpaceToFree, _In_ DWORD dwFlags, _In_ LPCWSTR pcwszStatus) override
STDMETHOD() QueryInterface(REFIID riid, _COM_Outptr_ void **ppvObject)
STDMETHODIMP ScanProgress(_In_ DWORDLONG dwlSpaceUsed, _In_ DWORD dwFlags, _In_ LPCWSTR pcwszStatus) override
uint32_t ULONG
Definition: typedefs.h:59
_In_ PCCERT_CONTEXT _In_ DWORD dwFlags
Definition: wincrypt.h:1176
_In_ void _In_ PCCERT_CONTEXT _In_opt_ LPFILETIME _In_ DWORD _In_ DWORD _Outptr_opt_ void ** ppvObject
Definition: wincrypt.h:6082
#define E_NOINTERFACE
Definition: winerror.h:2364
const WCHAR * LPCWSTR
Definition: xmlstorage.h:185