//------------------------------------------------------------------------------------------------- // // 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. // // // // Resource writer helper functions. // //------------------------------------------------------------------------------------------------- #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