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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
#include "stdafx.h" // Precompiled header key.
#include "utilcode.h"
#include "metadata.h"
#include "ex.h"
#include "pedecoder.h"
#include <wininet.h>
#include <urlmon.h>
#include <version.h>
DWORD
GetFileVersionInfoSizeW_NoThrow(
LPCWSTR lptstrFilename, /* Filename of version stamped file */
LPDWORD lpdwHandle
)
{
WRAPPER_NO_CONTRACT;
HRESULT hr=S_OK;
DWORD dwRet=0;
EX_TRY
{
dwRet=GetFileVersionInfoSize( (LPWSTR)lptstrFilename, lpdwHandle );
}
EX_CATCH_HRESULT(hr);
if (hr!=S_OK)
SetLastError(hr);
return dwRet;
}
BOOL
GetFileVersionInfoW_NoThrow(
LPCWSTR lptstrFilename, /* Filename of version stamped file */
DWORD dwHandle, /* Information from GetFileVersionSize */
DWORD dwLen, /* Length of buffer for info */
LPVOID lpData
)
{
WRAPPER_NO_CONTRACT;
HRESULT hr=S_OK;
BOOL bRet=FALSE;
EX_TRY
{
bRet=GetFileVersionInfo( (LPWSTR)lptstrFilename, dwHandle,dwLen,lpData );
}
EX_CATCH_HRESULT(hr);
if (hr!=S_OK)
SetLastError(hr);
return bRet;
}
BOOL
VerQueryValueW_NoThrow(
const LPVOID pBlock,
LPCWSTR lpSubBlock,
LPVOID * lplpBuffer,
PUINT puLen
)
{
WRAPPER_NO_CONTRACT;
HRESULT hr=S_OK;
BOOL bRet=FALSE;
EX_TRY
{
bRet=VerQueryValueW( pBlock, (LPWSTR)lpSubBlock,lplpBuffer,puLen );
}
EX_CATCH_HRESULT(hr);
if (hr!=S_OK)
SetLastError(hr);
return bRet;
}
|