mirror of
https://github.com/azahar-emu/azahar.git
synced 2026-06-06 02:33:44 -04:00
13 lines
416 B
C++
13 lines
416 B
C++
// Copyright Citra Emulator Project / Azahar Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
namespace CitraCLI {
|
|
|
|
constexpr char compression_ops_optstring[] = "c:x:o:";
|
|
constexpr char cli_capture_optstring[] = "c:x:o:";
|
|
|
|
bool CheckForOptions(const char* optstring, int argc, char* argv[]);
|
|
int ParseCommand(int argc, char* argv[]);
|
|
|
|
} // namespace CitraCLI
|