()
| 41 | } |
| 42 | |
| 43 | pub fn get_build_id() -> Result<i32, SteamError> { |
| 44 | app::with_client(|client| Ok(client.apps().app_build_id())) |
| 45 | } |
| 46 | |
| 47 | pub fn get_install_dir(app_id: AppID) -> Result<String, SteamError> { |
| 48 | app::with_client(|client| Ok(client.apps().app_install_dir(app_id.into()))) |
nothing calls this directly
no test coverage detected