openMSX
win32-arggen.hh
Go to the documentation of this file.
1#ifndef WIN32_ARG_GEN_HH
2#define WIN32_ARG_GEN_HH
3
4#ifdef _WIN32
5
6#include "MemBuffer.hh"
7
8namespace openmsx {
9
10class ArgumentGenerator
11{
12public:
13 ~ArgumentGenerator();
14 [[nodiscard]] char** GetArguments(int& argc);
15
16private:
17 MemBuffer<char*> argv;
18 int argc;
19};
20
21#endif
22
23} // namespace openmsx
24
25#endif // WIN32_ARG_GEN_HH
This file implemented 3 utility functions:
Definition Autofire.cc:9