mirror of
https://github.com/Print3M/Anti-VM
synced 2026-06-21 16:41:58 +00:00
10 lines
249 B
C++
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);
|
|
}; |