mirror of
https://github.com/cemu-project/vcpkg.git
synced 2025-02-23 19:17:10 +01:00
20 lines
432 B
C++
20 lines
432 B
C++
#pragma once
|
|
|
|
#include <vcpkg/vcpkgcmdarguments.h>
|
|
#include <vcpkg/vcpkgpaths.h>
|
|
|
|
#include <string>
|
|
|
|
namespace vcpkg::Help
|
|
{
|
|
extern const CommandStructure COMMAND_STRUCTURE;
|
|
|
|
void perform_and_exit(const VcpkgCmdArguments& args, const VcpkgPaths& paths);
|
|
|
|
void help_topic_valid_triplet(const VcpkgPaths& paths);
|
|
|
|
void print_usage();
|
|
|
|
std::string create_example_string(const std::string& command_and_arguments);
|
|
}
|