mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator.git
synced 2024-11-09 22:28:38 +01:00
Windows script like find_interfaces.sh but for powershell.
This commit is contained in:
parent
794469c4cf
commit
f5397c1674
1 changed files with 41 additions and 0 deletions
41
scripts/find_interfaces.ps1
Normal file
41
scripts/find_interfaces.ps1
Normal file
|
@ -0,0 +1,41 @@
|
|||
$fi = $args[0]
|
||||
|
||||
if( ! $fi )
|
||||
{
|
||||
$fi = "steam_api.dll"
|
||||
}
|
||||
|
||||
function findinterface
|
||||
|
||||
($api)
|
||||
{
|
||||
$str = Select-String "$api[0-9][0-9][0-9]" $fi
|
||||
if( $str -match "$api[0-9]{3}" )
|
||||
{
|
||||
Write-Output "$($matches[0])"
|
||||
}
|
||||
}
|
||||
|
||||
findinterface SteamClient >steam_interfaces.txt
|
||||
findinterface SteamGameServer >>steam_interfaces.txt
|
||||
findinterface SteamGameServerStats >>steam_interfaces.txt
|
||||
findinterface SteamUser >>steam_interfaces.txt
|
||||
findinterface SteamFriends >>steam_interfaces.txt
|
||||
findinterface SteamUtils >>steam_interfaces.txt
|
||||
findinterface SteamMatchMaking >>steam_interfaces.txt
|
||||
findinterface SteamMatchMakingServers >>steam_interfaces.txt
|
||||
findinterface STEAMUSERSTATS_INTERFACE_VERSION >>steam_interfaces.txt
|
||||
findinterface STEAMAPPS_INTERFACE_VERSION >>steam_interfaces.txt
|
||||
findinterface SteamNetworking >>steam_interfaces.txt
|
||||
findinterface STEAMREMOTESTORAGE_INTERFACE_VERSION >>steam_interfaces.txt
|
||||
findinterface STEAMSCREENSHOTS_INTERFACE_VERSION >>steam_interfaces.txt
|
||||
findinterface STEAMHTTP_INTERFACE_VERSION >>steam_interfaces.txt
|
||||
findinterface STEAMUNIFIEDMESSAGES_INTERFACE_VERSION >>steam_interfaces.txt
|
||||
findinterface STEAMCONTROLLER_INTERFACE_VERSION >>steam_interfaces.txt
|
||||
findinterface STEAMUGC_INTERFACE_VERSION >>steam_interfaces.txt
|
||||
findinterface STEAMAPPLIST_INTERFACE_VERSION >>steam_interfaces.txt
|
||||
findinterface STEAMMUSIC_INTERFACE_VERSION >>steam_interfaces.txt
|
||||
findinterface STEAMMUSICREMOTE_INTERFACE_VERSION >>steam_interfaces.txt
|
||||
findinterface STEAMHTMLSURFACE_INTERFACE_VERSION_ >>steam_interfaces.txt
|
||||
findinterface STEAMINVENTORY_INTERFACE_V >>steam_interfaces.txt
|
||||
findinterface SteamController >>steam_interfaces.txt
|
Loading…
Reference in a new issue