OLD | NEW |
(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 } |
OLD | NEW |