mirror of
https://github.com/acidicoala/SmokeAPI.git
synced 2026-01-25 05:52:51 -05:00
13 lines
401 B
C++
13 lines
401 B
C++
#include <common/steamclient_exports.hpp>
|
|
#include <steam_impl/steam_client.hpp>
|
|
|
|
DLL_EXPORT(void*) CreateInterface(const char* interface_string, int* out_result) {
|
|
return steam_client::GetGenericInterface(
|
|
__func__, interface_string, [&]() {
|
|
GET_ORIGINAL_HOOKED_FUNCTION(CreateInterface)
|
|
|
|
return CreateInterface_o(interface_string, out_result);
|
|
}
|
|
);
|
|
}
|