1
0
Fork 0
mirror of https://github.com/Detanup01/gbe_fork.git synced 2025-03-28 14:56:24 +01:00
gbe_fork/dll/dll/client_known_interfaces.h
a 4b9f88d8ec * change return type of all client functions from bool to steam_bool to avoid inconsistency problem in the client library
* implement missing client functions
  - `Breakpad_SteamSendMiniDump()`
  - `Steam_IsKnownInterface()`
  - `Steam_NotifyMissingInterface()`
2024-08-21 22:45:02 +03:00

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_