mirror of
https://github.com/Detanup01/gbe_fork.git
synced 2025-03-28 14:56:24 +01:00

* implement missing client functions - `Breakpad_SteamSendMiniDump()` - `Steam_IsKnownInterface()` - `Steam_NotifyMissingInterface()`
9 lines
226 B
C++
9 lines
226 B
C++
#ifndef _CLIENT_KNOWN_INTERFACES_H_
|
|
#define _CLIENT_KNOWN_INTERFACES_H_
|
|
|
|
#include <unordered_set>
|
|
#include <string>
|
|
|
|
extern const std::unordered_set<std::string> client_known_interfaces;
|
|
|
|
#endif // _CLIENT_KNOWN_INTERFACES_H_
|