terminal/src/server/Entrypoints.h

26 lines
501 B
C++

/*++
Copyright (c) Microsoft Corporation
Licensed under the MIT license.
Module Name:
- Entrypoints.h
Abstract:
- This module defines methods to get a console session started.
Author:
- Michael Niksa (MiNiksa) 14-Sept-2016
Revision History:
--*/
#pragma once
class ConsoleArguments;
namespace Entrypoints
{
[[nodiscard]] HRESULT StartConsoleForServerHandle(const ConsoleArguments& args);
[[nodiscard]] HRESULT StartConsoleForCmdLine(ConsoleArguments& args);
};