Skip to content

Commit

Permalink
[Build]Clean the WPARAM warning on IDL (microsoft#34223)
Browse files Browse the repository at this point in the history
## Summary of the Pull Request
Cleans a build warning about WPARAM when building the idl file. Seems
like typedef is not liked too much when compiling for winrt/Cpp.
  • Loading branch information
jaimecbernardo authored Aug 8, 2024
1 parent 4ea34c2 commit 5abd763
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/common/interop/KeyboardHook.idl
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
typedef UInt64 WPARAM;

namespace PowerToys
{
namespace Interop
{
struct KeyboardEvent
{
WPARAM message;
UInt64 message;
Int32 key;
UInt64 dwExtraInfo;
};
Expand Down

0 comments on commit 5abd763

Please sign in to comment.