mirror of
https://github.com/Fatmike-GH/Fatpack
synced 2026-06-06 15:44:28 +00:00
22 lines
341 B
C++
22 lines
341 B
C++
#include "CommandLine.h"
|
|
|
|
namespace CommandLine
|
|
{
|
|
CommandLine::CommandLine()
|
|
{
|
|
}
|
|
|
|
CommandLine::~CommandLine()
|
|
{
|
|
}
|
|
|
|
LPWSTR CommandLine::GetCommandLine()
|
|
{
|
|
return ::GetCommandLineW();
|
|
}
|
|
|
|
LPWSTR* CommandLine::CommandLineToArgv(LPWSTR commandLine, int& argc)
|
|
{
|
|
return ::CommandLineToArgvW(commandLine, &argc);
|
|
}
|
|
} |