mirror of
https://github.com/Detanup01/gbe_fork.git
synced 2024-11-23 11:15:34 +08:00
commit
2560c6eb8e
@ -25,6 +25,7 @@
|
||||
|
||||
|
||||
class Steam_Utils :
|
||||
public ISteamUtils001,
|
||||
public ISteamUtils002,
|
||||
public ISteamUtils003,
|
||||
public ISteamUtils004,
|
||||
|
@ -209,7 +209,10 @@ ISteamUtils *Steam_Client::GetISteamUtils( HSteamPipe hSteamPipe, const char *pc
|
||||
steam_utils_temp = steam_utils;
|
||||
}
|
||||
|
||||
if (strcmp(pchVersion, "SteamUtils002") == 0) {
|
||||
|
||||
if (strcmp(pchVersion, "SteamUtils001") == 0) {
|
||||
return reinterpret_cast<ISteamUtils *>(static_cast<ISteamUtils001 *>(steam_utils_temp));
|
||||
} else if (strcmp(pchVersion, "SteamUtils002") == 0) {
|
||||
return reinterpret_cast<ISteamUtils *>(static_cast<ISteamUtils002 *>(steam_utils_temp));
|
||||
} else if (strcmp(pchVersion, "SteamUtils003") == 0) {
|
||||
return reinterpret_cast<ISteamUtils *>(static_cast<ISteamUtils003 *>(steam_utils_temp)); // ISteamUtils003 Not found in public Archive, must be between 1.02-1.03
|
||||
|
34
sdk/steam/isteamutils001.h
Normal file
34
sdk/steam/isteamutils001.h
Normal file
@ -0,0 +1,34 @@
|
||||
|
||||
#ifndef ISTEAMUTILS001_H
|
||||
#define ISTEAMUTILS001_H
|
||||
#ifdef STEAM_WIN32
|
||||
#pragma once
|
||||
#endif
|
||||
|
||||
class ISteamUtils001
|
||||
{
|
||||
public:
|
||||
// return the number of seconds since the user
|
||||
virtual uint32 GetSecondsSinceAppActive() = 0;
|
||||
virtual uint32 GetSecondsSinceComputerActive() = 0;
|
||||
|
||||
// the universe this client is connecting to
|
||||
virtual EUniverse GetConnectedUniverse() = 0;
|
||||
|
||||
// Steam server time - in PST, number of seconds since January 1, 1970 (i.e unix time)
|
||||
virtual uint32 GetServerRealTime() = 0;
|
||||
|
||||
// returns the 2 digit ISO 3166-1-alpha-2 format country code this client is running in (as looked up via an IP-to-location database)
|
||||
// e.g "US" or "UK".
|
||||
virtual const char *GetIPCountry() = 0;
|
||||
|
||||
// returns true if the image exists, and valid sizes were filled out
|
||||
virtual bool GetImageSize( int iImage, uint32 *pnWidth, uint32 *pnHeight ) = 0;
|
||||
|
||||
// returns true if the image exists, and the buffer was successfully filled out
|
||||
// results are returned in RGBA format
|
||||
// the destination buffer size should be 4 * height * width * sizeof(char)
|
||||
virtual bool GetImageRGBA( int iImage, uint8 *pubDest, int nDestBufferSize ) = 0;
|
||||
};
|
||||
|
||||
#endif // ISTEAMUTILS001_H
|
@ -73,6 +73,7 @@
|
||||
#include "isteamfriends015.h"
|
||||
#include "isteamfriends016.h"
|
||||
#include "isteamutils.h"
|
||||
#include "isteamutils001.h"
|
||||
#include "isteamutils002.h"
|
||||
#include "isteamutils003.h"
|
||||
#include "isteamutils004.h"
|
||||
|
Loading…
Reference in New Issue
Block a user