Updating WiX toolset 1.

This commit is contained in:
McMak 2015-04-27 20:00:10 +03:00
parent 68d0b77357
commit cb25d8a5ae
190 changed files with 0 additions and 47509 deletions

View file

@ -1,43 +0,0 @@
//-------------------------------------------------------------------------------------------------
// <copyright file="reswutil.h" company="Outercurve Foundation">
// Copyright (c) 2004, Outercurve Foundation.
// This software is released under Microsoft Reciprocal License (MS-RL).
// The license and further copyright text can be found in the file
// LICENSE.TXT at the root directory of the distribution.
// </copyright>
//
// <summary>
// Resource writer helper functions.
// </summary>
//-------------------------------------------------------------------------------------------------
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
HRESULT DAPI ResWriteString(
__in_z LPCWSTR wzResourceFile,
__in DWORD dwDataId,
__in_z LPCWSTR wzData,
__in WORD wLangId
);
HRESULT DAPI ResWriteData(
__in_z LPCWSTR wzResourceFile,
__in_z LPCSTR szDataName,
__in PVOID pData,
__in DWORD cbData
);
HRESULT DAPI ResImportDataFromFile(
__in_z LPCWSTR wzTargetFile,
__in_z LPCWSTR wzSourceFile,
__in_z LPCSTR szDataName
);
#ifdef __cplusplus
}
#endif