mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2026-01-07 15:08:07 +01:00
steamclient: Read access input strings on the PE side.
This commit is contained in:
parent
de63ea5341
commit
c8669fbcbd
27 changed files with 1760 additions and 0 deletions
|
|
@ -36,6 +36,7 @@ int8_t __thiscall winISteamGameServerStats_SteamGameServerStats001_GetUserStat(s
|
|||
.pData = pData,
|
||||
};
|
||||
TRACE("%p\n", _this);
|
||||
IsBadStringPtrA(pchName, -1);
|
||||
STEAMCLIENT_CALL( ISteamGameServerStats_SteamGameServerStats001_GetUserStat, ¶ms );
|
||||
return params._ret;
|
||||
}
|
||||
|
|
@ -50,6 +51,7 @@ int8_t __thiscall winISteamGameServerStats_SteamGameServerStats001_GetUserStat_2
|
|||
.pData = pData,
|
||||
};
|
||||
TRACE("%p\n", _this);
|
||||
IsBadStringPtrA(pchName, -1);
|
||||
STEAMCLIENT_CALL( ISteamGameServerStats_SteamGameServerStats001_GetUserStat_2, ¶ms );
|
||||
return params._ret;
|
||||
}
|
||||
|
|
@ -64,6 +66,7 @@ int8_t __thiscall winISteamGameServerStats_SteamGameServerStats001_GetUserAchiev
|
|||
.pbAchieved = pbAchieved,
|
||||
};
|
||||
TRACE("%p\n", _this);
|
||||
IsBadStringPtrA(pchName, -1);
|
||||
STEAMCLIENT_CALL( ISteamGameServerStats_SteamGameServerStats001_GetUserAchievement, ¶ms );
|
||||
return params._ret;
|
||||
}
|
||||
|
|
@ -78,6 +81,7 @@ int8_t __thiscall winISteamGameServerStats_SteamGameServerStats001_SetUserStat(s
|
|||
.nData = nData,
|
||||
};
|
||||
TRACE("%p\n", _this);
|
||||
IsBadStringPtrA(pchName, -1);
|
||||
STEAMCLIENT_CALL( ISteamGameServerStats_SteamGameServerStats001_SetUserStat, ¶ms );
|
||||
return params._ret;
|
||||
}
|
||||
|
|
@ -92,6 +96,7 @@ int8_t __thiscall winISteamGameServerStats_SteamGameServerStats001_SetUserStat_2
|
|||
.fData = fData,
|
||||
};
|
||||
TRACE("%p\n", _this);
|
||||
IsBadStringPtrA(pchName, -1);
|
||||
STEAMCLIENT_CALL( ISteamGameServerStats_SteamGameServerStats001_SetUserStat_2, ¶ms );
|
||||
return params._ret;
|
||||
}
|
||||
|
|
@ -107,6 +112,7 @@ int8_t __thiscall winISteamGameServerStats_SteamGameServerStats001_UpdateUserAvg
|
|||
.dSessionLength = dSessionLength,
|
||||
};
|
||||
TRACE("%p\n", _this);
|
||||
IsBadStringPtrA(pchName, -1);
|
||||
STEAMCLIENT_CALL( ISteamGameServerStats_SteamGameServerStats001_UpdateUserAvgRateStat, ¶ms );
|
||||
return params._ret;
|
||||
}
|
||||
|
|
@ -120,6 +126,7 @@ int8_t __thiscall winISteamGameServerStats_SteamGameServerStats001_SetUserAchiev
|
|||
.pchName = pchName,
|
||||
};
|
||||
TRACE("%p\n", _this);
|
||||
IsBadStringPtrA(pchName, -1);
|
||||
STEAMCLIENT_CALL( ISteamGameServerStats_SteamGameServerStats001_SetUserAchievement, ¶ms );
|
||||
return params._ret;
|
||||
}
|
||||
|
|
@ -133,6 +140,7 @@ int8_t __thiscall winISteamGameServerStats_SteamGameServerStats001_ClearUserAchi
|
|||
.pchName = pchName,
|
||||
};
|
||||
TRACE("%p\n", _this);
|
||||
IsBadStringPtrA(pchName, -1);
|
||||
STEAMCLIENT_CALL( ISteamGameServerStats_SteamGameServerStats001_ClearUserAchievement, ¶ms );
|
||||
return params._ret;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue