37 lines
1011 B
C++
37 lines
1011 B
C++
//*********************************************************
|
|
//
|
|
// Copyright (c) Microsoft. All rights reserved.
|
|
// This code is licensed under the MIT License (MIT).
|
|
// THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF
|
|
// ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY
|
|
// IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR
|
|
// PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.
|
|
//
|
|
//*********************************************************
|
|
|
|
#include "stdafx.h"
|
|
#include "SimpleConsole.h"
|
|
#include "WlanHostedNetworkWinRT.h"
|
|
|
|
using namespace ABI::Windows::Foundation;
|
|
using namespace Microsoft::WRL;
|
|
using namespace Microsoft::WRL::Wrappers;
|
|
|
|
int _tmain(int argc, _TCHAR* argv[])
|
|
{
|
|
// Initialize the Windows Runtime.
|
|
RoInitializeWrapper initialize(RO_INIT_MULTITHREADED);
|
|
if (FAILED(initialize))
|
|
{
|
|
std::cout << "Failed to initialize Windows Runtime" << std::endl;
|
|
return static_cast<HRESULT>(initialize);
|
|
}
|
|
|
|
SimpleConsole console;
|
|
|
|
console.RunConsole();
|
|
|
|
return 0;
|
|
}
|
|
|