Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(71)

Side by Side Diff: util/win/module_version.cc

Issue 1126273003: win: Retrieve module version/type information (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@thread-context-fixes
Patch Set: rebase Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « util/win/module_version.h ('k') | util/win/process_structs.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2015 The Crashpad Authors. All rights reserved.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14
15 #include "util/win/module_version.h"
16
17 #include <windows.h>
18
19 #include "base/logging.h"
20 #include "base/memory/scoped_ptr.h"
21 #include "base/strings/utf_string_conversions.h"
22
23 namespace crashpad {
24
25 bool GetModuleVersionAndType(const base::FilePath& path,
26 VS_FIXEDFILEINFO* vs_fixedfileinfo) {
27 DWORD size = GetFileVersionInfoSize(path.value().c_str(), nullptr);
28 if (!size) {
29 PLOG(WARNING) << "GetFileVersionInfoSize: "
30 << base::UTF16ToUTF8(path.value());
31 } else {
32 scoped_ptr<uint8_t[]> data(new uint8_t[size]);
33 if (!GetFileVersionInfo(path.value().c_str(), 0, size, data.get())) {
34 PLOG(WARNING) << "GetFileVersionInfo: "
35 << base::UTF16ToUTF8(path.value());
36 } else {
37 VS_FIXEDFILEINFO* fixed_file_info;
38 UINT size;
39 if (!VerQueryValue(data.get(),
40 L"\\",
41 reinterpret_cast<void**>(&fixed_file_info),
42 &size)) {
43 PLOG(WARNING) << "VerQueryValue";
44 } else {
45 *vs_fixedfileinfo = *fixed_file_info;
46 vs_fixedfileinfo->dwFileFlags &= vs_fixedfileinfo->dwFileFlagsMask;
47 return true;
48 }
49 }
50 }
51
52 return false;
53 }
54
55 } // namespace crashpad
OLDNEW
« no previous file with comments | « util/win/module_version.h ('k') | util/win/process_structs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698