PackBinary/public.hpp

19 lines
342 B
C++
Raw Permalink Normal View History

2024-10-27 15:51:46 +08:00
#ifndef PUBLIC_HEADER
#define PUBLIC_HEADER
#include <string>
#include <vector>
struct CmdResult {
std::string binary;
2024-10-27 22:57:17 +08:00
std::string purpose_dir;
2024-10-27 15:51:46 +08:00
std::string ico;
std::string category;
std::vector<std::string> lib_dirs;
bool valid{false};
2024-10-29 12:42:11 +08:00
int mode{-1};
bool help_{false};
bool only_shell{false};
2024-10-27 15:51:46 +08:00
};
#endif