mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator.git
synced 2024-11-09 22:28:38 +01:00
Script to generate steam_interfaces.txt
This commit is contained in:
parent
58fb313b3e
commit
75e3d81787
1 changed files with 36 additions and 0 deletions
36
scripts/find_interfaces.sh
Normal file
36
scripts/find_interfaces.sh
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
#usage: sh find_interfaces.sh "path to original steam api .dll or .so" > steam_interfaces.txt
|
||||||
|
|
||||||
|
#created by supergoat from cs.rin.ru
|
||||||
|
#modified by Mr_Goldberg
|
||||||
|
|
||||||
|
fi=$1
|
||||||
|
|
||||||
|
function findinterface {
|
||||||
|
strings "$fi" | grep -P "$1\d{3}"
|
||||||
|
}
|
||||||
|
|
||||||
|
findinterface SteamClient
|
||||||
|
findinterface SteamGameServer
|
||||||
|
findinterface SteamGameServerStats
|
||||||
|
findinterface SteamUser
|
||||||
|
findinterface SteamFriends
|
||||||
|
findinterface SteamUtils
|
||||||
|
findinterface SteamMatchMaking
|
||||||
|
findinterface SteamMatchMakingServers
|
||||||
|
findinterface STEAMUSERSTATS_INTERFACE_VERSION
|
||||||
|
findinterface STEAMAPPS_INTERFACE_VERSION
|
||||||
|
findinterface SteamNetworking
|
||||||
|
findinterface STEAMREMOTESTORAGE_INTERFACE_VERSION
|
||||||
|
findinterface STEAMSCREENSHOTS_INTERFACE_VERSION
|
||||||
|
findinterface STEAMHTTP_INTERFACE_VERSION
|
||||||
|
findinterface STEAMUNIFIEDMESSAGES_INTERFACE_VERSION
|
||||||
|
findinterface STEAMCONTROLLER_INTERFACE_VERSION
|
||||||
|
findinterface STEAMUGC_INTERFACE_VERSION
|
||||||
|
findinterface STEAMAPPLIST_INTERFACE_VERSION
|
||||||
|
findinterface STEAMMUSIC_INTERFACE_VERSION
|
||||||
|
findinterface STEAMMUSICREMOTE_INTERFACE_VERSION
|
||||||
|
findinterface STEAMHTMLSURFACE_INTERFACE_VERSION_
|
||||||
|
findinterface STEAMINVENTORY_INTERFACE_V
|
||||||
|
findinterface SteamController
|
Loading…
Reference in a new issue