mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator.git
synced 2024-11-12 23:58:07 +01:00
Fixed find_interfaces.ps1
Added a condition to test steam_api.dll or steam_api64.dll. Used the ASCII encoding, last version was using UTF-16 with BOM making the emu read really strange interfaces :).
This commit is contained in:
parent
32b8a8b169
commit
1fd5471502
1 changed files with 46 additions and 25 deletions
|
@ -3,37 +3,58 @@ $fi = $args[0]
|
|||
if( ! $fi )
|
||||
{
|
||||
$fi = "steam_api.dll"
|
||||
|
||||
if( !(Test-Path $fi) )
|
||||
{
|
||||
$fi = "steam_api64.dll"
|
||||
}
|
||||
|
||||
if( !(Test-Path $fi) )
|
||||
{
|
||||
Write-Output "Failed to find steam_api or steam_api64"
|
||||
Return 1
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if( !(Test-Path $fi) )
|
||||
{
|
||||
Write-Output "Failed to find $fi"
|
||||
Return 1
|
||||
}
|
||||
}
|
||||
|
||||
function findinterface($api)
|
||||
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
|
||||
findinterface SteamClient | Out-File -Encoding ASCII -FilePath steam_interfaces.txt
|
||||
findinterface SteamGameServer | Out-File -Encoding ASCII -Append -FilePath steam_interfaces.txt
|
||||
findinterface SteamGameServerStats | Out-File -Encoding ASCII -Append -FilePath steam_interfaces.txt
|
||||
findinterface SteamUser | Out-File -Encoding ASCII -Append -FilePath steam_interfaces.txt
|
||||
findinterface SteamFriends | Out-File -Encoding ASCII -Append -FilePath steam_interfaces.txt
|
||||
findinterface SteamUtils | Out-File -Encoding ASCII -Append -FilePath steam_interfaces.txt
|
||||
findinterface SteamMatchMaking | Out-File -Encoding ASCII -Append -FilePath steam_interfaces.txt
|
||||
findinterface SteamMatchMakingServers | Out-File -Encoding ASCII -Append -FilePath steam_interfaces.txt
|
||||
findinterface STEAMUSERSTATS_INTERFACE_VERSION | Out-File -Encoding ASCII -Append -FilePath steam_interfaces.txt
|
||||
findinterface STEAMAPPS_INTERFACE_VERSION | Out-File -Encoding ASCII -Append -FilePath steam_interfaces.txt
|
||||
findinterface SteamNetworking | Out-File -Encoding ASCII -Append -FilePath steam_interfaces.txt
|
||||
findinterface STEAMREMOTESTORAGE_INTERFACE_VERSION | Out-File -Encoding ASCII -Append -FilePath steam_interfaces.txt
|
||||
findinterface STEAMSCREENSHOTS_INTERFACE_VERSION | Out-File -Encoding ASCII -Append -FilePath steam_interfaces.txt
|
||||
findinterface STEAMHTTP_INTERFACE_VERSION | Out-File -Encoding ASCII -Append -FilePath steam_interfaces.txt
|
||||
findinterface STEAMUNIFIEDMESSAGES_INTERFACE_VERSION | Out-File -Encoding ASCII -Append -FilePath steam_interfaces.txt
|
||||
findinterface STEAMCONTROLLER_INTERFACE_VERSION | Out-File -Encoding ASCII -Append -FilePath steam_interfaces.txt
|
||||
findinterface STEAMUGC_INTERFACE_VERSION | Out-File -Encoding ASCII -Append -FilePath steam_interfaces.txt
|
||||
findinterface STEAMAPPLIST_INTERFACE_VERSION | Out-File -Encoding ASCII -Append -FilePath steam_interfaces.txt
|
||||
findinterface STEAMMUSIC_INTERFACE_VERSION | Out-File -Encoding ASCII -Append -FilePath steam_interfaces.txt
|
||||
findinterface STEAMMUSICREMOTE_INTERFACE_VERSION | Out-File -Encoding ASCII -Append -FilePath steam_interfaces.txt
|
||||
findinterface STEAMHTMLSURFACE_INTERFACE_VERSION_ | Out-File -Encoding ASCII -Append -FilePath steam_interfaces.txt
|
||||
findinterface STEAMINVENTORY_INTERFACE_V | Out-File -Encoding ASCII -Append -FilePath steam_interfaces.txt
|
||||
findinterface SteamController | Out-File -Encoding ASCII -Append -FilePath steam_interfaces.txt
|
Loading…
Reference in a new issue