Guest User

Untitled

a guest
Aug 17th, 2024
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.16 KB | None | 0 0
  1. SteamworksPy.cpp:89:14: error: ‘int32_t’ in namespace ‘std’ does not name a type
  2. 89 | std::int32_t result;
  3. | ^~~~~~~
  4. SteamworksPy.cpp:90:14: error: ‘uint64_t’ in namespace ‘std’ does not name a type; did you mean ‘wint_t’?
  5. 90 | std::uint64_t publishedFileId;
  6. | ^~~~~~~~
  7. | wint_t
  8. SteamworksPy.cpp: In member function ‘void Workshop::OnItemSubscribed(RemoteStorageSubscribePublishedFileResult_t*, bool)’:
  9. SteamworksPy.cpp:184:112: error: too many initializers for ‘SubscriptionResult’
  10. 184 | SubscriptionResult result{itemSubscribedResult->m_eResult, itemSubscribedResult->m_nPublishedFileId};
  11. | ^
  12. SteamworksPy.cpp: In member function ‘void Workshop::OnItemUnsubscribed(RemoteStorageUnsubscribePublishedFileResult_t*, bool)’:
  13. SteamworksPy.cpp:191:116: error: too many initializers for ‘SubscriptionResult’
  14. 191 | SubscriptionResult result{itemUnsubscribedResult->m_eResult, itemUnsubscribedResult->m_nPublishedFileId};
  15. | ^
  16. SteamworksPy.cpp: In function ‘int GetAuthSessionTicket(char*)’:
  17. SteamworksPy.cpp:987:38: error: no matching function for call to ‘ISteamUser::GetAuthSessionTicket(char*&, int, uint32*)’
  18. 987 | SteamUser()->GetAuthSessionTicket(buffer, 1024, &size);
  19. | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
  20. In file included from sdk/steam/steam_api.h:25,
  21. from SteamworksPy.cpp:16:
  22. sdk/steam/isteamuser.h:131:29: note: candidate: ‘virtual HAuthTicket ISteamUser::GetAuthSessionTicket(void*, int, uint32*, const SteamNetworkingIdentity*)’
  23. 131 | virtual HAuthTicket GetAuthSessionTicket( void *pTicket, int cbMaxTicket, uint32 *pcbTicket, const SteamNetworkingIdentity *pSteamNetworkingIdentity ) = 0;
  24. | ^~~~~~~~~~~~~~~~~~~~
  25. sdk/steam/isteamuser.h:131:29: note: candidate expects 4 arguments, 3 provided
Advertisement
Add Comment
Please, Sign In to add comment