mirror of
https://github.com/flightlessmango/MangoHud.git
synced 2024-11-11 19:10:55 +00:00
4862d83b60
Might be optimized by compiler already but who knows.
10 lines
214 B
C++
10 lines
214 B
C++
#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);
|
|
|
|
|
|
#endif //MANGOHUD_BLACKLIST_H
|