mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 11:48:06 +01:00
[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:
@@ -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;
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user