PackBinary/public.hpp

18 lines
314 B
C++
Raw 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};
2024-10-27 15:51:46 +08:00
};
#endif