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

Side by Side Diff: chrome/chrome.user32.delay.imports

Issue 477173002: Fix delay load of (Un)RegisterPowerSettingNotification on Win XP. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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 | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 # 4 #
5 # This file is used to create a custom import library for Chrome.dll's use of 5 # This file is used to create a custom import library for Chrome.dll's use of
6 # user32.dll APIs added post-Windows XP to obviate the need for delay loading 6 # user32.dll APIs added post-Windows XP to obviate the need for delay loading
7 # all of user32.dll. 7 # all of user32.dll.
8 { 8 {
9 'architecture': 'x86', 9 'architecture': 'x86',
10 10
11 # The DLL to bind to - we delay load these imports. 11 # The DLL to bind to - we delay load these imports.
12 'dll_name': 'user32-delay.dll', 12 'dll_name': 'user32-delay.dll',
13 13
14 # Name of the generated import library. 14 # Name of the generated import library.
15 'importlib_name': 'chrome.user32.delay.lib', 15 'importlib_name': 'chrome.user32.delay.lib',
16 16
17 # Chrome.dll uses these post-Windows XP (SP2) exports, and so they must be 17 # Chrome.dll uses these post-Windows XP (SP2) exports, and so they must be
18 # delay loaded for Chrome.dll to load on Windows XP computers. 18 # delay loaded for Chrome.dll to load on Windows XP computers.
19 'imports': [ 19 'imports': [
20 'CloseGestureInfoHandle@4', 20 'CloseGestureInfoHandle@4',
21 'CloseTouchInputHandle@4', 21 'CloseTouchInputHandle@4',
22 'GetGestureInfo@8', 22 'GetGestureInfo@8',
23 'GetTouchInputInfo@16', 23 'GetTouchInputInfo@16',
24 'IsTouchWindow@8', 24 'IsTouchWindow@8',
25 'RegisterTouchWindow@8', 25 'RegisterTouchWindow@8',
26 'RegisterPowerSettingNotification@12',
26 'UnregisterTouchWindow@4', 27 'UnregisterTouchWindow@4',
28 'UnregisterPowerSettingNotification@4',
27 ], 29 ],
28 } 30 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698