blob: 13f9ab5d18d0a6cf88456a1b8ed5f9d297be91f5 (
plain)
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
38
39
40
41
42
43
44
|
#pragma once
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
#if defined(__cplusplus)
extern "C" {
#endif
// function declarations
void CabExtractInitialize();
HRESULT CabExtractOpen(
__in BURN_CONTAINER_CONTEXT* pContext,
__in LPCWSTR wzFilePath
);
HRESULT CabExtractNextStream(
__in BURN_CONTAINER_CONTEXT* pContext,
__inout_z LPWSTR* psczStreamName
);
HRESULT CabExtractStreamToFile(
__in BURN_CONTAINER_CONTEXT* pContext,
__in_z LPCWSTR wzFileName
);
HRESULT CabExtractStreamToBuffer(
__in BURN_CONTAINER_CONTEXT* pContext,
__out BYTE** ppbBuffer,
__out SIZE_T* pcbBuffer
);
HRESULT CabExtractStreamToHandle(
__in BURN_CONTAINER_CONTEXT* pContext,
__in HANDLE hFile
);
HRESULT CabExtractSkipStream(
__in BURN_CONTAINER_CONTEXT* pContext
);
HRESULT CabExtractClose(
__in BURN_CONTAINER_CONTEXT* pContext
);
#if defined(__cplusplus)
}
#endif
|