[Build]Clean the WPARAM warning on IDL (#34223)

## 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.
This commit is contained in:
Jaime Bernardo 2024-08-08 18:52:57 +01:00 committed by GitHub
parent 4ea34c23b2
commit 5abd763df5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,12 +1,10 @@
typedef UInt64 WPARAM;
namespace PowerToys namespace PowerToys
{ {
namespace Interop namespace Interop
{ {
struct KeyboardEvent struct KeyboardEvent
{ {
WPARAM message; UInt64 message;
Int32 key; Int32 key;
UInt64 dwExtraInfo; UInt64 dwExtraInfo;
}; };