diff options
Diffstat (limited to '')
-rw-r--r-- | src/engine/cache.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/engine/cache.h b/src/engine/cache.h index acc7acb7..eb964f58 100644 --- a/src/engine/cache.h +++ b/src/engine/cache.h | |||
@@ -1,6 +1,7 @@ | |||
1 | #pragma once | 1 | #pragma once |
2 | // 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. | 2 | // 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. |
3 | 3 | ||
4 | #define BURN_CACHE_MAX_SEARCH_PATHS 7 | ||
4 | 5 | ||
5 | #ifdef __cplusplus | 6 | #ifdef __cplusplus |
6 | extern "C" { | 7 | extern "C" { |
@@ -52,12 +53,14 @@ HRESULT CacheGetResumePath( | |||
52 | __in_z LPCWSTR wzPayloadWorkingPath, | 53 | __in_z LPCWSTR wzPayloadWorkingPath, |
53 | __deref_out_z LPWSTR* psczResumePath | 54 | __deref_out_z LPWSTR* psczResumePath |
54 | ); | 55 | ); |
55 | HRESULT CacheFindLocalSource( | 56 | HRESULT CacheGetLocalSourcePaths( |
57 | __in_z LPCWSTR wzRelativePath, | ||
56 | __in_z LPCWSTR wzSourcePath, | 58 | __in_z LPCWSTR wzSourcePath, |
57 | __in_z LPCWSTR wzDestinationPath, | 59 | __in_z LPCWSTR wzDestinationPath, |
60 | __in_z_opt LPCWSTR wzLayoutDirectory, | ||
58 | __in BURN_VARIABLES* pVariables, | 61 | __in BURN_VARIABLES* pVariables, |
59 | __out BOOL* pfFound, | 62 | __inout LPWSTR** prgSearchPaths, |
60 | __out_z LPWSTR* psczSourceFullPath | 63 | __out DWORD* pcSearchPaths |
61 | ); | 64 | ); |
62 | HRESULT CacheSetLastUsedSource( | 65 | HRESULT CacheSetLastUsedSource( |
63 | __in BURN_VARIABLES* pVariables, | 66 | __in BURN_VARIABLES* pVariables, |