mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2026-01-04 13:44:22 +01:00
parent
8d07121950
commit
fb8548e79f
439 changed files with 109952 additions and 43685 deletions
|
|
@ -1,5 +1,44 @@
|
|||
extern uint32 cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetNumInstalledApps(void *);
|
||||
extern uint32 cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetInstalledApps(void *, AppId_t *, uint32);
|
||||
extern int cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppName(void *, AppId_t, char *, int);
|
||||
extern int cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppInstallDir(void *, AppId_t, char *, int);
|
||||
extern int cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppBuildId(void *, AppId_t);
|
||||
struct cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetNumInstalledApps_params
|
||||
{
|
||||
void *linux_side;
|
||||
uint32 _ret;
|
||||
};
|
||||
extern void cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetNumInstalledApps( struct cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetNumInstalledApps_params *params );
|
||||
|
||||
struct cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetInstalledApps_params
|
||||
{
|
||||
void *linux_side;
|
||||
uint32 _ret;
|
||||
AppId_t *pvecAppID;
|
||||
uint32 unMaxAppIDs;
|
||||
};
|
||||
extern void cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetInstalledApps( struct cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetInstalledApps_params *params );
|
||||
|
||||
struct cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppName_params
|
||||
{
|
||||
void *linux_side;
|
||||
int _ret;
|
||||
AppId_t nAppID;
|
||||
char *pchName;
|
||||
int cchNameMax;
|
||||
};
|
||||
extern void cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppName( struct cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppName_params *params );
|
||||
|
||||
struct cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppInstallDir_params
|
||||
{
|
||||
void *linux_side;
|
||||
int _ret;
|
||||
AppId_t nAppID;
|
||||
char *pchDirectory;
|
||||
int cchNameMax;
|
||||
};
|
||||
extern void cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppInstallDir( struct cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppInstallDir_params *params );
|
||||
|
||||
struct cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppBuildId_params
|
||||
{
|
||||
void *linux_side;
|
||||
int _ret;
|
||||
AppId_t nAppID;
|
||||
};
|
||||
extern void cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppBuildId( struct cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppBuildId_params *params );
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue