mirror of
https://github.com/microsoft/PowerToys
synced 2024-11-21 15:53:19 +00: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:
parent
4ea34c23b2
commit
5abd763df5
@ -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;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user