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