-
Notifications
You must be signed in to change notification settings - Fork 361
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implicitly link to input.dll on Windows.
Now that we we no longer support Windows XP, we can safely assume that input.dll is always available and it's OK to implicitly link to that rather than relying on LoadLibrary and GetProcAddress. One tricky part is that Windows SDK does not provide the import library for input.dll. To work around this, we will create our own import library as a part of build steps, by following this document. http://support.microsoft.com/kb/131313/en-us BUG=none TEST=compile
- Loading branch information
Showing
10 changed files
with
219 additions
and
416 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
LIBRARY input.dll | ||
|
||
EXPORTS | ||
EnumEnabledLayoutOrTip | ||
EnumLayoutOrTipForSetup | ||
InstallLayoutOrTip | ||
InstallLayoutOrTipUserReg | ||
SetDefaultLayoutOrTip |
Oops, something went wrong.