MangoHud/src/blacklist.h

10 lines
250 B
C
Raw Normal View History

2020-04-18 16:02:30 +00:00
#pragma once
#ifndef MANGOHUD_BLACKLIST_H
#define MANGOHUD_BLACKLIST_H
#include<string>
bool is_blacklisted(bool force_recheck = false);
void add_blacklist(const std::string& proc);
2023-01-08 04:25:50 +00:00
extern std::string global_proc_name;
#endif //MANGOHUD_BLACKLIST_H