Skip to content

Commit

Permalink
[KBM Engine] Remove global usings (#10976)
Browse files Browse the repository at this point in the history
  • Loading branch information
mykhailopylyp committed Apr 27, 2021
1 parent 4c6191d commit 5426e7b
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/modules/keyboardmanager/KeyboardManagerEngine/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,11 @@
#include <keyboardmanager/KeyboardManagerEngineLibrary/trace.h>
#include <common/utils/UnhandledExceptionHandler_x64.h>

using namespace winrt;
using namespace Windows::Foundation;

const std::wstring instanceMutexName = L"Local\\PowerToys_KBMEngine_InstanceMutex";

int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PWSTR lpCmdLine, int nCmdShow)
int WINAPI wWinMain(_In_ HINSTANCE hInstance, _In_opt_ HINSTANCE hPrevInstance, _In_ PWSTR lpCmdLine, _In_ int nCmdShow)
{
init_apartment();
winrt::init_apartment();
LoggerHelpers::init_logger(KeyboardManagerConstants::ModuleName, L"Engine", LogSettings::keyboardManagerLoggerName);

InitUnhandledExceptionHandler_x64();
Expand Down

0 comments on commit 5426e7b

Please sign in to comment.