mirror of
https://github.com/acidicoala/SmokeAPI.git
synced 2025-12-05 21:15:39 -05:00
Added README.txt to release zip
This commit is contained in:
1
.github/workflows/ci.yml
vendored
1
.github/workflows/ci.yml
vendored
@@ -15,3 +15,4 @@ jobs:
|
||||
zip -j $ZIP_NAME
|
||||
artifacts/*/*.dll
|
||||
res/SmokeAPI.config.json
|
||||
res/README.txt
|
||||
|
||||
3
res/README.txt
Normal file
3
res/README.txt
Normal file
@@ -0,0 +1,3 @@
|
||||
Project page: https://github.com/acidicoala/SmokeAPI?tab=readme-ov-file#smokeapi
|
||||
Forum topic: https://cs.rin.ru/forum/viewtopic.php?p=2597932#p2597932
|
||||
DLC Database: https://steamdb.info/
|
||||
@@ -54,6 +54,11 @@ namespace {
|
||||
if(kb::str::eq(library_name, STEAMCLIENT_DLL)) {
|
||||
KB_HOOK_DETOUR_MODULE(CreateInterface, module_handle);
|
||||
} else if(kb::str::eq(library_name, STEAMAPI_DLL)) {
|
||||
// TODO: SteamAPI_Init will be too small to hook on x64.
|
||||
// Ideally, we should inspect the address it jumps to and hook that instead.
|
||||
// Moreover, SteamAPI_InitSafe calls the same address,
|
||||
// so it could be used as a sanity check
|
||||
|
||||
KB_HOOK_DETOUR_MODULE(SteamAPI_Init, module_handle);
|
||||
KB_HOOK_DETOUR_MODULE(SteamAPI_InitSafe, module_handle);
|
||||
KB_HOOK_DETOUR_MODULE(SteamAPI_InitFlat, module_handle);
|
||||
|
||||
Reference in New Issue
Block a user