blob: 337b52143c45b861b587b569d77c78b52c218b85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Copyright 2021 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include <string>
#include <vector>
namespace DolphinTool
{
int VerifyCommand(const std::vector<std::string>& args);
} // namespace DolphinTool
|