diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-03-28 17:03:31 +1000 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-03-30 21:57:49 +1000 |
commit | d74e3dd4bcc573d0c4b1fb5c36c8bf0115cc21a1 (patch) | |
tree | 7d051293940bcc2778d0aa52f015e52506663faf /src/be/utilbe.cpp | |
parent | e79d9190439e1f740d5646f2f30cccd57b328d17 (diff) | |
download | wix-d74e3dd4bcc573d0c4b1fb5c36c8bf0115cc21a1.tar.gz wix-d74e3dd4bcc573d0c4b1fb5c36c8bf0115cc21a1.tar.bz2 wix-d74e3dd4bcc573d0c4b1fb5c36c8bf0115cc21a1.zip |
Add initial WixUtilBundleExtension.
Diffstat (limited to 'src/be/utilbe.cpp')
-rw-r--r-- | src/be/utilbe.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/be/utilbe.cpp b/src/be/utilbe.cpp new file mode 100644 index 00000000..370669dd --- /dev/null +++ b/src/be/utilbe.cpp | |||
@@ -0,0 +1,19 @@ | |||
1 | // 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 | |||
3 | #include "precomp.h" | ||
4 | |||
5 | // function definitions | ||
6 | |||
7 | extern "C" HRESULT WINAPI BundleExtensionCreate( | ||
8 | __in const BUNDLE_EXTENSION_CREATE_ARGS* /*pArgs*/, | ||
9 | __inout BUNDLE_EXTENSION_CREATE_RESULTS* /*pResults*/ | ||
10 | ) | ||
11 | { | ||
12 | HRESULT hr = S_OK; | ||
13 | |||
14 | return hr; | ||
15 | } | ||
16 | |||
17 | extern "C" void WINAPI BundleExtensionDestroy() | ||
18 | { | ||
19 | } \ No newline at end of file | ||