Files
Print3M-Anti-VM/utils.hpp
T
Print3M a3929ff50c init
2023-09-15 22:06:35 +02:00

10 lines
249 B
C++

#pragma once
#include <string>
#include <vector>
#include <wtypes.h>
namespace utils {
std::string bstr_to_str(BSTR bstr);
std::string lowercase(std::string str);
bool str_includes(std::string str, std::vector<std::string> includes);
};