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

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

Issue 12295040: Stop delay loading user32.dll from chrome.dll on x86/Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Build config sketch, mostly works for x86 and x64. Move the hook back to base." Created 7 years, 9 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 | Annotate | Revision Log
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4 #
5 # This file is used to create a custom import library for Content shell's use of
6 # user32.dll APIs added post Windows XP.
7 {
8 'architecture': 'x86',
9
10 # The DLL to bind to - we delay load these imports.
11 'dll_name': 'user32-delay.dll',
12
13 # Name of the generated import library.
14 'importlib_name': 'content.user32.delay.imports.lib',
15
16 # This is the set of exports observed on a user32.dll from Windows XP SP2.
17 # The version of the DLL where these were observed is 5.1.2600.2180.
18 # Incidentally this set of exports also coincides with Windows XP SP3, where
19 # the version of the DLL is 5.1.2600.5512.
20 # Don't add new imports here unless and until the minimal supported
21 # Windows version has been bumped past Windows XP SP2+.
22 'imports': [
23 'CloseGestureInfoHandle@4',
24 'CloseTouchInputHandle@4',
25 'GetGestureInfo@8',
26 'GetTouchInputInfo@16',
27 'IsTouchWindow@8',
28 'RegisterTouchWindow@8',
29 'SetGestureConfig@20',
30 'UnregisterTouchWindow@4',
31 ],
32 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698