Fix inconsistent landing page remap list (#2866)

* Added pre-processing code

* Refactored code on c++ side to match

* Fixed comment
This commit is contained in:
Arjun Balgovind
2020-05-11 17:18:12 -07:00
committed by GitHub
parent 5f42866cea
commit 7551509f41
4 changed files with 67 additions and 42 deletions

View File

@@ -6,6 +6,7 @@
#include "..\keyboard_layout.h"
#include "..\two_way_pipe_message_ipc.h"
#include "..\common.h"
#include "..\shared_constants.h"
using namespace System;
using namespace System::Runtime::InteropServices;
@@ -114,4 +115,11 @@ public
return gcnew String(get_product_version().c_str());
}
};
public
ref class Constants
{
public:
literal int VK_WIN_BOTH = CommonSharedConstants::VK_WIN_BOTH;
};
}