diff --git a/lsteamclient/gen_wrapper.py b/lsteamclient/gen_wrapper.py index ee7669c0..b38fbb7e 100755 --- a/lsteamclient/gen_wrapper.py +++ b/lsteamclient/gen_wrapper.py @@ -510,7 +510,7 @@ class Struct: def fields(self): return [f for f in self.padded_fields if type(f) is not Padding] - def write_definition(self, out, prefix): + def write_definition(self, out, prefix, converters): version = all_versions[sdkver][self.name] kind = 'union' if type(self) is Union else 'struct' wrapped = len(prefix) > 0 @@ -523,6 +523,10 @@ class Struct: out(f' {declspec(f._cursor, f.name, prefix, wrapped)};\n') else: out(f' uint8_t __pad_{f.offset}[{f.size}];\n') + for conv in converters: + out(u'#ifdef __cplusplus\n') + out(f' operator {conv}{version}() const;\n') + out(u'#endif /* __cplusplus */\n') out(u'};\n') out(u'#pragma pack( pop )\n\n') @@ -535,6 +539,20 @@ class Struct: out(f'C_ASSERT( sizeof({prefix}{version}().{f.name}) >= {f.size} );\n') out(u'\n') + def write_converter(self, prefix, path_conv_fields): + version = all_versions[sdkver][self.name] + out(f'{self._abi}_{version}::operator {prefix}{version}() const\n') + out(u'{\n') + out(f' {prefix}{version} ret;\n') + for field in self.fields: + if field.name not in path_conv_fields: + out(f' ret.{field.name} = this->{field.name};\n') + else: + out(f' steamclient_unix_path_to_dos_path(1, this->{field.name}, g_tmppath, sizeof(g_tmppath), 1);\n') + out(f' ret.{field.name} = g_tmppath;\n') + out(u' return ret;\n') + out(u'}\n') + def needs_conversion(self, other): if other.id in self._conv_cache: return self._conv_cache[other.id] @@ -1617,7 +1635,7 @@ with open('steamclient_structs_generated.h', 'w') as file: kind = 'union' if type(abis['w64']) is Union else 'struct' out(f'typedef {kind} {version} {version};\n') - abis['w64'].write_definition(out, "") + abis['w64'].write_definition(out, "", []) for name, structs in all_structs.items(): if name in EXEMPT_STRUCTS: continue @@ -1669,13 +1687,17 @@ with open('steamclient_structs_generated.h', 'w') as file: abis['u64'].write_definition(out, "u_") continue - abis['w64'].write_definition(out, "w64_") - if abis["w64"].needs_conversion(abis["u64"]): - abis['u64'].write_definition(out, "u64_") + if not abis["w64"].needs_conversion(abis["u64"]): + abis['w64'].write_definition(out, "w64_", []) + else: + abis['w64'].write_definition(out, "w64_", ["u64_"]) + abis['u64'].write_definition(out, "u64_", ["w64_"]) - abis['w32'].write_definition(out, "w32_") - if abis["w32"].needs_conversion(abis["u32"]): - abis['u32'].write_definition(out, "u32_") + if not abis["w32"].needs_conversion(abis["u32"]): + abis['w32'].write_definition(out, "w32_", []) + else: + abis['w32'].write_definition(out, "w32_", ["u32_"]) + abis['u32'].write_definition(out, "u32_", ["w32_"]) out(u'#ifdef __i386__\n') out(f'typedef w32_{version} w_{version};\n') @@ -1722,6 +1744,35 @@ with open('unixlib_generated.cpp', 'w') as file: abis['w32'].write_checks(out, "w32_") abis['u32'].write_checks(out, "u32_") + if name in MANUAL_STRUCTS: continue + + for sdkver, abis in structs.items(): + if name not in all_versions[sdkver]: continue + + version = all_versions[sdkver][name] + if f'struct {version} convert' in declared: continue + declared[f'struct {version} convert'] = True + + if type(abis['w64']) in (Class, Union): + continue + + path_conv_fields = PATH_CONV_STRUCTS.get(name, {}) + + if abis["w64"].needs_conversion(abis["u64"]): + out(u'#ifdef __x86_64__\n') + abis['w64'].write_converter('u64_', {}) + out(u'\n') + abis['u64'].write_converter('w64_', path_conv_fields) + out(u'#endif\n\n') + + if abis["w32"].needs_conversion(abis["u32"]): + out(u'#ifdef __i386__\n') + abis['w32'].write_converter('u32_', {}) + out(u'\n') + abis['u32'].write_converter('w32_', path_conv_fields) + out(u'#endif\n\n') + + getapifile = open("cb_getapi_table.dat", "w") cbsizefile = open("cb_getapi_sizes.dat", "w") diff --git a/lsteamclient/steamclient_structs.h b/lsteamclient/steamclient_structs.h index 0473561e..6d696a34 100644 --- a/lsteamclient/steamclient_structs.h +++ b/lsteamclient/steamclient_structs.h @@ -53,6 +53,11 @@ typedef struct { uint8_t _[20]; } SteamIPAddress_t; #include "steamclient_structs_generated.h" +#define PATH_MAX 4096 +extern char g_tmppath[PATH_MAX]; + +extern unsigned int steamclient_unix_path_to_dos_path( bool api_result, const char *src, char *dst, uint32_t dst_bytes, int is_url ); + #ifdef __cplusplus } /* extern "C" */ #endif /* __cplusplus */ diff --git a/lsteamclient/steamclient_structs_generated.h b/lsteamclient/steamclient_structs_generated.h index 6135bd2b..85e5ac95 100644 --- a/lsteamclient/steamclient_structs_generated.h +++ b/lsteamclient/steamclient_structs_generated.h @@ -2913,6 +2913,9 @@ struct w64_SteamUGCDetails_t_128x float m_flScore; uint32_t m_unNumChildren; uint8_t __pad_9772[4]; +#ifdef __cplusplus + operator u64_SteamUGCDetails_t_128x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -2946,6 +2949,9 @@ struct u64_SteamUGCDetails_t_128x uint32_t m_unVotesDown; float m_flScore; uint32_t m_unNumChildren; +#ifdef __cplusplus + operator w64_SteamUGCDetails_t_128x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -2981,6 +2987,9 @@ struct w32_SteamUGCDetails_t_128x float m_flScore; uint32_t m_unNumChildren; uint8_t __pad_9772[4]; +#ifdef __cplusplus + operator u32_SteamUGCDetails_t_128x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -3014,6 +3023,9 @@ struct u32_SteamUGCDetails_t_128x uint32_t m_unVotesDown; float m_flScore; uint32_t m_unNumChildren; +#ifdef __cplusplus + operator w32_SteamUGCDetails_t_128x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -3056,6 +3068,9 @@ struct w64_SteamUGCDetails_t_126 uint32_t m_unVotesUp; uint32_t m_unVotesDown; float m_flScore; +#ifdef __cplusplus + operator u64_SteamUGCDetails_t_126() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -3088,6 +3103,9 @@ struct u64_SteamUGCDetails_t_126 uint32_t m_unVotesUp; uint32_t m_unVotesDown; float m_flScore; +#ifdef __cplusplus + operator w64_SteamUGCDetails_t_126() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -3121,6 +3139,9 @@ struct w32_SteamUGCDetails_t_126 uint32_t m_unVotesUp; uint32_t m_unVotesDown; float m_flScore; +#ifdef __cplusplus + operator u32_SteamUGCDetails_t_126() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -3153,6 +3174,9 @@ struct u32_SteamUGCDetails_t_126 uint32_t m_unVotesUp; uint32_t m_unVotesDown; float m_flScore; +#ifdef __cplusplus + operator w32_SteamUGCDetails_t_126() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -3173,6 +3197,9 @@ struct w64_AddAppDependencyResult_t uint64_t m_nPublishedFileId; uint32_t m_nAppID; uint8_t __pad_20[4]; +#ifdef __cplusplus + operator u64_AddAppDependencyResult_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -3182,6 +3209,9 @@ struct u64_AddAppDependencyResult_t uint32_t m_eResult; uint64_t m_nPublishedFileId; uint32_t m_nAppID; +#ifdef __cplusplus + operator w64_AddAppDependencyResult_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -3193,6 +3223,9 @@ struct w32_AddAppDependencyResult_t uint64_t m_nPublishedFileId; uint32_t m_nAppID; uint8_t __pad_20[4]; +#ifdef __cplusplus + operator u32_AddAppDependencyResult_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -3202,6 +3235,9 @@ struct u32_AddAppDependencyResult_t uint32_t m_eResult; uint64_t m_nPublishedFileId; uint32_t m_nAppID; +#ifdef __cplusplus + operator w32_AddAppDependencyResult_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -3221,6 +3257,9 @@ struct w64_AddUGCDependencyResult_t uint8_t __pad_4[4]; uint64_t m_nPublishedFileId; uint64_t m_nChildPublishedFileId; +#ifdef __cplusplus + operator u64_AddUGCDependencyResult_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -3230,6 +3269,9 @@ struct u64_AddUGCDependencyResult_t uint32_t m_eResult; uint64_t m_nPublishedFileId; uint64_t m_nChildPublishedFileId; +#ifdef __cplusplus + operator w64_AddUGCDependencyResult_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -3240,6 +3282,9 @@ struct w32_AddUGCDependencyResult_t uint8_t __pad_4[4]; uint64_t m_nPublishedFileId; uint64_t m_nChildPublishedFileId; +#ifdef __cplusplus + operator u32_AddUGCDependencyResult_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -3249,6 +3294,9 @@ struct u32_AddUGCDependencyResult_t uint32_t m_eResult; uint64_t m_nPublishedFileId; uint64_t m_nChildPublishedFileId; +#ifdef __cplusplus + operator w32_AddUGCDependencyResult_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -3661,6 +3709,9 @@ struct w64_CreateBeaconCallback_t uint32_t m_eResult; uint8_t __pad_4[4]; uint64_t m_ulBeaconID; +#ifdef __cplusplus + operator u64_CreateBeaconCallback_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -3669,6 +3720,9 @@ struct u64_CreateBeaconCallback_t { uint32_t m_eResult; uint64_t m_ulBeaconID; +#ifdef __cplusplus + operator w64_CreateBeaconCallback_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -3678,6 +3732,9 @@ struct w32_CreateBeaconCallback_t uint32_t m_eResult; uint8_t __pad_4[4]; uint64_t m_ulBeaconID; +#ifdef __cplusplus + operator u32_CreateBeaconCallback_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -3686,6 +3743,9 @@ struct u32_CreateBeaconCallback_t { uint32_t m_eResult; uint64_t m_ulBeaconID; +#ifdef __cplusplus + operator w32_CreateBeaconCallback_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -3706,6 +3766,9 @@ struct w64_CreateItemResult_t uint64_t m_nPublishedFileId; bool m_bUserNeedsToAcceptWorkshopLegalAgreement; uint8_t __pad_17[7]; +#ifdef __cplusplus + operator u64_CreateItemResult_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -3716,6 +3779,9 @@ struct u64_CreateItemResult_t uint64_t m_nPublishedFileId; bool m_bUserNeedsToAcceptWorkshopLegalAgreement; uint8_t __pad_13[3]; +#ifdef __cplusplus + operator w64_CreateItemResult_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -3727,6 +3793,9 @@ struct w32_CreateItemResult_t uint64_t m_nPublishedFileId; bool m_bUserNeedsToAcceptWorkshopLegalAgreement; uint8_t __pad_17[7]; +#ifdef __cplusplus + operator u32_CreateItemResult_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -3737,6 +3806,9 @@ struct u32_CreateItemResult_t uint64_t m_nPublishedFileId; bool m_bUserNeedsToAcceptWorkshopLegalAgreement; uint8_t __pad_13[3]; +#ifdef __cplusplus + operator w32_CreateItemResult_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -3755,6 +3827,9 @@ struct w64_DeleteItemResult_t uint32_t m_eResult; uint8_t __pad_4[4]; uint64_t m_nPublishedFileId; +#ifdef __cplusplus + operator u64_DeleteItemResult_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -3763,6 +3838,9 @@ struct u64_DeleteItemResult_t { uint32_t m_eResult; uint64_t m_nPublishedFileId; +#ifdef __cplusplus + operator w64_DeleteItemResult_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -3772,6 +3850,9 @@ struct w32_DeleteItemResult_t uint32_t m_eResult; uint8_t __pad_4[4]; uint64_t m_nPublishedFileId; +#ifdef __cplusplus + operator u32_DeleteItemResult_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -3780,6 +3861,9 @@ struct u32_DeleteItemResult_t { uint32_t m_eResult; uint64_t m_nPublishedFileId; +#ifdef __cplusplus + operator w32_DeleteItemResult_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -3800,6 +3884,9 @@ struct w64_DownloadItemResult_t uint64_t m_nPublishedFileId; uint32_t m_eResult; uint8_t __pad_20[4]; +#ifdef __cplusplus + operator u64_DownloadItemResult_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -3809,6 +3896,9 @@ struct u64_DownloadItemResult_t uint32_t m_unAppID; uint64_t m_nPublishedFileId; uint32_t m_eResult; +#ifdef __cplusplus + operator w64_DownloadItemResult_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -3820,6 +3910,9 @@ struct w32_DownloadItemResult_t uint64_t m_nPublishedFileId; uint32_t m_eResult; uint8_t __pad_20[4]; +#ifdef __cplusplus + operator u32_DownloadItemResult_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -3829,6 +3922,9 @@ struct u32_DownloadItemResult_t uint32_t m_unAppID; uint64_t m_nPublishedFileId; uint32_t m_eResult; +#ifdef __cplusplus + operator w32_DownloadItemResult_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -3847,6 +3943,9 @@ struct w64_EndGameResultCallback_t uint32_t m_eResult; uint8_t __pad_4[4]; uint64_t ullUniqueGameID; +#ifdef __cplusplus + operator u64_EndGameResultCallback_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -3855,6 +3954,9 @@ struct u64_EndGameResultCallback_t { uint32_t m_eResult; uint64_t ullUniqueGameID; +#ifdef __cplusplus + operator w64_EndGameResultCallback_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -3864,6 +3966,9 @@ struct w32_EndGameResultCallback_t uint32_t m_eResult; uint8_t __pad_4[4]; uint64_t ullUniqueGameID; +#ifdef __cplusplus + operator u32_EndGameResultCallback_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -3872,6 +3977,9 @@ struct u32_EndGameResultCallback_t { uint32_t m_eResult; uint64_t ullUniqueGameID; +#ifdef __cplusplus + operator w32_EndGameResultCallback_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -3892,6 +4000,9 @@ struct w64_FileDetailsResult_t uint64_t m_ulFileSize; W64_ARRAY(uint8_t, 20, m_FileSHA); uint32_t m_unFlags; +#ifdef __cplusplus + operator u64_FileDetailsResult_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -3902,6 +4013,9 @@ struct u64_FileDetailsResult_t uint64_t m_ulFileSize; U64_ARRAY(uint8_t, 20, m_FileSHA); uint32_t m_unFlags; +#ifdef __cplusplus + operator w64_FileDetailsResult_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -3913,6 +4027,9 @@ struct w32_FileDetailsResult_t uint64_t m_ulFileSize; W32_ARRAY(uint8_t, 20, m_FileSHA); uint32_t m_unFlags; +#ifdef __cplusplus + operator u32_FileDetailsResult_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -3923,6 +4040,9 @@ struct u32_FileDetailsResult_t uint64_t m_ulFileSize; U32_ARRAY(uint8_t, 20, m_FileSHA); uint32_t m_unFlags; +#ifdef __cplusplus + operator w32_FileDetailsResult_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -3948,6 +4068,9 @@ struct w64_GSReputation_t_123 uint64_t m_ulBannedGameID; uint32_t m_unBanExpires; uint8_t __pad_36[4]; +#ifdef __cplusplus + operator u64_GSReputation_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -3963,6 +4086,9 @@ struct u64_GSReputation_t_123 uint8_t __pad_18[2]; uint64_t m_ulBannedGameID; uint32_t m_unBanExpires; +#ifdef __cplusplus + operator w64_GSReputation_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -3979,6 +4105,9 @@ struct w32_GSReputation_t_123 uint64_t m_ulBannedGameID; uint32_t m_unBanExpires; uint8_t __pad_36[4]; +#ifdef __cplusplus + operator u32_GSReputation_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -3994,6 +4123,9 @@ struct u32_GSReputation_t_123 uint8_t __pad_18[2]; uint64_t m_ulBannedGameID; uint32_t m_unBanExpires; +#ifdef __cplusplus + operator w32_GSReputation_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4035,6 +4167,9 @@ struct w32_GSReputation_t_108 uint64_t m_ulBannedGameID; uint32_t m_unBanExpires; uint8_t __pad_36[4]; +#ifdef __cplusplus + operator u32_GSReputation_t_108() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4050,6 +4185,9 @@ struct u32_GSReputation_t_108 uint8_t __pad_18[2]; uint64_t m_ulBannedGameID; uint32_t m_unBanExpires; +#ifdef __cplusplus + operator w32_GSReputation_t_108() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4071,6 +4209,9 @@ struct w64_GetAppDependenciesResult_t W64_ARRAY(uint32_t, 32, m_rgAppIDs); uint32_t m_nNumAppDependencies; uint32_t m_nTotalNumAppDependencies; +#ifdef __cplusplus + operator u64_GetAppDependenciesResult_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4082,6 +4223,9 @@ struct u64_GetAppDependenciesResult_t U64_ARRAY(uint32_t, 32, m_rgAppIDs); uint32_t m_nNumAppDependencies; uint32_t m_nTotalNumAppDependencies; +#ifdef __cplusplus + operator w64_GetAppDependenciesResult_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4094,6 +4238,9 @@ struct w32_GetAppDependenciesResult_t W32_ARRAY(uint32_t, 32, m_rgAppIDs); uint32_t m_nNumAppDependencies; uint32_t m_nTotalNumAppDependencies; +#ifdef __cplusplus + operator u32_GetAppDependenciesResult_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4105,6 +4252,9 @@ struct u32_GetAppDependenciesResult_t U32_ARRAY(uint32_t, 32, m_rgAppIDs); uint32_t m_nNumAppDependencies; uint32_t m_nTotalNumAppDependencies; +#ifdef __cplusplus + operator w32_GetAppDependenciesResult_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4123,6 +4273,9 @@ struct w64_HTML_ChangedTitle_t uint32_t unBrowserHandle; uint8_t __pad_4[4]; W64_PTR(const char *pchTitle, pchTitle); +#ifdef __cplusplus + operator u64_HTML_ChangedTitle_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4131,6 +4284,9 @@ struct u64_HTML_ChangedTitle_t { uint32_t unBrowserHandle; U64_PTR(const char *pchTitle, pchTitle); +#ifdef __cplusplus + operator w64_HTML_ChangedTitle_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4159,6 +4315,9 @@ struct w64_HTML_ComboNeedsPaint_t W64_PTR(const char *pBGRA, pBGRA); uint32_t unWide; uint32_t unTall; +#ifdef __cplusplus + operator u64_HTML_ComboNeedsPaint_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4169,6 +4328,9 @@ struct u64_HTML_ComboNeedsPaint_t U64_PTR(const char *pBGRA, pBGRA); uint32_t unWide; uint32_t unTall; +#ifdef __cplusplus + operator w64_HTML_ComboNeedsPaint_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4198,6 +4360,9 @@ struct w64_HTML_FileOpenDialog_t uint8_t __pad_4[4]; W64_PTR(const char *pchTitle, pchTitle); W64_PTR(const char *pchInitialFile, pchInitialFile); +#ifdef __cplusplus + operator u64_HTML_FileOpenDialog_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4207,6 +4372,9 @@ struct u64_HTML_FileOpenDialog_t uint32_t unBrowserHandle; U64_PTR(const char *pchTitle, pchTitle); U64_PTR(const char *pchInitialFile, pchInitialFile); +#ifdef __cplusplus + operator w64_HTML_FileOpenDialog_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4216,6 +4384,9 @@ struct w32_HTML_FileOpenDialog_t uint32_t unBrowserHandle; W32_PTR(const char *pchTitle, pchTitle); W32_PTR(const char *pchInitialFile, pchInitialFile); +#ifdef __cplusplus + operator u32_HTML_FileOpenDialog_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4225,6 +4396,9 @@ struct u32_HTML_FileOpenDialog_t uint32_t unBrowserHandle; U32_PTR(const char *pchTitle, pchTitle); U32_PTR(const char *pchInitialFile, pchInitialFile); +#ifdef __cplusplus + operator w32_HTML_FileOpenDialog_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4244,6 +4418,9 @@ struct w64_HTML_FinishedRequest_t uint8_t __pad_4[4]; W64_PTR(const char *pchURL, pchURL); W64_PTR(const char *pchPageTitle, pchPageTitle); +#ifdef __cplusplus + operator u64_HTML_FinishedRequest_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4253,6 +4430,9 @@ struct u64_HTML_FinishedRequest_t uint32_t unBrowserHandle; U64_PTR(const char *pchURL, pchURL); U64_PTR(const char *pchPageTitle, pchPageTitle); +#ifdef __cplusplus + operator w64_HTML_FinishedRequest_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4262,6 +4442,9 @@ struct w32_HTML_FinishedRequest_t uint32_t unBrowserHandle; W32_PTR(const char *pchURL, pchURL); W32_PTR(const char *pchPageTitle, pchPageTitle); +#ifdef __cplusplus + operator u32_HTML_FinishedRequest_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4271,6 +4454,9 @@ struct u32_HTML_FinishedRequest_t uint32_t unBrowserHandle; U32_PTR(const char *pchURL, pchURL); U32_PTR(const char *pchPageTitle, pchPageTitle); +#ifdef __cplusplus + operator w32_HTML_FinishedRequest_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4289,6 +4475,9 @@ struct w64_HTML_JSAlert_t uint32_t unBrowserHandle; uint8_t __pad_4[4]; W64_PTR(const char *pchMessage, pchMessage); +#ifdef __cplusplus + operator u64_HTML_JSAlert_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4297,6 +4486,9 @@ struct u64_HTML_JSAlert_t { uint32_t unBrowserHandle; U64_PTR(const char *pchMessage, pchMessage); +#ifdef __cplusplus + operator w64_HTML_JSAlert_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4323,6 +4515,9 @@ struct w64_HTML_JSConfirm_t uint32_t unBrowserHandle; uint8_t __pad_4[4]; W64_PTR(const char *pchMessage, pchMessage); +#ifdef __cplusplus + operator u64_HTML_JSConfirm_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4331,6 +4526,9 @@ struct u64_HTML_JSConfirm_t { uint32_t unBrowserHandle; U64_PTR(const char *pchMessage, pchMessage); +#ifdef __cplusplus + operator w64_HTML_JSConfirm_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4362,6 +4560,9 @@ struct w64_HTML_LinkAtPosition_t bool bInput; bool bLiveLink; uint8_t __pad_26[6]; +#ifdef __cplusplus + operator u64_HTML_LinkAtPosition_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4375,6 +4576,9 @@ struct u64_HTML_LinkAtPosition_t bool bInput; bool bLiveLink; uint8_t __pad_22[2]; +#ifdef __cplusplus + operator w64_HTML_LinkAtPosition_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4388,6 +4592,9 @@ struct w32_HTML_LinkAtPosition_t bool bInput; bool bLiveLink; uint8_t __pad_18[2]; +#ifdef __cplusplus + operator u32_HTML_LinkAtPosition_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4401,6 +4608,9 @@ struct u32_HTML_LinkAtPosition_t bool bInput; bool bLiveLink; uint8_t __pad_18[2]; +#ifdef __cplusplus + operator w32_HTML_LinkAtPosition_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4429,6 +4639,9 @@ struct w64_HTML_NeedsPaint_t uint32_t unScrollY; float flPageScale; uint32_t unPageSerial; +#ifdef __cplusplus + operator u64_HTML_NeedsPaint_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4447,6 +4660,9 @@ struct u64_HTML_NeedsPaint_t uint32_t unScrollY; float flPageScale; uint32_t unPageSerial; +#ifdef __cplusplus + operator w64_HTML_NeedsPaint_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4489,6 +4705,9 @@ struct w64_HTML_NewWindow_t_132x uint32_t unTall; uint32_t unNewWindow_BrowserHandle_IGNORE; uint8_t __pad_36[4]; +#ifdef __cplusplus + operator u64_HTML_NewWindow_t_132x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4502,6 +4721,9 @@ struct u64_HTML_NewWindow_t_132x uint32_t unWide; uint32_t unTall; uint32_t unNewWindow_BrowserHandle_IGNORE; +#ifdef __cplusplus + operator w64_HTML_NewWindow_t_132x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4515,6 +4737,9 @@ struct w32_HTML_NewWindow_t_132x uint32_t unWide; uint32_t unTall; uint32_t unNewWindow_BrowserHandle_IGNORE; +#ifdef __cplusplus + operator u32_HTML_NewWindow_t_132x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4528,6 +4753,9 @@ struct u32_HTML_NewWindow_t_132x uint32_t unWide; uint32_t unTall; uint32_t unNewWindow_BrowserHandle_IGNORE; +#ifdef __cplusplus + operator w32_HTML_NewWindow_t_132x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4550,6 +4778,9 @@ struct w64_HTML_NewWindow_t_130x uint32_t unY; uint32_t unWide; uint32_t unTall; +#ifdef __cplusplus + operator u64_HTML_NewWindow_t_130x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4562,6 +4793,9 @@ struct u64_HTML_NewWindow_t_130x uint32_t unY; uint32_t unWide; uint32_t unTall; +#ifdef __cplusplus + operator w64_HTML_NewWindow_t_130x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4574,6 +4808,9 @@ struct w32_HTML_NewWindow_t_130x uint32_t unY; uint32_t unWide; uint32_t unTall; +#ifdef __cplusplus + operator u32_HTML_NewWindow_t_130x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4586,6 +4823,9 @@ struct u32_HTML_NewWindow_t_130x uint32_t unY; uint32_t unWide; uint32_t unTall; +#ifdef __cplusplus + operator w32_HTML_NewWindow_t_130x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4604,6 +4844,9 @@ struct w64_HTML_OpenLinkInNewTab_t uint32_t unBrowserHandle; uint8_t __pad_4[4]; W64_PTR(const char *pchURL, pchURL); +#ifdef __cplusplus + operator u64_HTML_OpenLinkInNewTab_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4612,6 +4855,9 @@ struct u64_HTML_OpenLinkInNewTab_t { uint32_t unBrowserHandle; U64_PTR(const char *pchURL, pchURL); +#ifdef __cplusplus + operator w64_HTML_OpenLinkInNewTab_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4620,6 +4866,9 @@ struct w32_HTML_OpenLinkInNewTab_t { uint32_t unBrowserHandle; W32_PTR(const char *pchURL, pchURL); +#ifdef __cplusplus + operator u32_HTML_OpenLinkInNewTab_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4628,6 +4877,9 @@ struct u32_HTML_OpenLinkInNewTab_t { uint32_t unBrowserHandle; U32_PTR(const char *pchURL, pchURL); +#ifdef __cplusplus + operator w32_HTML_OpenLinkInNewTab_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4646,6 +4898,9 @@ struct w64_HTML_ShowToolTip_t uint32_t unBrowserHandle; uint8_t __pad_4[4]; W64_PTR(const char *pchMsg, pchMsg); +#ifdef __cplusplus + operator u64_HTML_ShowToolTip_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4654,6 +4909,9 @@ struct u64_HTML_ShowToolTip_t { uint32_t unBrowserHandle; U64_PTR(const char *pchMsg, pchMsg); +#ifdef __cplusplus + operator w64_HTML_ShowToolTip_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4684,6 +4942,9 @@ struct w64_HTML_StartRequest_t W64_PTR(const char *pchPostData, pchPostData); bool bIsRedirect; uint8_t __pad_33[7]; +#ifdef __cplusplus + operator u64_HTML_StartRequest_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4696,6 +4957,9 @@ struct u64_HTML_StartRequest_t U64_PTR(const char *pchPostData, pchPostData); bool bIsRedirect; uint8_t __pad_29[3]; +#ifdef __cplusplus + operator w64_HTML_StartRequest_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4708,6 +4972,9 @@ struct w32_HTML_StartRequest_t W32_PTR(const char *pchPostData, pchPostData); bool bIsRedirect; uint8_t __pad_17[3]; +#ifdef __cplusplus + operator u32_HTML_StartRequest_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4720,6 +4987,9 @@ struct u32_HTML_StartRequest_t U32_PTR(const char *pchPostData, pchPostData); bool bIsRedirect; uint8_t __pad_17[3]; +#ifdef __cplusplus + operator w32_HTML_StartRequest_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4738,6 +5008,9 @@ struct w64_HTML_StatusText_t uint32_t unBrowserHandle; uint8_t __pad_4[4]; W64_PTR(const char *pchMsg, pchMsg); +#ifdef __cplusplus + operator u64_HTML_StatusText_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4746,6 +5019,9 @@ struct u64_HTML_StatusText_t { uint32_t unBrowserHandle; U64_PTR(const char *pchMsg, pchMsg); +#ifdef __cplusplus + operator w64_HTML_StatusText_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4778,6 +5054,9 @@ struct w64_HTML_URLChanged_t W64_PTR(const char *pchPageTitle, pchPageTitle); bool bNewNavigation; uint8_t __pad_41[7]; +#ifdef __cplusplus + operator u64_HTML_URLChanged_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4792,6 +5071,9 @@ struct u64_HTML_URLChanged_t U64_PTR(const char *pchPageTitle, pchPageTitle); bool bNewNavigation; uint8_t __pad_33[3]; +#ifdef __cplusplus + operator w64_HTML_URLChanged_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4806,6 +5088,9 @@ struct w32_HTML_URLChanged_t W32_PTR(const char *pchPageTitle, pchPageTitle); bool bNewNavigation; uint8_t __pad_21[3]; +#ifdef __cplusplus + operator u32_HTML_URLChanged_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4820,6 +5105,9 @@ struct u32_HTML_URLChanged_t U32_PTR(const char *pchPageTitle, pchPageTitle); bool bNewNavigation; uint8_t __pad_21[3]; +#ifdef __cplusplus + operator w32_HTML_URLChanged_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4838,6 +5126,9 @@ struct w64_HTML_UpdateToolTip_t uint32_t unBrowserHandle; uint8_t __pad_4[4]; W64_PTR(const char *pchMsg, pchMsg); +#ifdef __cplusplus + operator u64_HTML_UpdateToolTip_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4846,6 +5137,9 @@ struct u64_HTML_UpdateToolTip_t { uint32_t unBrowserHandle; U64_PTR(const char *pchMsg, pchMsg); +#ifdef __cplusplus + operator w64_HTML_UpdateToolTip_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4877,6 +5171,9 @@ struct w64_HTTPRequestCompleted_t_132x uint32_t m_eStatusCode; uint32_t m_unBodySize; uint8_t __pad_28[4]; +#ifdef __cplusplus + operator u64_HTTPRequestCompleted_t_132x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4889,6 +5186,9 @@ struct u64_HTTPRequestCompleted_t_132x uint8_t __pad_13[3]; uint32_t m_eStatusCode; uint32_t m_unBodySize; +#ifdef __cplusplus + operator w64_HTTPRequestCompleted_t_132x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4903,6 +5203,9 @@ struct w32_HTTPRequestCompleted_t_132x uint32_t m_eStatusCode; uint32_t m_unBodySize; uint8_t __pad_28[4]; +#ifdef __cplusplus + operator u32_HTTPRequestCompleted_t_132x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4915,6 +5218,9 @@ struct u32_HTTPRequestCompleted_t_132x uint8_t __pad_13[3]; uint32_t m_eStatusCode; uint32_t m_unBodySize; +#ifdef __cplusplus + operator w32_HTTPRequestCompleted_t_132x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4936,6 +5242,9 @@ struct w64_HTTPRequestCompleted_t_123 bool m_bRequestSuccessful; uint8_t __pad_17[3]; uint32_t m_eStatusCode; +#ifdef __cplusplus + operator u64_HTTPRequestCompleted_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4947,6 +5256,9 @@ struct u64_HTTPRequestCompleted_t_123 bool m_bRequestSuccessful; uint8_t __pad_13[3]; uint32_t m_eStatusCode; +#ifdef __cplusplus + operator w64_HTTPRequestCompleted_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4959,6 +5271,9 @@ struct w32_HTTPRequestCompleted_t_123 bool m_bRequestSuccessful; uint8_t __pad_17[3]; uint32_t m_eStatusCode; +#ifdef __cplusplus + operator u32_HTTPRequestCompleted_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -4970,6 +5285,9 @@ struct u32_HTTPRequestCompleted_t_123 bool m_bRequestSuccessful; uint8_t __pad_13[3]; uint32_t m_eStatusCode; +#ifdef __cplusplus + operator w32_HTTPRequestCompleted_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5003,6 +5321,9 @@ struct w32_HTTPRequestCompleted_t_115 bool m_bRequestSuccessful; uint8_t __pad_17[3]; uint32_t m_eStatusCode; +#ifdef __cplusplus + operator u32_HTTPRequestCompleted_t_115() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5014,6 +5335,9 @@ struct u32_HTTPRequestCompleted_t_115 bool m_bRequestSuccessful; uint8_t __pad_13[3]; uint32_t m_eStatusCode; +#ifdef __cplusplus + operator w32_HTTPRequestCompleted_t_115() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5034,6 +5358,9 @@ struct w64_HTTPRequestDataReceived_t_123 uint64_t m_ulContextValue; uint32_t m_cOffset; uint32_t m_cBytesReceived; +#ifdef __cplusplus + operator u64_HTTPRequestDataReceived_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5044,6 +5371,9 @@ struct u64_HTTPRequestDataReceived_t_123 uint64_t m_ulContextValue; uint32_t m_cOffset; uint32_t m_cBytesReceived; +#ifdef __cplusplus + operator w64_HTTPRequestDataReceived_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5055,6 +5385,9 @@ struct w32_HTTPRequestDataReceived_t_123 uint64_t m_ulContextValue; uint32_t m_cOffset; uint32_t m_cBytesReceived; +#ifdef __cplusplus + operator u32_HTTPRequestDataReceived_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5065,6 +5398,9 @@ struct u32_HTTPRequestDataReceived_t_123 uint64_t m_ulContextValue; uint32_t m_cOffset; uint32_t m_cBytesReceived; +#ifdef __cplusplus + operator w32_HTTPRequestDataReceived_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5096,6 +5432,9 @@ struct w32_HTTPRequestDataReceived_t_121x uint64_t m_ulContextValue; uint32_t m_cOffset; uint32_t m_cBytesReceived; +#ifdef __cplusplus + operator u32_HTTPRequestDataReceived_t_121x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5106,6 +5445,9 @@ struct u32_HTTPRequestDataReceived_t_121x uint64_t m_ulContextValue; uint32_t m_cOffset; uint32_t m_cBytesReceived; +#ifdef __cplusplus + operator w32_HTTPRequestDataReceived_t_121x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5124,6 +5466,9 @@ struct w64_HTTPRequestHeadersReceived_t_123 uint32_t m_hRequest; uint8_t __pad_4[4]; uint64_t m_ulContextValue; +#ifdef __cplusplus + operator u64_HTTPRequestHeadersReceived_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5132,6 +5477,9 @@ struct u64_HTTPRequestHeadersReceived_t_123 { uint32_t m_hRequest; uint64_t m_ulContextValue; +#ifdef __cplusplus + operator w64_HTTPRequestHeadersReceived_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5141,6 +5489,9 @@ struct w32_HTTPRequestHeadersReceived_t_123 uint32_t m_hRequest; uint8_t __pad_4[4]; uint64_t m_ulContextValue; +#ifdef __cplusplus + operator u32_HTTPRequestHeadersReceived_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5149,6 +5500,9 @@ struct u32_HTTPRequestHeadersReceived_t_123 { uint32_t m_hRequest; uint64_t m_ulContextValue; +#ifdef __cplusplus + operator w32_HTTPRequestHeadersReceived_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5176,6 +5530,9 @@ struct w32_HTTPRequestHeadersReceived_t_121x uint32_t m_hRequest; uint8_t __pad_4[4]; uint64_t m_ulContextValue; +#ifdef __cplusplus + operator u32_HTTPRequestHeadersReceived_t_121x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5184,6 +5541,9 @@ struct u32_HTTPRequestHeadersReceived_t_121x { uint32_t m_hRequest; uint64_t m_ulContextValue; +#ifdef __cplusplus + operator w32_HTTPRequestHeadersReceived_t_121x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5304,6 +5664,9 @@ struct w64_ItemInstalled_t uint32_t m_unAppID; uint8_t __pad_4[4]; uint64_t m_nPublishedFileId; +#ifdef __cplusplus + operator u64_ItemInstalled_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5312,6 +5675,9 @@ struct u64_ItemInstalled_t { uint32_t m_unAppID; uint64_t m_nPublishedFileId; +#ifdef __cplusplus + operator w64_ItemInstalled_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5321,6 +5687,9 @@ struct w32_ItemInstalled_t uint32_t m_unAppID; uint8_t __pad_4[4]; uint64_t m_nPublishedFileId; +#ifdef __cplusplus + operator u32_ItemInstalled_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5329,6 +5698,9 @@ struct u32_ItemInstalled_t { uint32_t m_unAppID; uint64_t m_nPublishedFileId; +#ifdef __cplusplus + operator w32_ItemInstalled_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5349,6 +5721,9 @@ struct w64_JoinPartyCallback_t uint64_t m_ulBeaconID; CSteamID m_SteamIDBeaconOwner; W64_ARRAY(char, 256, m_rgchConnectString); +#ifdef __cplusplus + operator u64_JoinPartyCallback_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5359,6 +5734,9 @@ struct u64_JoinPartyCallback_t uint64_t m_ulBeaconID; CSteamID m_SteamIDBeaconOwner; U64_ARRAY(char, 256, m_rgchConnectString); +#ifdef __cplusplus + operator w64_JoinPartyCallback_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5370,6 +5748,9 @@ struct w32_JoinPartyCallback_t uint64_t m_ulBeaconID; CSteamID m_SteamIDBeaconOwner; W32_ARRAY(char, 256, m_rgchConnectString); +#ifdef __cplusplus + operator u32_JoinPartyCallback_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5380,6 +5761,9 @@ struct u32_JoinPartyCallback_t uint64_t m_ulBeaconID; CSteamID m_SteamIDBeaconOwner; U32_ARRAY(char, 256, m_rgchConnectString); +#ifdef __cplusplus + operator w32_JoinPartyCallback_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5401,6 +5785,9 @@ struct w64_LeaderboardEntry_t_123 int32_t m_cDetails; uint8_t __pad_20[4]; uint64_t m_hUGC; +#ifdef __cplusplus + operator u64_LeaderboardEntry_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5412,6 +5799,9 @@ struct u64_LeaderboardEntry_t_123 int32_t m_nScore; int32_t m_cDetails; uint64_t m_hUGC; +#ifdef __cplusplus + operator w64_LeaderboardEntry_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5424,6 +5814,9 @@ struct w32_LeaderboardEntry_t_123 int32_t m_cDetails; uint8_t __pad_20[4]; uint64_t m_hUGC; +#ifdef __cplusplus + operator u32_LeaderboardEntry_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5435,6 +5828,9 @@ struct u32_LeaderboardEntry_t_123 int32_t m_nScore; int32_t m_cDetails; uint64_t m_hUGC; +#ifdef __cplusplus + operator w32_LeaderboardEntry_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5468,6 +5864,9 @@ struct w32_LeaderboardEntry_t_111x int32_t m_cDetails; uint8_t __pad_20[4]; uint64_t m_hUGC; +#ifdef __cplusplus + operator u32_LeaderboardEntry_t_111x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5479,6 +5878,9 @@ struct u32_LeaderboardEntry_t_111x int32_t m_nScore; int32_t m_cDetails; uint64_t m_hUGC; +#ifdef __cplusplus + operator w32_LeaderboardEntry_t_111x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5531,6 +5933,9 @@ struct w64_LeaderboardScoreUploaded_t_123 uint8_t __pad_21[3]; int32_t m_nGlobalRankNew; int32_t m_nGlobalRankPrevious; +#ifdef __cplusplus + operator u64_LeaderboardScoreUploaded_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5545,6 +5950,9 @@ struct u64_LeaderboardScoreUploaded_t_123 uint8_t __pad_17[3]; int32_t m_nGlobalRankNew; int32_t m_nGlobalRankPrevious; +#ifdef __cplusplus + operator w64_LeaderboardScoreUploaded_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5559,6 +5967,9 @@ struct w32_LeaderboardScoreUploaded_t_123 uint8_t __pad_21[3]; int32_t m_nGlobalRankNew; int32_t m_nGlobalRankPrevious; +#ifdef __cplusplus + operator u32_LeaderboardScoreUploaded_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5573,6 +5984,9 @@ struct u32_LeaderboardScoreUploaded_t_123 uint8_t __pad_17[3]; int32_t m_nGlobalRankNew; int32_t m_nGlobalRankPrevious; +#ifdef __cplusplus + operator w32_LeaderboardScoreUploaded_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5610,6 +6024,9 @@ struct w32_LeaderboardScoreUploaded_t_104 uint8_t __pad_21[3]; int32_t m_nGlobalRankNew; int32_t m_nGlobalRankPrevious; +#ifdef __cplusplus + operator u32_LeaderboardScoreUploaded_t_104() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5624,6 +6041,9 @@ struct u32_LeaderboardScoreUploaded_t_104 uint8_t __pad_17[3]; int32_t m_nGlobalRankNew; int32_t m_nGlobalRankPrevious; +#ifdef __cplusplus + operator w32_LeaderboardScoreUploaded_t_104() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5642,6 +6062,9 @@ struct w64_LeaderboardUGCSet_t_123 uint32_t m_eResult; uint8_t __pad_4[4]; uint64_t m_hSteamLeaderboard; +#ifdef __cplusplus + operator u64_LeaderboardUGCSet_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5650,6 +6073,9 @@ struct u64_LeaderboardUGCSet_t_123 { uint32_t m_eResult; uint64_t m_hSteamLeaderboard; +#ifdef __cplusplus + operator w64_LeaderboardUGCSet_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5659,6 +6085,9 @@ struct w32_LeaderboardUGCSet_t_123 uint32_t m_eResult; uint8_t __pad_4[4]; uint64_t m_hSteamLeaderboard; +#ifdef __cplusplus + operator u32_LeaderboardUGCSet_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5667,6 +6096,9 @@ struct u32_LeaderboardUGCSet_t_123 { uint32_t m_eResult; uint64_t m_hSteamLeaderboard; +#ifdef __cplusplus + operator w32_LeaderboardUGCSet_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5694,6 +6126,9 @@ struct w32_LeaderboardUGCSet_t_111x uint32_t m_eResult; uint8_t __pad_4[4]; uint64_t m_hSteamLeaderboard; +#ifdef __cplusplus + operator u32_LeaderboardUGCSet_t_111x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5702,6 +6137,9 @@ struct u32_LeaderboardUGCSet_t_111x { uint32_t m_eResult; uint64_t m_hSteamLeaderboard; +#ifdef __cplusplus + operator w32_LeaderboardUGCSet_t_111x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5720,6 +6158,9 @@ struct w64_LobbyCreated_t_123 uint32_t m_eResult; uint8_t __pad_4[4]; uint64_t m_ulSteamIDLobby; +#ifdef __cplusplus + operator u64_LobbyCreated_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5728,6 +6169,9 @@ struct u64_LobbyCreated_t_123 { uint32_t m_eResult; uint64_t m_ulSteamIDLobby; +#ifdef __cplusplus + operator w64_LobbyCreated_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5737,6 +6181,9 @@ struct w32_LobbyCreated_t_123 uint32_t m_eResult; uint8_t __pad_4[4]; uint64_t m_ulSteamIDLobby; +#ifdef __cplusplus + operator u32_LobbyCreated_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5745,6 +6192,9 @@ struct u32_LobbyCreated_t_123 { uint32_t m_eResult; uint64_t m_ulSteamIDLobby; +#ifdef __cplusplus + operator w32_LobbyCreated_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5772,6 +6222,9 @@ struct w32_LobbyCreated_t_099u uint32_t m_eResult; uint8_t __pad_4[4]; uint64_t m_ulSteamIDLobby; +#ifdef __cplusplus + operator u32_LobbyCreated_t_099u() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5780,6 +6233,9 @@ struct u32_LobbyCreated_t_099u { uint32_t m_eResult; uint64_t m_ulSteamIDLobby; +#ifdef __cplusplus + operator w32_LobbyCreated_t_099u() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5800,6 +6256,9 @@ struct w64_MicroTxnAuthorizationResponse_t_123 uint64_t m_ulOrderID; uint8_t m_bAuthorized; uint8_t __pad_17[7]; +#ifdef __cplusplus + operator u64_MicroTxnAuthorizationResponse_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5810,6 +6269,9 @@ struct u64_MicroTxnAuthorizationResponse_t_123 uint64_t m_ulOrderID; uint8_t m_bAuthorized; uint8_t __pad_13[3]; +#ifdef __cplusplus + operator w64_MicroTxnAuthorizationResponse_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5821,6 +6283,9 @@ struct w32_MicroTxnAuthorizationResponse_t_123 uint64_t m_ulOrderID; uint8_t m_bAuthorized; uint8_t __pad_17[7]; +#ifdef __cplusplus + operator u32_MicroTxnAuthorizationResponse_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5831,6 +6296,9 @@ struct u32_MicroTxnAuthorizationResponse_t_123 uint64_t m_ulOrderID; uint8_t m_bAuthorized; uint8_t __pad_13[3]; +#ifdef __cplusplus + operator w32_MicroTxnAuthorizationResponse_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5862,6 +6330,9 @@ struct w32_MicroTxnAuthorizationResponse_t_109 uint64_t m_ulOrderID; uint8_t m_bAuthorized; uint8_t __pad_17[7]; +#ifdef __cplusplus + operator u32_MicroTxnAuthorizationResponse_t_109() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5872,6 +6343,9 @@ struct u32_MicroTxnAuthorizationResponse_t_109 uint64_t m_ulOrderID; uint8_t m_bAuthorized; uint8_t __pad_13[3]; +#ifdef __cplusplus + operator w32_MicroTxnAuthorizationResponse_t_109() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5891,6 +6365,9 @@ struct w64_PS3TrophiesInstalled_t_123 uint32_t m_eResult; uint8_t __pad_12[4]; uint64_t m_ulRequiredDiskSpace; +#ifdef __cplusplus + operator u64_PS3TrophiesInstalled_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5900,6 +6377,9 @@ struct u64_PS3TrophiesInstalled_t_123 uint64_t m_nGameID; uint32_t m_eResult; uint64_t m_ulRequiredDiskSpace; +#ifdef __cplusplus + operator w64_PS3TrophiesInstalled_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5910,6 +6390,9 @@ struct w32_PS3TrophiesInstalled_t_123 uint32_t m_eResult; uint8_t __pad_12[4]; uint64_t m_ulRequiredDiskSpace; +#ifdef __cplusplus + operator u32_PS3TrophiesInstalled_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5919,6 +6402,9 @@ struct u32_PS3TrophiesInstalled_t_123 uint64_t m_nGameID; uint32_t m_eResult; uint64_t m_ulRequiredDiskSpace; +#ifdef __cplusplus + operator w32_PS3TrophiesInstalled_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5948,6 +6434,9 @@ struct w32_PS3TrophiesInstalled_t_112x uint32_t m_eResult; uint8_t __pad_12[4]; uint64_t m_ulRequiredDiskSpace; +#ifdef __cplusplus + operator u32_PS3TrophiesInstalled_t_112x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5957,6 +6446,9 @@ struct u32_PS3TrophiesInstalled_t_112x uint64_t m_nGameID; uint32_t m_eResult; uint64_t m_ulRequiredDiskSpace; +#ifdef __cplusplus + operator w32_PS3TrophiesInstalled_t_112x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5979,6 +6471,9 @@ struct w64_RemoteStorageAppSyncProgress_t_123 double m_dAppPercentComplete; bool m_bUploading; uint8_t __pad_281[7]; +#ifdef __cplusplus + operator u64_RemoteStorageAppSyncProgress_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -5991,6 +6486,9 @@ struct u64_RemoteStorageAppSyncProgress_t_123 double m_dAppPercentComplete; bool m_bUploading; uint8_t __pad_277[3]; +#ifdef __cplusplus + operator w64_RemoteStorageAppSyncProgress_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6004,6 +6502,9 @@ struct w32_RemoteStorageAppSyncProgress_t_123 double m_dAppPercentComplete; bool m_bUploading; uint8_t __pad_281[7]; +#ifdef __cplusplus + operator u32_RemoteStorageAppSyncProgress_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6016,6 +6517,9 @@ struct u32_RemoteStorageAppSyncProgress_t_123 double m_dAppPercentComplete; bool m_bUploading; uint8_t __pad_277[3]; +#ifdef __cplusplus + operator w32_RemoteStorageAppSyncProgress_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6051,6 +6555,9 @@ struct w32_RemoteStorageAppSyncProgress_t_111x double m_dAppPercentComplete; bool m_bUploading; uint8_t __pad_281[7]; +#ifdef __cplusplus + operator u32_RemoteStorageAppSyncProgress_t_111x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6063,6 +6570,9 @@ struct u32_RemoteStorageAppSyncProgress_t_111x double m_dAppPercentComplete; bool m_bUploading; uint8_t __pad_277[3]; +#ifdef __cplusplus + operator w32_RemoteStorageAppSyncProgress_t_111x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6081,6 +6591,9 @@ struct w64_RemoteStorageDeletePublishedFileResult_t_123 uint32_t m_eResult; uint8_t __pad_4[4]; uint64_t m_nPublishedFileId; +#ifdef __cplusplus + operator u64_RemoteStorageDeletePublishedFileResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6089,6 +6602,9 @@ struct u64_RemoteStorageDeletePublishedFileResult_t_123 { uint32_t m_eResult; uint64_t m_nPublishedFileId; +#ifdef __cplusplus + operator w64_RemoteStorageDeletePublishedFileResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6098,6 +6614,9 @@ struct w32_RemoteStorageDeletePublishedFileResult_t_123 uint32_t m_eResult; uint8_t __pad_4[4]; uint64_t m_nPublishedFileId; +#ifdef __cplusplus + operator u32_RemoteStorageDeletePublishedFileResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6106,6 +6625,9 @@ struct u32_RemoteStorageDeletePublishedFileResult_t_123 { uint32_t m_eResult; uint64_t m_nPublishedFileId; +#ifdef __cplusplus + operator w32_RemoteStorageDeletePublishedFileResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6133,6 +6655,9 @@ struct w32_RemoteStorageDeletePublishedFileResult_t_116x uint32_t m_eResult; uint8_t __pad_4[4]; uint64_t m_nPublishedFileId; +#ifdef __cplusplus + operator u32_RemoteStorageDeletePublishedFileResult_t_116x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6141,6 +6666,9 @@ struct u32_RemoteStorageDeletePublishedFileResult_t_116x { uint32_t m_eResult; uint64_t m_nPublishedFileId; +#ifdef __cplusplus + operator w32_RemoteStorageDeletePublishedFileResult_t_116x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6164,6 +6692,9 @@ struct w64_RemoteStorageDownloadUGCResult_t_123 W64_ARRAY(char, 260, m_pchFileName); uint8_t __pad_284[4]; uint64_t m_ulSteamIDOwner; +#ifdef __cplusplus + operator u64_RemoteStorageDownloadUGCResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6176,6 +6707,9 @@ struct u64_RemoteStorageDownloadUGCResult_t_123 int32_t m_nSizeInBytes; U64_ARRAY(char, 260, m_pchFileName); uint64_t m_ulSteamIDOwner; +#ifdef __cplusplus + operator w64_RemoteStorageDownloadUGCResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6190,6 +6724,9 @@ struct w32_RemoteStorageDownloadUGCResult_t_123 W32_ARRAY(char, 260, m_pchFileName); uint8_t __pad_284[4]; uint64_t m_ulSteamIDOwner; +#ifdef __cplusplus + operator u32_RemoteStorageDownloadUGCResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6202,6 +6739,9 @@ struct u32_RemoteStorageDownloadUGCResult_t_123 int32_t m_nSizeInBytes; U32_ARRAY(char, 260, m_pchFileName); uint64_t m_ulSteamIDOwner; +#ifdef __cplusplus + operator w32_RemoteStorageDownloadUGCResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6239,6 +6779,9 @@ struct w32_RemoteStorageDownloadUGCResult_t_116x W32_ARRAY(char, 260, m_pchFileName); uint8_t __pad_284[4]; uint64_t m_ulSteamIDOwner; +#ifdef __cplusplus + operator u32_RemoteStorageDownloadUGCResult_t_116x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6251,6 +6794,9 @@ struct u32_RemoteStorageDownloadUGCResult_t_116x int32_t m_nSizeInBytes; U32_ARRAY(char, 260, m_pchFileName); uint64_t m_ulSteamIDOwner; +#ifdef __cplusplus + operator w32_RemoteStorageDownloadUGCResult_t_116x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6287,6 +6833,9 @@ struct w32_RemoteStorageDownloadUGCResult_t_111x W32_PTR(char *m_pchFileName, m_pchFileName); uint8_t __pad_28[4]; uint64_t m_ulSteamIDOwner; +#ifdef __cplusplus + operator u32_RemoteStorageDownloadUGCResult_t_111x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6299,6 +6848,9 @@ struct u32_RemoteStorageDownloadUGCResult_t_111x int32_t m_nSizeInBytes; U32_PTR(char *m_pchFileName, m_pchFileName); uint64_t m_ulSteamIDOwner; +#ifdef __cplusplus + operator w32_RemoteStorageDownloadUGCResult_t_111x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6319,6 +6871,9 @@ struct w64_RemoteStorageEnumerateUserPublishedFilesResult_t_123 int32_t m_nTotalResultCount; uint8_t __pad_12[4]; W64_ARRAY(uint64_t, 50, m_rgPublishedFileId); +#ifdef __cplusplus + operator u64_RemoteStorageEnumerateUserPublishedFilesResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6329,6 +6884,9 @@ struct u64_RemoteStorageEnumerateUserPublishedFilesResult_t_123 int32_t m_nResultsReturned; int32_t m_nTotalResultCount; U64_ARRAY(uint64_t, 50, m_rgPublishedFileId); +#ifdef __cplusplus + operator w64_RemoteStorageEnumerateUserPublishedFilesResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6340,6 +6898,9 @@ struct w32_RemoteStorageEnumerateUserPublishedFilesResult_t_123 int32_t m_nTotalResultCount; uint8_t __pad_12[4]; W32_ARRAY(uint64_t, 50, m_rgPublishedFileId); +#ifdef __cplusplus + operator u32_RemoteStorageEnumerateUserPublishedFilesResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6350,6 +6911,9 @@ struct u32_RemoteStorageEnumerateUserPublishedFilesResult_t_123 int32_t m_nResultsReturned; int32_t m_nTotalResultCount; U32_ARRAY(uint64_t, 50, m_rgPublishedFileId); +#ifdef __cplusplus + operator w32_RemoteStorageEnumerateUserPublishedFilesResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6381,6 +6945,9 @@ struct w32_RemoteStorageEnumerateUserPublishedFilesResult_t_116x int32_t m_nTotalResultCount; uint8_t __pad_12[4]; W32_ARRAY(uint64_t, 50, m_rgPublishedFileId); +#ifdef __cplusplus + operator u32_RemoteStorageEnumerateUserPublishedFilesResult_t_116x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6391,6 +6958,9 @@ struct u32_RemoteStorageEnumerateUserPublishedFilesResult_t_116x int32_t m_nResultsReturned; int32_t m_nTotalResultCount; U32_ARRAY(uint64_t, 50, m_rgPublishedFileId); +#ifdef __cplusplus + operator w32_RemoteStorageEnumerateUserPublishedFilesResult_t_116x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6411,6 +6981,9 @@ struct w64_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123 int32_t m_nTotalResultCount; uint8_t __pad_12[4]; W64_ARRAY(uint64_t, 50, m_rgPublishedFileId); +#ifdef __cplusplus + operator u64_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6421,6 +6994,9 @@ struct u64_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123 int32_t m_nResultsReturned; int32_t m_nTotalResultCount; U64_ARRAY(uint64_t, 50, m_rgPublishedFileId); +#ifdef __cplusplus + operator w64_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6432,6 +7008,9 @@ struct w32_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123 int32_t m_nTotalResultCount; uint8_t __pad_12[4]; W32_ARRAY(uint64_t, 50, m_rgPublishedFileId); +#ifdef __cplusplus + operator u32_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6442,6 +7021,9 @@ struct u32_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123 int32_t m_nResultsReturned; int32_t m_nTotalResultCount; U32_ARRAY(uint64_t, 50, m_rgPublishedFileId); +#ifdef __cplusplus + operator w32_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6473,6 +7055,9 @@ struct w32_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_119 int32_t m_nTotalResultCount; uint8_t __pad_12[4]; W32_ARRAY(uint64_t, 50, m_rgPublishedFileId); +#ifdef __cplusplus + operator u32_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_119() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6483,6 +7068,9 @@ struct u32_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_119 int32_t m_nResultsReturned; int32_t m_nTotalResultCount; U32_ARRAY(uint64_t, 50, m_rgPublishedFileId); +#ifdef __cplusplus + operator w32_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_119() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6504,6 +7092,9 @@ struct w64_RemoteStorageEnumerateUserSubscribedFilesResult_t_123 uint8_t __pad_12[4]; W64_ARRAY(uint64_t, 50, m_rgPublishedFileId); W64_ARRAY(uint32_t, 50, m_rgRTimeSubscribed); +#ifdef __cplusplus + operator u64_RemoteStorageEnumerateUserSubscribedFilesResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6515,6 +7106,9 @@ struct u64_RemoteStorageEnumerateUserSubscribedFilesResult_t_123 int32_t m_nTotalResultCount; U64_ARRAY(uint64_t, 50, m_rgPublishedFileId); U64_ARRAY(uint32_t, 50, m_rgRTimeSubscribed); +#ifdef __cplusplus + operator w64_RemoteStorageEnumerateUserSubscribedFilesResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6527,6 +7121,9 @@ struct w32_RemoteStorageEnumerateUserSubscribedFilesResult_t_123 uint8_t __pad_12[4]; W32_ARRAY(uint64_t, 50, m_rgPublishedFileId); W32_ARRAY(uint32_t, 50, m_rgRTimeSubscribed); +#ifdef __cplusplus + operator u32_RemoteStorageEnumerateUserSubscribedFilesResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6538,6 +7135,9 @@ struct u32_RemoteStorageEnumerateUserSubscribedFilesResult_t_123 int32_t m_nTotalResultCount; U32_ARRAY(uint64_t, 50, m_rgPublishedFileId); U32_ARRAY(uint32_t, 50, m_rgRTimeSubscribed); +#ifdef __cplusplus + operator w32_RemoteStorageEnumerateUserSubscribedFilesResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6571,6 +7171,9 @@ struct w32_RemoteStorageEnumerateUserSubscribedFilesResult_t_116x uint8_t __pad_12[4]; W32_ARRAY(uint64_t, 50, m_rgPublishedFileId); W32_ARRAY(uint32_t, 50, m_rgRTimeSubscribed); +#ifdef __cplusplus + operator u32_RemoteStorageEnumerateUserSubscribedFilesResult_t_116x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6582,6 +7185,9 @@ struct u32_RemoteStorageEnumerateUserSubscribedFilesResult_t_116x int32_t m_nTotalResultCount; U32_ARRAY(uint64_t, 50, m_rgPublishedFileId); U32_ARRAY(uint32_t, 50, m_rgRTimeSubscribed); +#ifdef __cplusplus + operator w32_RemoteStorageEnumerateUserSubscribedFilesResult_t_116x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6605,6 +7211,9 @@ struct w64_RemoteStorageEnumerateWorkshopFilesResult_t_125 W64_ARRAY(float, 50, m_rgScore); uint32_t m_nAppId; uint32_t m_unStartIndex; +#ifdef __cplusplus + operator u64_RemoteStorageEnumerateWorkshopFilesResult_t_125() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6618,6 +7227,9 @@ struct u64_RemoteStorageEnumerateWorkshopFilesResult_t_125 U64_ARRAY(float, 50, m_rgScore); uint32_t m_nAppId; uint32_t m_unStartIndex; +#ifdef __cplusplus + operator w64_RemoteStorageEnumerateWorkshopFilesResult_t_125() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6632,6 +7244,9 @@ struct w32_RemoteStorageEnumerateWorkshopFilesResult_t_125 W32_ARRAY(float, 50, m_rgScore); uint32_t m_nAppId; uint32_t m_unStartIndex; +#ifdef __cplusplus + operator u32_RemoteStorageEnumerateWorkshopFilesResult_t_125() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6645,6 +7260,9 @@ struct u32_RemoteStorageEnumerateWorkshopFilesResult_t_125 U32_ARRAY(float, 50, m_rgScore); uint32_t m_nAppId; uint32_t m_unStartIndex; +#ifdef __cplusplus + operator w32_RemoteStorageEnumerateWorkshopFilesResult_t_125() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6666,6 +7284,9 @@ struct w64_RemoteStorageEnumerateWorkshopFilesResult_t_123 uint8_t __pad_12[4]; W64_ARRAY(uint64_t, 50, m_rgPublishedFileId); W64_ARRAY(float, 50, m_rgScore); +#ifdef __cplusplus + operator u64_RemoteStorageEnumerateWorkshopFilesResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6677,6 +7298,9 @@ struct u64_RemoteStorageEnumerateWorkshopFilesResult_t_123 int32_t m_nTotalResultCount; U64_ARRAY(uint64_t, 50, m_rgPublishedFileId); U64_ARRAY(float, 50, m_rgScore); +#ifdef __cplusplus + operator w64_RemoteStorageEnumerateWorkshopFilesResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6689,6 +7313,9 @@ struct w32_RemoteStorageEnumerateWorkshopFilesResult_t_123 uint8_t __pad_12[4]; W32_ARRAY(uint64_t, 50, m_rgPublishedFileId); W32_ARRAY(float, 50, m_rgScore); +#ifdef __cplusplus + operator u32_RemoteStorageEnumerateWorkshopFilesResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6700,6 +7327,9 @@ struct u32_RemoteStorageEnumerateWorkshopFilesResult_t_123 int32_t m_nTotalResultCount; U32_ARRAY(uint64_t, 50, m_rgPublishedFileId); U32_ARRAY(float, 50, m_rgScore); +#ifdef __cplusplus + operator w32_RemoteStorageEnumerateWorkshopFilesResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6733,6 +7363,9 @@ struct w32_RemoteStorageEnumerateWorkshopFilesResult_t_119 uint8_t __pad_12[4]; W32_ARRAY(uint64_t, 50, m_rgPublishedFileId); W32_ARRAY(float, 50, m_rgScore); +#ifdef __cplusplus + operator u32_RemoteStorageEnumerateWorkshopFilesResult_t_119() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6744,6 +7377,9 @@ struct u32_RemoteStorageEnumerateWorkshopFilesResult_t_119 int32_t m_nTotalResultCount; U32_ARRAY(uint64_t, 50, m_rgPublishedFileId); U32_ARRAY(float, 50, m_rgScore); +#ifdef __cplusplus + operator w32_RemoteStorageEnumerateWorkshopFilesResult_t_119() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6764,6 +7400,9 @@ struct w64_RemoteStorageFileShareResult_t_128x uint64_t m_hFile; W64_ARRAY(char, 260, m_rgchFilename); uint8_t __pad_276[4]; +#ifdef __cplusplus + operator u64_RemoteStorageFileShareResult_t_128x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6773,6 +7412,9 @@ struct u64_RemoteStorageFileShareResult_t_128x uint32_t m_eResult; uint64_t m_hFile; U64_ARRAY(char, 260, m_rgchFilename); +#ifdef __cplusplus + operator w64_RemoteStorageFileShareResult_t_128x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6784,6 +7426,9 @@ struct w32_RemoteStorageFileShareResult_t_128x uint64_t m_hFile; W32_ARRAY(char, 260, m_rgchFilename); uint8_t __pad_276[4]; +#ifdef __cplusplus + operator u32_RemoteStorageFileShareResult_t_128x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6793,6 +7438,9 @@ struct u32_RemoteStorageFileShareResult_t_128x uint32_t m_eResult; uint64_t m_hFile; U32_ARRAY(char, 260, m_rgchFilename); +#ifdef __cplusplus + operator w32_RemoteStorageFileShareResult_t_128x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6811,6 +7459,9 @@ struct w64_RemoteStorageFileShareResult_t_123 uint32_t m_eResult; uint8_t __pad_4[4]; uint64_t m_hFile; +#ifdef __cplusplus + operator u64_RemoteStorageFileShareResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6819,6 +7470,9 @@ struct u64_RemoteStorageFileShareResult_t_123 { uint32_t m_eResult; uint64_t m_hFile; +#ifdef __cplusplus + operator w64_RemoteStorageFileShareResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6828,6 +7482,9 @@ struct w32_RemoteStorageFileShareResult_t_123 uint32_t m_eResult; uint8_t __pad_4[4]; uint64_t m_hFile; +#ifdef __cplusplus + operator u32_RemoteStorageFileShareResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6836,6 +7493,9 @@ struct u32_RemoteStorageFileShareResult_t_123 { uint32_t m_eResult; uint64_t m_hFile; +#ifdef __cplusplus + operator w32_RemoteStorageFileShareResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6863,6 +7523,9 @@ struct w32_RemoteStorageFileShareResult_t_111x uint32_t m_eResult; uint8_t __pad_4[4]; uint64_t m_hFile; +#ifdef __cplusplus + operator u32_RemoteStorageFileShareResult_t_111x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6871,6 +7534,9 @@ struct u32_RemoteStorageFileShareResult_t_111x { uint32_t m_eResult; uint64_t m_hFile; +#ifdef __cplusplus + operator w32_RemoteStorageFileShareResult_t_111x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6911,6 +7577,9 @@ struct w64_RemoteStorageGetPublishedFileDetailsResult_t_126 uint32_t m_eFileType; bool m_bAcceptedForUse; uint8_t __pad_9753[7]; +#ifdef __cplusplus + operator u64_RemoteStorageGetPublishedFileDetailsResult_t_126() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6941,6 +7610,9 @@ struct u64_RemoteStorageGetPublishedFileDetailsResult_t_126 uint32_t m_eFileType; bool m_bAcceptedForUse; uint8_t __pad_9745[3]; +#ifdef __cplusplus + operator w64_RemoteStorageGetPublishedFileDetailsResult_t_126() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -6972,6 +7644,9 @@ struct w32_RemoteStorageGetPublishedFileDetailsResult_t_126 uint32_t m_eFileType; bool m_bAcceptedForUse; uint8_t __pad_9753[7]; +#ifdef __cplusplus + operator u32_RemoteStorageGetPublishedFileDetailsResult_t_126() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7002,6 +7677,9 @@ struct u32_RemoteStorageGetPublishedFileDetailsResult_t_126 uint32_t m_eFileType; bool m_bAcceptedForUse; uint8_t __pad_9745[3]; +#ifdef __cplusplus + operator w32_RemoteStorageGetPublishedFileDetailsResult_t_126() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7040,6 +7718,9 @@ struct w64_RemoteStorageGetPublishedFileDetailsResult_t_123 int32_t m_nPreviewFileSize; W64_ARRAY(char, 256, m_rgchURL); uint32_t m_eFileType; +#ifdef __cplusplus + operator u64_RemoteStorageGetPublishedFileDetailsResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7068,6 +7749,9 @@ struct u64_RemoteStorageGetPublishedFileDetailsResult_t_123 int32_t m_nPreviewFileSize; U64_ARRAY(char, 256, m_rgchURL); uint32_t m_eFileType; +#ifdef __cplusplus + operator w64_RemoteStorageGetPublishedFileDetailsResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7097,6 +7781,9 @@ struct w32_RemoteStorageGetPublishedFileDetailsResult_t_123 int32_t m_nPreviewFileSize; W32_ARRAY(char, 256, m_rgchURL); uint32_t m_eFileType; +#ifdef __cplusplus + operator u32_RemoteStorageGetPublishedFileDetailsResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7125,6 +7812,9 @@ struct u32_RemoteStorageGetPublishedFileDetailsResult_t_123 int32_t m_nPreviewFileSize; U32_ARRAY(char, 256, m_rgchURL); uint32_t m_eFileType; +#ifdef __cplusplus + operator w32_RemoteStorageGetPublishedFileDetailsResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7192,6 +7882,9 @@ struct w32_RemoteStorageGetPublishedFileDetailsResult_t_119x int32_t m_nPreviewFileSize; W32_ARRAY(char, 256, m_rgchURL); uint32_t m_eFileType; +#ifdef __cplusplus + operator u32_RemoteStorageGetPublishedFileDetailsResult_t_119x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7220,6 +7913,9 @@ struct u32_RemoteStorageGetPublishedFileDetailsResult_t_119x int32_t m_nPreviewFileSize; U32_ARRAY(char, 256, m_rgchURL); uint32_t m_eFileType; +#ifdef __cplusplus + operator w32_RemoteStorageGetPublishedFileDetailsResult_t_119x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7287,6 +7983,9 @@ struct w32_RemoteStorageGetPublishedFileDetailsResult_t_119 int32_t m_nPreviewFileSize; W32_ARRAY(char, 256, m_rgchURL); uint8_t __pad_9748[4]; +#ifdef __cplusplus + operator u32_RemoteStorageGetPublishedFileDetailsResult_t_119() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7314,6 +8013,9 @@ struct u32_RemoteStorageGetPublishedFileDetailsResult_t_119 int32_t m_nFileSize; int32_t m_nPreviewFileSize; U32_ARRAY(char, 256, m_rgchURL); +#ifdef __cplusplus + operator w32_RemoteStorageGetPublishedFileDetailsResult_t_119() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7379,6 +8081,9 @@ struct w32_RemoteStorageGetPublishedFileDetailsResult_t_118 int32_t m_nFileSize; int32_t m_nPreviewFileSize; uint8_t __pad_9492[4]; +#ifdef __cplusplus + operator u32_RemoteStorageGetPublishedFileDetailsResult_t_118() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7405,6 +8110,9 @@ struct u32_RemoteStorageGetPublishedFileDetailsResult_t_118 uint8_t __pad_9475[1]; int32_t m_nFileSize; int32_t m_nPreviewFileSize; +#ifdef __cplusplus + operator w32_RemoteStorageGetPublishedFileDetailsResult_t_118() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7464,6 +8172,9 @@ struct w32_RemoteStorageGetPublishedFileDetailsResult_t_116x bool m_bTagsTruncated; W32_ARRAY(char, 260, m_pchFileName); uint8_t __pad_1739[5]; +#ifdef __cplusplus + operator u32_RemoteStorageGetPublishedFileDetailsResult_t_116x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7488,6 +8199,9 @@ struct u32_RemoteStorageGetPublishedFileDetailsResult_t_116x bool m_bTagsTruncated; U32_ARRAY(char, 260, m_pchFileName); uint8_t __pad_1731[1]; +#ifdef __cplusplus + operator w32_RemoteStorageGetPublishedFileDetailsResult_t_116x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7510,6 +8224,9 @@ struct w64_RemoteStorageGetPublishedItemVoteDetailsResult_t_123 int32_t m_nVotesAgainst; int32_t m_nReports; float m_fScore; +#ifdef __cplusplus + operator u64_RemoteStorageGetPublishedItemVoteDetailsResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7522,6 +8239,9 @@ struct u64_RemoteStorageGetPublishedItemVoteDetailsResult_t_123 int32_t m_nVotesAgainst; int32_t m_nReports; float m_fScore; +#ifdef __cplusplus + operator w64_RemoteStorageGetPublishedItemVoteDetailsResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7535,6 +8255,9 @@ struct w32_RemoteStorageGetPublishedItemVoteDetailsResult_t_123 int32_t m_nVotesAgainst; int32_t m_nReports; float m_fScore; +#ifdef __cplusplus + operator u32_RemoteStorageGetPublishedItemVoteDetailsResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7547,6 +8270,9 @@ struct u32_RemoteStorageGetPublishedItemVoteDetailsResult_t_123 int32_t m_nVotesAgainst; int32_t m_nReports; float m_fScore; +#ifdef __cplusplus + operator w32_RemoteStorageGetPublishedItemVoteDetailsResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7582,6 +8308,9 @@ struct w32_RemoteStorageGetPublishedItemVoteDetailsResult_t_119 int32_t m_nVotesAgainst; int32_t m_nReports; float m_fScore; +#ifdef __cplusplus + operator u32_RemoteStorageGetPublishedItemVoteDetailsResult_t_119() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7594,6 +8323,9 @@ struct u32_RemoteStorageGetPublishedItemVoteDetailsResult_t_119 int32_t m_nVotesAgainst; int32_t m_nReports; float m_fScore; +#ifdef __cplusplus + operator w32_RemoteStorageGetPublishedItemVoteDetailsResult_t_119() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7614,6 +8346,9 @@ struct w64_RemoteStoragePublishFileResult_t_125 uint64_t m_nPublishedFileId; bool m_bUserNeedsToAcceptWorkshopLegalAgreement; uint8_t __pad_17[7]; +#ifdef __cplusplus + operator u64_RemoteStoragePublishFileResult_t_125() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7624,6 +8359,9 @@ struct u64_RemoteStoragePublishFileResult_t_125 uint64_t m_nPublishedFileId; bool m_bUserNeedsToAcceptWorkshopLegalAgreement; uint8_t __pad_13[3]; +#ifdef __cplusplus + operator w64_RemoteStoragePublishFileResult_t_125() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7635,6 +8373,9 @@ struct w32_RemoteStoragePublishFileResult_t_125 uint64_t m_nPublishedFileId; bool m_bUserNeedsToAcceptWorkshopLegalAgreement; uint8_t __pad_17[7]; +#ifdef __cplusplus + operator u32_RemoteStoragePublishFileResult_t_125() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7645,6 +8386,9 @@ struct u32_RemoteStoragePublishFileResult_t_125 uint64_t m_nPublishedFileId; bool m_bUserNeedsToAcceptWorkshopLegalAgreement; uint8_t __pad_13[3]; +#ifdef __cplusplus + operator w32_RemoteStoragePublishFileResult_t_125() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7663,6 +8407,9 @@ struct w64_RemoteStoragePublishFileResult_t_123 uint32_t m_eResult; uint8_t __pad_4[4]; uint64_t m_nPublishedFileId; +#ifdef __cplusplus + operator u64_RemoteStoragePublishFileResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7671,6 +8418,9 @@ struct u64_RemoteStoragePublishFileResult_t_123 { uint32_t m_eResult; uint64_t m_nPublishedFileId; +#ifdef __cplusplus + operator w64_RemoteStoragePublishFileResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7680,6 +8430,9 @@ struct w32_RemoteStoragePublishFileResult_t_123 uint32_t m_eResult; uint8_t __pad_4[4]; uint64_t m_nPublishedFileId; +#ifdef __cplusplus + operator u32_RemoteStoragePublishFileResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7688,6 +8441,9 @@ struct u32_RemoteStoragePublishFileResult_t_123 { uint32_t m_eResult; uint64_t m_nPublishedFileId; +#ifdef __cplusplus + operator w32_RemoteStoragePublishFileResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7715,6 +8471,9 @@ struct w32_RemoteStoragePublishFileResult_t_116x uint32_t m_eResult; uint8_t __pad_4[4]; uint64_t m_nPublishedFileId; +#ifdef __cplusplus + operator u32_RemoteStoragePublishFileResult_t_116x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7723,6 +8482,9 @@ struct u32_RemoteStoragePublishFileResult_t_116x { uint32_t m_eResult; uint64_t m_nPublishedFileId; +#ifdef __cplusplus + operator w32_RemoteStoragePublishFileResult_t_116x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7742,6 +8504,9 @@ struct w64_RemoteStoragePublishedFileUpdated_t uint32_t m_nAppID; uint8_t __pad_12[4]; uint64_t m_ulUnused; +#ifdef __cplusplus + operator u64_RemoteStoragePublishedFileUpdated_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7751,6 +8516,9 @@ struct u64_RemoteStoragePublishedFileUpdated_t uint64_t m_nPublishedFileId; uint32_t m_nAppID; uint64_t m_ulUnused; +#ifdef __cplusplus + operator w64_RemoteStoragePublishedFileUpdated_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7761,6 +8529,9 @@ struct w32_RemoteStoragePublishedFileUpdated_t uint32_t m_nAppID; uint8_t __pad_12[4]; uint64_t m_ulUnused; +#ifdef __cplusplus + operator u32_RemoteStoragePublishedFileUpdated_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7770,6 +8541,9 @@ struct u32_RemoteStoragePublishedFileUpdated_t uint64_t m_nPublishedFileId; uint32_t m_nAppID; uint64_t m_ulUnused; +#ifdef __cplusplus + operator w32_RemoteStoragePublishedFileUpdated_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7790,6 +8564,9 @@ struct w64_RemoteStorageSetUserPublishedFileActionResult_t_123 uint64_t m_nPublishedFileId; uint32_t m_eAction; uint8_t __pad_20[4]; +#ifdef __cplusplus + operator u64_RemoteStorageSetUserPublishedFileActionResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7799,6 +8576,9 @@ struct u64_RemoteStorageSetUserPublishedFileActionResult_t_123 uint32_t m_eResult; uint64_t m_nPublishedFileId; uint32_t m_eAction; +#ifdef __cplusplus + operator w64_RemoteStorageSetUserPublishedFileActionResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7810,6 +8590,9 @@ struct w32_RemoteStorageSetUserPublishedFileActionResult_t_123 uint64_t m_nPublishedFileId; uint32_t m_eAction; uint8_t __pad_20[4]; +#ifdef __cplusplus + operator u32_RemoteStorageSetUserPublishedFileActionResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7819,6 +8602,9 @@ struct u32_RemoteStorageSetUserPublishedFileActionResult_t_123 uint32_t m_eResult; uint64_t m_nPublishedFileId; uint32_t m_eAction; +#ifdef __cplusplus + operator w32_RemoteStorageSetUserPublishedFileActionResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7850,6 +8636,9 @@ struct w32_RemoteStorageSetUserPublishedFileActionResult_t_119 uint64_t m_nPublishedFileId; uint32_t m_eAction; uint8_t __pad_20[4]; +#ifdef __cplusplus + operator u32_RemoteStorageSetUserPublishedFileActionResult_t_119() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7859,6 +8648,9 @@ struct u32_RemoteStorageSetUserPublishedFileActionResult_t_119 uint32_t m_eResult; uint64_t m_nPublishedFileId; uint32_t m_eAction; +#ifdef __cplusplus + operator w32_RemoteStorageSetUserPublishedFileActionResult_t_119() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7877,6 +8669,9 @@ struct w64_RemoteStorageSubscribePublishedFileResult_t_123 uint32_t m_eResult; uint8_t __pad_4[4]; uint64_t m_nPublishedFileId; +#ifdef __cplusplus + operator u64_RemoteStorageSubscribePublishedFileResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7885,6 +8680,9 @@ struct u64_RemoteStorageSubscribePublishedFileResult_t_123 { uint32_t m_eResult; uint64_t m_nPublishedFileId; +#ifdef __cplusplus + operator w64_RemoteStorageSubscribePublishedFileResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7894,6 +8692,9 @@ struct w32_RemoteStorageSubscribePublishedFileResult_t_123 uint32_t m_eResult; uint8_t __pad_4[4]; uint64_t m_nPublishedFileId; +#ifdef __cplusplus + operator u32_RemoteStorageSubscribePublishedFileResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7902,6 +8703,9 @@ struct u32_RemoteStorageSubscribePublishedFileResult_t_123 { uint32_t m_eResult; uint64_t m_nPublishedFileId; +#ifdef __cplusplus + operator w32_RemoteStorageSubscribePublishedFileResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7943,6 +8747,9 @@ struct w64_RemoteStorageUnsubscribePublishedFileResult_t_123 uint32_t m_eResult; uint8_t __pad_4[4]; uint64_t m_nPublishedFileId; +#ifdef __cplusplus + operator u64_RemoteStorageUnsubscribePublishedFileResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7951,6 +8758,9 @@ struct u64_RemoteStorageUnsubscribePublishedFileResult_t_123 { uint32_t m_eResult; uint64_t m_nPublishedFileId; +#ifdef __cplusplus + operator w64_RemoteStorageUnsubscribePublishedFileResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7960,6 +8770,9 @@ struct w32_RemoteStorageUnsubscribePublishedFileResult_t_123 uint32_t m_eResult; uint8_t __pad_4[4]; uint64_t m_nPublishedFileId; +#ifdef __cplusplus + operator u32_RemoteStorageUnsubscribePublishedFileResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -7968,6 +8781,9 @@ struct u32_RemoteStorageUnsubscribePublishedFileResult_t_123 { uint32_t m_eResult; uint64_t m_nPublishedFileId; +#ifdef __cplusplus + operator w32_RemoteStorageUnsubscribePublishedFileResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8061,6 +8877,9 @@ struct w64_RemoteStorageUpdatePublishedFileResult_t_125 uint64_t m_nPublishedFileId; bool m_bUserNeedsToAcceptWorkshopLegalAgreement; uint8_t __pad_17[7]; +#ifdef __cplusplus + operator u64_RemoteStorageUpdatePublishedFileResult_t_125() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8071,6 +8890,9 @@ struct u64_RemoteStorageUpdatePublishedFileResult_t_125 uint64_t m_nPublishedFileId; bool m_bUserNeedsToAcceptWorkshopLegalAgreement; uint8_t __pad_13[3]; +#ifdef __cplusplus + operator w64_RemoteStorageUpdatePublishedFileResult_t_125() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8082,6 +8904,9 @@ struct w32_RemoteStorageUpdatePublishedFileResult_t_125 uint64_t m_nPublishedFileId; bool m_bUserNeedsToAcceptWorkshopLegalAgreement; uint8_t __pad_17[7]; +#ifdef __cplusplus + operator u32_RemoteStorageUpdatePublishedFileResult_t_125() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8092,6 +8917,9 @@ struct u32_RemoteStorageUpdatePublishedFileResult_t_125 uint64_t m_nPublishedFileId; bool m_bUserNeedsToAcceptWorkshopLegalAgreement; uint8_t __pad_13[3]; +#ifdef __cplusplus + operator w32_RemoteStorageUpdatePublishedFileResult_t_125() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8110,6 +8938,9 @@ struct w64_RemoteStorageUpdatePublishedFileResult_t_123 uint32_t m_eResult; uint8_t __pad_4[4]; uint64_t m_nPublishedFileId; +#ifdef __cplusplus + operator u64_RemoteStorageUpdatePublishedFileResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8118,6 +8949,9 @@ struct u64_RemoteStorageUpdatePublishedFileResult_t_123 { uint32_t m_eResult; uint64_t m_nPublishedFileId; +#ifdef __cplusplus + operator w64_RemoteStorageUpdatePublishedFileResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8127,6 +8961,9 @@ struct w32_RemoteStorageUpdatePublishedFileResult_t_123 uint32_t m_eResult; uint8_t __pad_4[4]; uint64_t m_nPublishedFileId; +#ifdef __cplusplus + operator u32_RemoteStorageUpdatePublishedFileResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8135,6 +8972,9 @@ struct u32_RemoteStorageUpdatePublishedFileResult_t_123 { uint32_t m_eResult; uint64_t m_nPublishedFileId; +#ifdef __cplusplus + operator w32_RemoteStorageUpdatePublishedFileResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8162,6 +9002,9 @@ struct w32_RemoteStorageUpdatePublishedFileResult_t_116x uint32_t m_eResult; uint8_t __pad_4[4]; uint64_t m_nPublishedFileId; +#ifdef __cplusplus + operator u32_RemoteStorageUpdatePublishedFileResult_t_116x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8170,6 +9013,9 @@ struct u32_RemoteStorageUpdatePublishedFileResult_t_116x { uint32_t m_eResult; uint64_t m_nPublishedFileId; +#ifdef __cplusplus + operator w32_RemoteStorageUpdatePublishedFileResult_t_116x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8188,6 +9034,9 @@ struct w64_RemoteStorageUpdateUserPublishedItemVoteResult_t_123 uint32_t m_eResult; uint8_t __pad_4[4]; uint64_t m_nPublishedFileId; +#ifdef __cplusplus + operator u64_RemoteStorageUpdateUserPublishedItemVoteResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8196,6 +9045,9 @@ struct u64_RemoteStorageUpdateUserPublishedItemVoteResult_t_123 { uint32_t m_eResult; uint64_t m_nPublishedFileId; +#ifdef __cplusplus + operator w64_RemoteStorageUpdateUserPublishedItemVoteResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8205,6 +9057,9 @@ struct w32_RemoteStorageUpdateUserPublishedItemVoteResult_t_123 uint32_t m_eResult; uint8_t __pad_4[4]; uint64_t m_nPublishedFileId; +#ifdef __cplusplus + operator u32_RemoteStorageUpdateUserPublishedItemVoteResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8213,6 +9068,9 @@ struct u32_RemoteStorageUpdateUserPublishedItemVoteResult_t_123 { uint32_t m_eResult; uint64_t m_nPublishedFileId; +#ifdef __cplusplus + operator w32_RemoteStorageUpdateUserPublishedItemVoteResult_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8240,6 +9098,9 @@ struct w32_RemoteStorageUpdateUserPublishedItemVoteResult_t_119 uint32_t m_eResult; uint8_t __pad_4[4]; uint64_t m_nPublishedFileId; +#ifdef __cplusplus + operator u32_RemoteStorageUpdateUserPublishedItemVoteResult_t_119() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8248,6 +9109,9 @@ struct u32_RemoteStorageUpdateUserPublishedItemVoteResult_t_119 { uint32_t m_eResult; uint64_t m_nPublishedFileId; +#ifdef __cplusplus + operator w32_RemoteStorageUpdateUserPublishedItemVoteResult_t_119() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8268,6 +9132,9 @@ struct w64_RemoteStorageUserVoteDetails_t_123 uint64_t m_nPublishedFileId; uint32_t m_eVote; uint8_t __pad_20[4]; +#ifdef __cplusplus + operator u64_RemoteStorageUserVoteDetails_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8277,6 +9144,9 @@ struct u64_RemoteStorageUserVoteDetails_t_123 uint32_t m_eResult; uint64_t m_nPublishedFileId; uint32_t m_eVote; +#ifdef __cplusplus + operator w64_RemoteStorageUserVoteDetails_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8288,6 +9158,9 @@ struct w32_RemoteStorageUserVoteDetails_t_123 uint64_t m_nPublishedFileId; uint32_t m_eVote; uint8_t __pad_20[4]; +#ifdef __cplusplus + operator u32_RemoteStorageUserVoteDetails_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8297,6 +9170,9 @@ struct u32_RemoteStorageUserVoteDetails_t_123 uint32_t m_eResult; uint64_t m_nPublishedFileId; uint32_t m_eVote; +#ifdef __cplusplus + operator w32_RemoteStorageUserVoteDetails_t_123() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8328,6 +9204,9 @@ struct w32_RemoteStorageUserVoteDetails_t_119 uint64_t m_nPublishedFileId; uint32_t m_eVote; uint8_t __pad_20[4]; +#ifdef __cplusplus + operator u32_RemoteStorageUserVoteDetails_t_119() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8337,6 +9216,9 @@ struct u32_RemoteStorageUserVoteDetails_t_119 uint32_t m_eResult; uint64_t m_nPublishedFileId; uint32_t m_eVote; +#ifdef __cplusplus + operator w32_RemoteStorageUserVoteDetails_t_119() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8357,6 +9239,9 @@ struct w64_RemoveAppDependencyResult_t uint64_t m_nPublishedFileId; uint32_t m_nAppID; uint8_t __pad_20[4]; +#ifdef __cplusplus + operator u64_RemoveAppDependencyResult_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8366,6 +9251,9 @@ struct u64_RemoveAppDependencyResult_t uint32_t m_eResult; uint64_t m_nPublishedFileId; uint32_t m_nAppID; +#ifdef __cplusplus + operator w64_RemoveAppDependencyResult_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8377,6 +9265,9 @@ struct w32_RemoveAppDependencyResult_t uint64_t m_nPublishedFileId; uint32_t m_nAppID; uint8_t __pad_20[4]; +#ifdef __cplusplus + operator u32_RemoveAppDependencyResult_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8386,6 +9277,9 @@ struct u32_RemoveAppDependencyResult_t uint32_t m_eResult; uint64_t m_nPublishedFileId; uint32_t m_nAppID; +#ifdef __cplusplus + operator w32_RemoveAppDependencyResult_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8405,6 +9299,9 @@ struct w64_RemoveUGCDependencyResult_t uint8_t __pad_4[4]; uint64_t m_nPublishedFileId; uint64_t m_nChildPublishedFileId; +#ifdef __cplusplus + operator u64_RemoveUGCDependencyResult_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8414,6 +9311,9 @@ struct u64_RemoveUGCDependencyResult_t uint32_t m_eResult; uint64_t m_nPublishedFileId; uint64_t m_nChildPublishedFileId; +#ifdef __cplusplus + operator w64_RemoveUGCDependencyResult_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8424,6 +9324,9 @@ struct w32_RemoveUGCDependencyResult_t uint8_t __pad_4[4]; uint64_t m_nPublishedFileId; uint64_t m_nChildPublishedFileId; +#ifdef __cplusplus + operator u32_RemoveUGCDependencyResult_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8433,6 +9336,9 @@ struct u32_RemoveUGCDependencyResult_t uint32_t m_eResult; uint64_t m_nPublishedFileId; uint64_t m_nChildPublishedFileId; +#ifdef __cplusplus + operator w32_RemoveUGCDependencyResult_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8452,6 +9358,9 @@ struct w64_RequestPlayersForGameFinalResultCallback_t uint8_t __pad_4[4]; uint64_t m_ullSearchID; uint64_t m_ullUniqueGameID; +#ifdef __cplusplus + operator u64_RequestPlayersForGameFinalResultCallback_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8461,6 +9370,9 @@ struct u64_RequestPlayersForGameFinalResultCallback_t uint32_t m_eResult; uint64_t m_ullSearchID; uint64_t m_ullUniqueGameID; +#ifdef __cplusplus + operator w64_RequestPlayersForGameFinalResultCallback_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8471,6 +9383,9 @@ struct w32_RequestPlayersForGameFinalResultCallback_t uint8_t __pad_4[4]; uint64_t m_ullSearchID; uint64_t m_ullUniqueGameID; +#ifdef __cplusplus + operator u32_RequestPlayersForGameFinalResultCallback_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8480,6 +9395,9 @@ struct u32_RequestPlayersForGameFinalResultCallback_t uint32_t m_eResult; uint64_t m_ullSearchID; uint64_t m_ullUniqueGameID; +#ifdef __cplusplus + operator w32_RequestPlayersForGameFinalResultCallback_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8498,6 +9416,9 @@ struct w64_RequestPlayersForGameProgressCallback_t uint32_t m_eResult; uint8_t __pad_4[4]; uint64_t m_ullSearchID; +#ifdef __cplusplus + operator u64_RequestPlayersForGameProgressCallback_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8506,6 +9427,9 @@ struct u64_RequestPlayersForGameProgressCallback_t { uint32_t m_eResult; uint64_t m_ullSearchID; +#ifdef __cplusplus + operator w64_RequestPlayersForGameProgressCallback_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8515,6 +9439,9 @@ struct w32_RequestPlayersForGameProgressCallback_t uint32_t m_eResult; uint8_t __pad_4[4]; uint64_t m_ullSearchID; +#ifdef __cplusplus + operator u32_RequestPlayersForGameProgressCallback_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8523,6 +9450,9 @@ struct u32_RequestPlayersForGameProgressCallback_t { uint32_t m_eResult; uint64_t m_ullSearchID; +#ifdef __cplusplus + operator w32_RequestPlayersForGameProgressCallback_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8550,6 +9480,9 @@ struct w64_RequestPlayersForGameResultCallback_t int32_t m_nSuggestedTeamIndex; uint8_t __pad_52[4]; uint64_t m_ullUniqueGameID; +#ifdef __cplusplus + operator u64_RequestPlayersForGameResultCallback_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8566,6 +9499,9 @@ struct u64_RequestPlayersForGameResultCallback_t int32_t m_nTotalPlayersAcceptedGame; int32_t m_nSuggestedTeamIndex; uint64_t m_ullUniqueGameID; +#ifdef __cplusplus + operator w64_RequestPlayersForGameResultCallback_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8584,6 +9520,9 @@ struct w32_RequestPlayersForGameResultCallback_t int32_t m_nSuggestedTeamIndex; uint8_t __pad_52[4]; uint64_t m_ullUniqueGameID; +#ifdef __cplusplus + operator u32_RequestPlayersForGameResultCallback_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8600,6 +9539,9 @@ struct u32_RequestPlayersForGameResultCallback_t int32_t m_nTotalPlayersAcceptedGame; int32_t m_nSuggestedTeamIndex; uint64_t m_ullUniqueGameID; +#ifdef __cplusplus + operator w32_RequestPlayersForGameResultCallback_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8624,6 +9566,9 @@ struct w64_SteamInputConfigurationLoaded_t bool m_bUsesSteamInputAPI; bool m_bUsesGamepadAPI; uint8_t __pad_34[6]; +#ifdef __cplusplus + operator u64_SteamInputConfigurationLoaded_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8638,6 +9583,9 @@ struct u64_SteamInputConfigurationLoaded_t bool m_bUsesSteamInputAPI; bool m_bUsesGamepadAPI; uint8_t __pad_30[2]; +#ifdef __cplusplus + operator w64_SteamInputConfigurationLoaded_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8653,6 +9601,9 @@ struct w32_SteamInputConfigurationLoaded_t bool m_bUsesSteamInputAPI; bool m_bUsesGamepadAPI; uint8_t __pad_34[6]; +#ifdef __cplusplus + operator u32_SteamInputConfigurationLoaded_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8667,6 +9618,9 @@ struct u32_SteamInputConfigurationLoaded_t bool m_bUsesSteamInputAPI; bool m_bUsesGamepadAPI; uint8_t __pad_30[2]; +#ifdef __cplusplus + operator w32_SteamInputConfigurationLoaded_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8689,6 +9643,9 @@ struct w64_SteamInputGamepadSlotChange_t int32_t m_nOldGamepadSlot; int32_t m_nNewGamepadSlot; uint8_t __pad_28[4]; +#ifdef __cplusplus + operator u64_SteamInputGamepadSlotChange_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8700,6 +9657,9 @@ struct u64_SteamInputGamepadSlotChange_t uint32_t m_eDeviceType; int32_t m_nOldGamepadSlot; int32_t m_nNewGamepadSlot; +#ifdef __cplusplus + operator w64_SteamInputGamepadSlotChange_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8713,6 +9673,9 @@ struct w32_SteamInputGamepadSlotChange_t int32_t m_nOldGamepadSlot; int32_t m_nNewGamepadSlot; uint8_t __pad_28[4]; +#ifdef __cplusplus + operator u32_SteamInputGamepadSlotChange_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8724,6 +9687,9 @@ struct u32_SteamInputGamepadSlotChange_t uint32_t m_eDeviceType; int32_t m_nOldGamepadSlot; int32_t m_nNewGamepadSlot; +#ifdef __cplusplus + operator w32_SteamInputGamepadSlotChange_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8743,6 +9709,9 @@ struct w64_SteamInventoryStartPurchaseResult_t uint8_t __pad_4[4]; uint64_t m_ulOrderID; uint64_t m_ulTransID; +#ifdef __cplusplus + operator u64_SteamInventoryStartPurchaseResult_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8752,6 +9721,9 @@ struct u64_SteamInventoryStartPurchaseResult_t uint32_t m_result; uint64_t m_ulOrderID; uint64_t m_ulTransID; +#ifdef __cplusplus + operator w64_SteamInventoryStartPurchaseResult_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8762,6 +9734,9 @@ struct w32_SteamInventoryStartPurchaseResult_t uint8_t __pad_4[4]; uint64_t m_ulOrderID; uint64_t m_ulTransID; +#ifdef __cplusplus + operator u32_SteamInventoryStartPurchaseResult_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8771,6 +9746,9 @@ struct u32_SteamInventoryStartPurchaseResult_t uint32_t m_result; uint64_t m_ulOrderID; uint64_t m_ulTransID; +#ifdef __cplusplus + operator w32_SteamInventoryStartPurchaseResult_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8791,6 +9769,9 @@ struct w64_SteamNetConnectionStatusChangedCallback_t_153a SteamNetConnectionInfo_t_153a m_info; uint32_t m_eOldState; uint8_t __pad_708[4]; +#ifdef __cplusplus + operator u64_SteamNetConnectionStatusChangedCallback_t_153a() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8800,6 +9781,9 @@ struct u64_SteamNetConnectionStatusChangedCallback_t_153a uint32_t m_hConn; SteamNetConnectionInfo_t_153a m_info; uint32_t m_eOldState; +#ifdef __cplusplus + operator w64_SteamNetConnectionStatusChangedCallback_t_153a() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8811,6 +9795,9 @@ struct w32_SteamNetConnectionStatusChangedCallback_t_153a SteamNetConnectionInfo_t_153a m_info; uint32_t m_eOldState; uint8_t __pad_708[4]; +#ifdef __cplusplus + operator u32_SteamNetConnectionStatusChangedCallback_t_153a() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8820,6 +9807,9 @@ struct u32_SteamNetConnectionStatusChangedCallback_t_153a uint32_t m_hConn; SteamNetConnectionInfo_t_153a m_info; uint32_t m_eOldState; +#ifdef __cplusplus + operator w32_SteamNetConnectionStatusChangedCallback_t_153a() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8840,6 +9830,9 @@ struct w64_SteamNetConnectionStatusChangedCallback_t_144 SteamNetConnectionInfo_t_144 m_info; uint32_t m_eOldState; uint8_t __pad_708[4]; +#ifdef __cplusplus + operator u64_SteamNetConnectionStatusChangedCallback_t_144() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8849,6 +9842,9 @@ struct u64_SteamNetConnectionStatusChangedCallback_t_144 uint32_t m_hConn; SteamNetConnectionInfo_t_144 m_info; uint32_t m_eOldState; +#ifdef __cplusplus + operator w64_SteamNetConnectionStatusChangedCallback_t_144() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8860,6 +9856,9 @@ struct w32_SteamNetConnectionStatusChangedCallback_t_144 SteamNetConnectionInfo_t_144 m_info; uint32_t m_eOldState; uint8_t __pad_708[4]; +#ifdef __cplusplus + operator u32_SteamNetConnectionStatusChangedCallback_t_144() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8869,6 +9868,9 @@ struct u32_SteamNetConnectionStatusChangedCallback_t_144 uint32_t m_hConn; SteamNetConnectionInfo_t_144 m_info; uint32_t m_eOldState; +#ifdef __cplusplus + operator w32_SteamNetConnectionStatusChangedCallback_t_144() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8889,6 +9891,9 @@ struct w64_SteamNetConnectionStatusChangedCallback_t_151 SteamNetConnectionInfo_t_151 m_info; uint32_t m_eOldState; uint8_t __pad_580[4]; +#ifdef __cplusplus + operator u64_SteamNetConnectionStatusChangedCallback_t_151() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8898,6 +9903,9 @@ struct u64_SteamNetConnectionStatusChangedCallback_t_151 uint32_t m_hConn; SteamNetConnectionInfo_t_151 m_info; uint32_t m_eOldState; +#ifdef __cplusplus + operator w64_SteamNetConnectionStatusChangedCallback_t_151() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8909,6 +9917,9 @@ struct w32_SteamNetConnectionStatusChangedCallback_t_151 SteamNetConnectionInfo_t_151 m_info; uint32_t m_eOldState; uint8_t __pad_580[4]; +#ifdef __cplusplus + operator u32_SteamNetConnectionStatusChangedCallback_t_151() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8918,6 +9929,9 @@ struct u32_SteamNetConnectionStatusChangedCallback_t_151 uint32_t m_hConn; SteamNetConnectionInfo_t_151 m_info; uint32_t m_eOldState; +#ifdef __cplusplus + operator w32_SteamNetConnectionStatusChangedCallback_t_151() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8948,6 +9962,9 @@ struct w64_SteamNetworkingMessage_t_153a uint16_t m_idxLane; uint16_t _pad1__; uint8_t __pad_212[4]; +#ifdef __cplusplus + operator u64_SteamNetworkingMessage_t_153a() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8969,6 +9986,9 @@ struct u64_SteamNetworkingMessage_t_153a uint16_t m_idxLane; uint16_t _pad1__; uint8_t __pad_212[4]; +#ifdef __cplusplus + operator w64_SteamNetworkingMessage_t_153a() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -8991,6 +10011,9 @@ struct w32_SteamNetworkingMessage_t_153a uint16_t m_idxLane; uint16_t _pad1__; uint8_t __pad_204[4]; +#ifdef __cplusplus + operator u32_SteamNetworkingMessage_t_153a() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -9011,6 +10034,9 @@ struct u32_SteamNetworkingMessage_t_153a int64_t m_nUserData; uint16_t m_idxLane; uint16_t _pad1__; +#ifdef __cplusplus + operator w32_SteamNetworkingMessage_t_153a() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -9038,6 +10064,9 @@ struct w64_SteamNetworkingMessage_t_147 int32_t m_nChannel; int32_t m_nFlags; int64_t m_nUserData; +#ifdef __cplusplus + operator u64_SteamNetworkingMessage_t_147() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -9056,6 +10085,9 @@ struct u64_SteamNetworkingMessage_t_147 int32_t m_nChannel; int32_t m_nFlags; int64_t m_nUserData; +#ifdef __cplusplus + operator w64_SteamNetworkingMessage_t_147() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -9075,6 +10107,9 @@ struct w32_SteamNetworkingMessage_t_147 int32_t m_nChannel; int32_t m_nFlags; int64_t m_nUserData; +#ifdef __cplusplus + operator u32_SteamNetworkingMessage_t_147() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -9093,6 +10128,9 @@ struct u32_SteamNetworkingMessage_t_147 int32_t m_nChannel; int32_t m_nFlags; int64_t m_nUserData; +#ifdef __cplusplus + operator w32_SteamNetworkingMessage_t_147() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -9120,6 +10158,9 @@ struct w64_SteamNetworkingMessage_t_151 int32_t m_nChannel; int32_t m_nFlags; int64_t m_nUserData; +#ifdef __cplusplus + operator u64_SteamNetworkingMessage_t_151() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -9138,6 +10179,9 @@ struct u64_SteamNetworkingMessage_t_151 int32_t m_nChannel; int32_t m_nFlags; int64_t m_nUserData; +#ifdef __cplusplus + operator w64_SteamNetworkingMessage_t_151() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -9157,6 +10201,9 @@ struct w32_SteamNetworkingMessage_t_151 int32_t m_nChannel; int32_t m_nFlags; int64_t m_nUserData; +#ifdef __cplusplus + operator u32_SteamNetworkingMessage_t_151() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -9175,6 +10222,9 @@ struct u32_SteamNetworkingMessage_t_151 int32_t m_nChannel; int32_t m_nFlags; int64_t m_nUserData; +#ifdef __cplusplus + operator w32_SteamNetworkingMessage_t_151() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -9201,6 +10251,9 @@ struct w64_SteamNetworkingMessage_t_144 W64_PTR(void (*W_STDCALL m_pfnRelease)(w64_SteamNetworkingMessage_t_144 *), m_pfnRelease); int32_t m_nChannel; int32_t m___nPadDummy; +#ifdef __cplusplus + operator u64_SteamNetworkingMessage_t_144() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -9218,6 +10271,9 @@ struct u64_SteamNetworkingMessage_t_144 U64_PTR(void (*U_STDCALL m_pfnRelease)(u64_SteamNetworkingMessage_t_144 *), m_pfnRelease); int32_t m_nChannel; int32_t m___nPadDummy; +#ifdef __cplusplus + operator w64_SteamNetworkingMessage_t_144() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -9236,6 +10292,9 @@ struct w32_SteamNetworkingMessage_t_144 W32_PTR(void (*W_STDCALL m_pfnRelease)(w32_SteamNetworkingMessage_t_144 *), m_pfnRelease); int32_t m_nChannel; int32_t m___nPadDummy; +#ifdef __cplusplus + operator u32_SteamNetworkingMessage_t_144() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -9253,6 +10312,9 @@ struct u32_SteamNetworkingMessage_t_144 U32_PTR(void (*U_STDCALL m_pfnRelease)(u32_SteamNetworkingMessage_t_144 *), m_pfnRelease); int32_t m_nChannel; int32_t m___nPadDummy; +#ifdef __cplusplus + operator w32_SteamNetworkingMessage_t_144() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -9297,6 +10359,9 @@ struct w64_SteamPartyBeaconLocation_t uint32_t m_eType; uint8_t __pad_4[4]; uint64_t m_ulLocationID; +#ifdef __cplusplus + operator u64_SteamPartyBeaconLocation_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -9305,6 +10370,9 @@ struct u64_SteamPartyBeaconLocation_t { uint32_t m_eType; uint64_t m_ulLocationID; +#ifdef __cplusplus + operator w64_SteamPartyBeaconLocation_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -9314,6 +10382,9 @@ struct w32_SteamPartyBeaconLocation_t uint32_t m_eType; uint8_t __pad_4[4]; uint64_t m_ulLocationID; +#ifdef __cplusplus + operator u32_SteamPartyBeaconLocation_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -9322,6 +10393,9 @@ struct u32_SteamPartyBeaconLocation_t { uint32_t m_eType; uint64_t m_ulLocationID; +#ifdef __cplusplus + operator w32_SteamPartyBeaconLocation_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -9340,6 +10414,9 @@ struct w64_SteamUGCRequestUGCDetailsResult_t_128x w64_SteamUGCDetails_t_128x m_details; bool m_bCachedData; uint8_t __pad_9777[7]; +#ifdef __cplusplus + operator u64_SteamUGCRequestUGCDetailsResult_t_128x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -9349,6 +10426,9 @@ struct u64_SteamUGCRequestUGCDetailsResult_t_128x u64_SteamUGCDetails_t_128x m_details; bool m_bCachedData; uint8_t __pad_9765[3]; +#ifdef __cplusplus + operator w64_SteamUGCRequestUGCDetailsResult_t_128x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -9358,6 +10438,9 @@ struct w32_SteamUGCRequestUGCDetailsResult_t_128x w32_SteamUGCDetails_t_128x m_details; bool m_bCachedData; uint8_t __pad_9777[7]; +#ifdef __cplusplus + operator u32_SteamUGCRequestUGCDetailsResult_t_128x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -9367,6 +10450,9 @@ struct u32_SteamUGCRequestUGCDetailsResult_t_128x u32_SteamUGCDetails_t_128x m_details; bool m_bCachedData; uint8_t __pad_9765[3]; +#ifdef __cplusplus + operator w32_SteamUGCRequestUGCDetailsResult_t_128x() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -9385,6 +10471,9 @@ struct w64_SteamUGCRequestUGCDetailsResult_t_129 w64_SteamUGCDetails_t_126 m_details; bool m_bCachedData; uint8_t __pad_9769[7]; +#ifdef __cplusplus + operator u64_SteamUGCRequestUGCDetailsResult_t_129() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -9394,6 +10483,9 @@ struct u64_SteamUGCRequestUGCDetailsResult_t_129 u64_SteamUGCDetails_t_126 m_details; bool m_bCachedData; uint8_t __pad_9761[3]; +#ifdef __cplusplus + operator w64_SteamUGCRequestUGCDetailsResult_t_129() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -9403,6 +10495,9 @@ struct w32_SteamUGCRequestUGCDetailsResult_t_129 w32_SteamUGCDetails_t_126 m_details; bool m_bCachedData; uint8_t __pad_9769[7]; +#ifdef __cplusplus + operator u32_SteamUGCRequestUGCDetailsResult_t_129() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -9412,6 +10507,9 @@ struct u32_SteamUGCRequestUGCDetailsResult_t_129 u32_SteamUGCDetails_t_126 m_details; bool m_bCachedData; uint8_t __pad_9761[3]; +#ifdef __cplusplus + operator w32_SteamUGCRequestUGCDetailsResult_t_129() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -9428,6 +10526,9 @@ typedef u64_SteamUGCRequestUGCDetailsResult_t_129 u_SteamUGCRequestUGCDetailsRes struct w64_SteamUGCRequestUGCDetailsResult_t_126 { w64_SteamUGCDetails_t_126 m_details; +#ifdef __cplusplus + operator u64_SteamUGCRequestUGCDetailsResult_t_126() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -9435,6 +10536,9 @@ struct w64_SteamUGCRequestUGCDetailsResult_t_126 struct u64_SteamUGCRequestUGCDetailsResult_t_126 { u64_SteamUGCDetails_t_126 m_details; +#ifdef __cplusplus + operator w64_SteamUGCRequestUGCDetailsResult_t_126() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -9442,6 +10546,9 @@ struct u64_SteamUGCRequestUGCDetailsResult_t_126 struct w32_SteamUGCRequestUGCDetailsResult_t_126 { w32_SteamUGCDetails_t_126 m_details; +#ifdef __cplusplus + operator u32_SteamUGCRequestUGCDetailsResult_t_126() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -9449,6 +10556,9 @@ struct w32_SteamUGCRequestUGCDetailsResult_t_126 struct u32_SteamUGCRequestUGCDetailsResult_t_126 { u32_SteamUGCDetails_t_126 m_details; +#ifdef __cplusplus + operator w32_SteamUGCRequestUGCDetailsResult_t_126() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -9468,6 +10578,9 @@ struct w64_SubmitPlayerResultResultCallback_t uint8_t __pad_4[4]; uint64_t ullUniqueGameID; CSteamID steamIDPlayer; +#ifdef __cplusplus + operator u64_SubmitPlayerResultResultCallback_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -9477,6 +10590,9 @@ struct u64_SubmitPlayerResultResultCallback_t uint32_t m_eResult; uint64_t ullUniqueGameID; CSteamID steamIDPlayer; +#ifdef __cplusplus + operator w64_SubmitPlayerResultResultCallback_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -9487,6 +10603,9 @@ struct w32_SubmitPlayerResultResultCallback_t uint8_t __pad_4[4]; uint64_t ullUniqueGameID; CSteamID steamIDPlayer; +#ifdef __cplusplus + operator u32_SubmitPlayerResultResultCallback_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) @@ -9496,6 +10615,9 @@ struct u32_SubmitPlayerResultResultCallback_t uint32_t m_eResult; uint64_t ullUniqueGameID; CSteamID steamIDPlayer; +#ifdef __cplusplus + operator w32_SubmitPlayerResultResultCallback_t() const; +#endif /* __cplusplus */ }; #pragma pack( pop ) diff --git a/lsteamclient/unixlib_generated.cpp b/lsteamclient/unixlib_generated.cpp index fd030eed..c10c87bf 100644 --- a/lsteamclient/unixlib_generated.cpp +++ b/lsteamclient/unixlib_generated.cpp @@ -2172,6 +2172,266 @@ C_ASSERT( sizeof(u32_SteamUGCDetails_t_126().m_unVotesDown) >= 4 ); C_ASSERT( offsetof(u32_SteamUGCDetails_t_126, m_flScore) == 9756 ); C_ASSERT( sizeof(u32_SteamUGCDetails_t_126().m_flScore) >= 4 ); +#ifdef __x86_64__ +w64_SteamUGCDetails_t_128x::operator u64_SteamUGCDetails_t_128x() const +{ + u64_SteamUGCDetails_t_128x ret; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_eResult = this->m_eResult; + ret.m_eFileType = this->m_eFileType; + ret.m_nCreatorAppID = this->m_nCreatorAppID; + ret.m_nConsumerAppID = this->m_nConsumerAppID; + ret.m_rgchTitle = this->m_rgchTitle; + ret.m_rgchDescription = this->m_rgchDescription; + ret.m_ulSteamIDOwner = this->m_ulSteamIDOwner; + ret.m_rtimeCreated = this->m_rtimeCreated; + ret.m_rtimeUpdated = this->m_rtimeUpdated; + ret.m_rtimeAddedToUserList = this->m_rtimeAddedToUserList; + ret.m_eVisibility = this->m_eVisibility; + ret.m_bBanned = this->m_bBanned; + ret.m_bAcceptedForUse = this->m_bAcceptedForUse; + ret.m_bTagsTruncated = this->m_bTagsTruncated; + ret.m_rgchTags = this->m_rgchTags; + ret.m_hFile = this->m_hFile; + ret.m_hPreviewFile = this->m_hPreviewFile; + ret.m_pchFileName = this->m_pchFileName; + ret.m_nFileSize = this->m_nFileSize; + ret.m_nPreviewFileSize = this->m_nPreviewFileSize; + ret.m_rgchURL = this->m_rgchURL; + ret.m_unVotesUp = this->m_unVotesUp; + ret.m_unVotesDown = this->m_unVotesDown; + ret.m_flScore = this->m_flScore; + ret.m_unNumChildren = this->m_unNumChildren; + return ret; +} + +u64_SteamUGCDetails_t_128x::operator w64_SteamUGCDetails_t_128x() const +{ + w64_SteamUGCDetails_t_128x ret; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_eResult = this->m_eResult; + ret.m_eFileType = this->m_eFileType; + ret.m_nCreatorAppID = this->m_nCreatorAppID; + ret.m_nConsumerAppID = this->m_nConsumerAppID; + ret.m_rgchTitle = this->m_rgchTitle; + ret.m_rgchDescription = this->m_rgchDescription; + ret.m_ulSteamIDOwner = this->m_ulSteamIDOwner; + ret.m_rtimeCreated = this->m_rtimeCreated; + ret.m_rtimeUpdated = this->m_rtimeUpdated; + ret.m_rtimeAddedToUserList = this->m_rtimeAddedToUserList; + ret.m_eVisibility = this->m_eVisibility; + ret.m_bBanned = this->m_bBanned; + ret.m_bAcceptedForUse = this->m_bAcceptedForUse; + ret.m_bTagsTruncated = this->m_bTagsTruncated; + ret.m_rgchTags = this->m_rgchTags; + ret.m_hFile = this->m_hFile; + ret.m_hPreviewFile = this->m_hPreviewFile; + ret.m_pchFileName = this->m_pchFileName; + ret.m_nFileSize = this->m_nFileSize; + ret.m_nPreviewFileSize = this->m_nPreviewFileSize; + ret.m_rgchURL = this->m_rgchURL; + ret.m_unVotesUp = this->m_unVotesUp; + ret.m_unVotesDown = this->m_unVotesDown; + ret.m_flScore = this->m_flScore; + ret.m_unNumChildren = this->m_unNumChildren; + return ret; +} +#endif + +#ifdef __i386__ +w32_SteamUGCDetails_t_128x::operator u32_SteamUGCDetails_t_128x() const +{ + u32_SteamUGCDetails_t_128x ret; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_eResult = this->m_eResult; + ret.m_eFileType = this->m_eFileType; + ret.m_nCreatorAppID = this->m_nCreatorAppID; + ret.m_nConsumerAppID = this->m_nConsumerAppID; + ret.m_rgchTitle = this->m_rgchTitle; + ret.m_rgchDescription = this->m_rgchDescription; + ret.m_ulSteamIDOwner = this->m_ulSteamIDOwner; + ret.m_rtimeCreated = this->m_rtimeCreated; + ret.m_rtimeUpdated = this->m_rtimeUpdated; + ret.m_rtimeAddedToUserList = this->m_rtimeAddedToUserList; + ret.m_eVisibility = this->m_eVisibility; + ret.m_bBanned = this->m_bBanned; + ret.m_bAcceptedForUse = this->m_bAcceptedForUse; + ret.m_bTagsTruncated = this->m_bTagsTruncated; + ret.m_rgchTags = this->m_rgchTags; + ret.m_hFile = this->m_hFile; + ret.m_hPreviewFile = this->m_hPreviewFile; + ret.m_pchFileName = this->m_pchFileName; + ret.m_nFileSize = this->m_nFileSize; + ret.m_nPreviewFileSize = this->m_nPreviewFileSize; + ret.m_rgchURL = this->m_rgchURL; + ret.m_unVotesUp = this->m_unVotesUp; + ret.m_unVotesDown = this->m_unVotesDown; + ret.m_flScore = this->m_flScore; + ret.m_unNumChildren = this->m_unNumChildren; + return ret; +} + +u32_SteamUGCDetails_t_128x::operator w32_SteamUGCDetails_t_128x() const +{ + w32_SteamUGCDetails_t_128x ret; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_eResult = this->m_eResult; + ret.m_eFileType = this->m_eFileType; + ret.m_nCreatorAppID = this->m_nCreatorAppID; + ret.m_nConsumerAppID = this->m_nConsumerAppID; + ret.m_rgchTitle = this->m_rgchTitle; + ret.m_rgchDescription = this->m_rgchDescription; + ret.m_ulSteamIDOwner = this->m_ulSteamIDOwner; + ret.m_rtimeCreated = this->m_rtimeCreated; + ret.m_rtimeUpdated = this->m_rtimeUpdated; + ret.m_rtimeAddedToUserList = this->m_rtimeAddedToUserList; + ret.m_eVisibility = this->m_eVisibility; + ret.m_bBanned = this->m_bBanned; + ret.m_bAcceptedForUse = this->m_bAcceptedForUse; + ret.m_bTagsTruncated = this->m_bTagsTruncated; + ret.m_rgchTags = this->m_rgchTags; + ret.m_hFile = this->m_hFile; + ret.m_hPreviewFile = this->m_hPreviewFile; + ret.m_pchFileName = this->m_pchFileName; + ret.m_nFileSize = this->m_nFileSize; + ret.m_nPreviewFileSize = this->m_nPreviewFileSize; + ret.m_rgchURL = this->m_rgchURL; + ret.m_unVotesUp = this->m_unVotesUp; + ret.m_unVotesDown = this->m_unVotesDown; + ret.m_flScore = this->m_flScore; + ret.m_unNumChildren = this->m_unNumChildren; + return ret; +} +#endif + +#ifdef __x86_64__ +w64_SteamUGCDetails_t_126::operator u64_SteamUGCDetails_t_126() const +{ + u64_SteamUGCDetails_t_126 ret; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_eResult = this->m_eResult; + ret.m_eFileType = this->m_eFileType; + ret.m_nCreatorAppID = this->m_nCreatorAppID; + ret.m_nConsumerAppID = this->m_nConsumerAppID; + ret.m_rgchTitle = this->m_rgchTitle; + ret.m_rgchDescription = this->m_rgchDescription; + ret.m_ulSteamIDOwner = this->m_ulSteamIDOwner; + ret.m_rtimeCreated = this->m_rtimeCreated; + ret.m_rtimeUpdated = this->m_rtimeUpdated; + ret.m_rtimeAddedToUserList = this->m_rtimeAddedToUserList; + ret.m_eVisibility = this->m_eVisibility; + ret.m_bBanned = this->m_bBanned; + ret.m_bAcceptedForUse = this->m_bAcceptedForUse; + ret.m_bTagsTruncated = this->m_bTagsTruncated; + ret.m_rgchTags = this->m_rgchTags; + ret.m_hFile = this->m_hFile; + ret.m_hPreviewFile = this->m_hPreviewFile; + ret.m_pchFileName = this->m_pchFileName; + ret.m_nFileSize = this->m_nFileSize; + ret.m_nPreviewFileSize = this->m_nPreviewFileSize; + ret.m_rgchURL = this->m_rgchURL; + ret.m_unVotesUp = this->m_unVotesUp; + ret.m_unVotesDown = this->m_unVotesDown; + ret.m_flScore = this->m_flScore; + return ret; +} + +u64_SteamUGCDetails_t_126::operator w64_SteamUGCDetails_t_126() const +{ + w64_SteamUGCDetails_t_126 ret; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_eResult = this->m_eResult; + ret.m_eFileType = this->m_eFileType; + ret.m_nCreatorAppID = this->m_nCreatorAppID; + ret.m_nConsumerAppID = this->m_nConsumerAppID; + ret.m_rgchTitle = this->m_rgchTitle; + ret.m_rgchDescription = this->m_rgchDescription; + ret.m_ulSteamIDOwner = this->m_ulSteamIDOwner; + ret.m_rtimeCreated = this->m_rtimeCreated; + ret.m_rtimeUpdated = this->m_rtimeUpdated; + ret.m_rtimeAddedToUserList = this->m_rtimeAddedToUserList; + ret.m_eVisibility = this->m_eVisibility; + ret.m_bBanned = this->m_bBanned; + ret.m_bAcceptedForUse = this->m_bAcceptedForUse; + ret.m_bTagsTruncated = this->m_bTagsTruncated; + ret.m_rgchTags = this->m_rgchTags; + ret.m_hFile = this->m_hFile; + ret.m_hPreviewFile = this->m_hPreviewFile; + ret.m_pchFileName = this->m_pchFileName; + ret.m_nFileSize = this->m_nFileSize; + ret.m_nPreviewFileSize = this->m_nPreviewFileSize; + ret.m_rgchURL = this->m_rgchURL; + ret.m_unVotesUp = this->m_unVotesUp; + ret.m_unVotesDown = this->m_unVotesDown; + ret.m_flScore = this->m_flScore; + return ret; +} +#endif + +#ifdef __i386__ +w32_SteamUGCDetails_t_126::operator u32_SteamUGCDetails_t_126() const +{ + u32_SteamUGCDetails_t_126 ret; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_eResult = this->m_eResult; + ret.m_eFileType = this->m_eFileType; + ret.m_nCreatorAppID = this->m_nCreatorAppID; + ret.m_nConsumerAppID = this->m_nConsumerAppID; + ret.m_rgchTitle = this->m_rgchTitle; + ret.m_rgchDescription = this->m_rgchDescription; + ret.m_ulSteamIDOwner = this->m_ulSteamIDOwner; + ret.m_rtimeCreated = this->m_rtimeCreated; + ret.m_rtimeUpdated = this->m_rtimeUpdated; + ret.m_rtimeAddedToUserList = this->m_rtimeAddedToUserList; + ret.m_eVisibility = this->m_eVisibility; + ret.m_bBanned = this->m_bBanned; + ret.m_bAcceptedForUse = this->m_bAcceptedForUse; + ret.m_bTagsTruncated = this->m_bTagsTruncated; + ret.m_rgchTags = this->m_rgchTags; + ret.m_hFile = this->m_hFile; + ret.m_hPreviewFile = this->m_hPreviewFile; + ret.m_pchFileName = this->m_pchFileName; + ret.m_nFileSize = this->m_nFileSize; + ret.m_nPreviewFileSize = this->m_nPreviewFileSize; + ret.m_rgchURL = this->m_rgchURL; + ret.m_unVotesUp = this->m_unVotesUp; + ret.m_unVotesDown = this->m_unVotesDown; + ret.m_flScore = this->m_flScore; + return ret; +} + +u32_SteamUGCDetails_t_126::operator w32_SteamUGCDetails_t_126() const +{ + w32_SteamUGCDetails_t_126 ret; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_eResult = this->m_eResult; + ret.m_eFileType = this->m_eFileType; + ret.m_nCreatorAppID = this->m_nCreatorAppID; + ret.m_nConsumerAppID = this->m_nConsumerAppID; + ret.m_rgchTitle = this->m_rgchTitle; + ret.m_rgchDescription = this->m_rgchDescription; + ret.m_ulSteamIDOwner = this->m_ulSteamIDOwner; + ret.m_rtimeCreated = this->m_rtimeCreated; + ret.m_rtimeUpdated = this->m_rtimeUpdated; + ret.m_rtimeAddedToUserList = this->m_rtimeAddedToUserList; + ret.m_eVisibility = this->m_eVisibility; + ret.m_bBanned = this->m_bBanned; + ret.m_bAcceptedForUse = this->m_bAcceptedForUse; + ret.m_bTagsTruncated = this->m_bTagsTruncated; + ret.m_rgchTags = this->m_rgchTags; + ret.m_hFile = this->m_hFile; + ret.m_hPreviewFile = this->m_hPreviewFile; + ret.m_pchFileName = this->m_pchFileName; + ret.m_nFileSize = this->m_nFileSize; + ret.m_nPreviewFileSize = this->m_nPreviewFileSize; + ret.m_rgchURL = this->m_rgchURL; + ret.m_unVotesUp = this->m_unVotesUp; + ret.m_unVotesDown = this->m_unVotesDown; + ret.m_flScore = this->m_flScore; + return ret; +} +#endif + C_ASSERT( sizeof(w64_AddAppDependencyResult_t) >= 24 ); C_ASSERT( offsetof(w64_AddAppDependencyResult_t, m_eResult) == 0 ); C_ASSERT( sizeof(w64_AddAppDependencyResult_t().m_eResult) >= 4 ); @@ -2204,6 +2464,46 @@ C_ASSERT( sizeof(u32_AddAppDependencyResult_t().m_nPublishedFileId) >= 8 ); C_ASSERT( offsetof(u32_AddAppDependencyResult_t, m_nAppID) == 12 ); C_ASSERT( sizeof(u32_AddAppDependencyResult_t().m_nAppID) >= 4 ); +#ifdef __x86_64__ +w64_AddAppDependencyResult_t::operator u64_AddAppDependencyResult_t() const +{ + u64_AddAppDependencyResult_t ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nAppID = this->m_nAppID; + return ret; +} + +u64_AddAppDependencyResult_t::operator w64_AddAppDependencyResult_t() const +{ + w64_AddAppDependencyResult_t ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nAppID = this->m_nAppID; + return ret; +} +#endif + +#ifdef __i386__ +w32_AddAppDependencyResult_t::operator u32_AddAppDependencyResult_t() const +{ + u32_AddAppDependencyResult_t ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nAppID = this->m_nAppID; + return ret; +} + +u32_AddAppDependencyResult_t::operator w32_AddAppDependencyResult_t() const +{ + w32_AddAppDependencyResult_t ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nAppID = this->m_nAppID; + return ret; +} +#endif + C_ASSERT( sizeof(w64_AddUGCDependencyResult_t) >= 24 ); C_ASSERT( offsetof(w64_AddUGCDependencyResult_t, m_eResult) == 0 ); C_ASSERT( sizeof(w64_AddUGCDependencyResult_t().m_eResult) >= 4 ); @@ -2236,6 +2536,46 @@ C_ASSERT( sizeof(u32_AddUGCDependencyResult_t().m_nPublishedFileId) >= 8 ); C_ASSERT( offsetof(u32_AddUGCDependencyResult_t, m_nChildPublishedFileId) == 12 ); C_ASSERT( sizeof(u32_AddUGCDependencyResult_t().m_nChildPublishedFileId) >= 8 ); +#ifdef __x86_64__ +w64_AddUGCDependencyResult_t::operator u64_AddUGCDependencyResult_t() const +{ + u64_AddUGCDependencyResult_t ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nChildPublishedFileId = this->m_nChildPublishedFileId; + return ret; +} + +u64_AddUGCDependencyResult_t::operator w64_AddUGCDependencyResult_t() const +{ + w64_AddUGCDependencyResult_t ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nChildPublishedFileId = this->m_nChildPublishedFileId; + return ret; +} +#endif + +#ifdef __i386__ +w32_AddUGCDependencyResult_t::operator u32_AddUGCDependencyResult_t() const +{ + u32_AddUGCDependencyResult_t ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nChildPublishedFileId = this->m_nChildPublishedFileId; + return ret; +} + +u32_AddUGCDependencyResult_t::operator w32_AddUGCDependencyResult_t() const +{ + w32_AddUGCDependencyResult_t ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nChildPublishedFileId = this->m_nChildPublishedFileId; + return ret; +} +#endif + C_ASSERT( sizeof(w64_CSteamAPIContext_143) >= 184 ); C_ASSERT( offsetof(w64_CSteamAPIContext_143, m_pSteamClient) == 0 ); C_ASSERT( sizeof(w64_CSteamAPIContext_143().m_pSteamClient) >= 8 ); @@ -3204,6 +3544,42 @@ C_ASSERT( sizeof(u32_CreateBeaconCallback_t().m_eResult) >= 4 ); C_ASSERT( offsetof(u32_CreateBeaconCallback_t, m_ulBeaconID) == 4 ); C_ASSERT( sizeof(u32_CreateBeaconCallback_t().m_ulBeaconID) >= 8 ); +#ifdef __x86_64__ +w64_CreateBeaconCallback_t::operator u64_CreateBeaconCallback_t() const +{ + u64_CreateBeaconCallback_t ret; + ret.m_eResult = this->m_eResult; + ret.m_ulBeaconID = this->m_ulBeaconID; + return ret; +} + +u64_CreateBeaconCallback_t::operator w64_CreateBeaconCallback_t() const +{ + w64_CreateBeaconCallback_t ret; + ret.m_eResult = this->m_eResult; + ret.m_ulBeaconID = this->m_ulBeaconID; + return ret; +} +#endif + +#ifdef __i386__ +w32_CreateBeaconCallback_t::operator u32_CreateBeaconCallback_t() const +{ + u32_CreateBeaconCallback_t ret; + ret.m_eResult = this->m_eResult; + ret.m_ulBeaconID = this->m_ulBeaconID; + return ret; +} + +u32_CreateBeaconCallback_t::operator w32_CreateBeaconCallback_t() const +{ + w32_CreateBeaconCallback_t ret; + ret.m_eResult = this->m_eResult; + ret.m_ulBeaconID = this->m_ulBeaconID; + return ret; +} +#endif + C_ASSERT( sizeof(w64_CreateItemResult_t) >= 24 ); C_ASSERT( offsetof(w64_CreateItemResult_t, m_eResult) == 0 ); C_ASSERT( sizeof(w64_CreateItemResult_t().m_eResult) >= 4 ); @@ -3236,6 +3612,46 @@ C_ASSERT( sizeof(u32_CreateItemResult_t().m_nPublishedFileId) >= 8 ); C_ASSERT( offsetof(u32_CreateItemResult_t, m_bUserNeedsToAcceptWorkshopLegalAgreement) == 12 ); C_ASSERT( sizeof(u32_CreateItemResult_t().m_bUserNeedsToAcceptWorkshopLegalAgreement) >= 1 ); +#ifdef __x86_64__ +w64_CreateItemResult_t::operator u64_CreateItemResult_t() const +{ + u64_CreateItemResult_t ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_bUserNeedsToAcceptWorkshopLegalAgreement = this->m_bUserNeedsToAcceptWorkshopLegalAgreement; + return ret; +} + +u64_CreateItemResult_t::operator w64_CreateItemResult_t() const +{ + w64_CreateItemResult_t ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_bUserNeedsToAcceptWorkshopLegalAgreement = this->m_bUserNeedsToAcceptWorkshopLegalAgreement; + return ret; +} +#endif + +#ifdef __i386__ +w32_CreateItemResult_t::operator u32_CreateItemResult_t() const +{ + u32_CreateItemResult_t ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_bUserNeedsToAcceptWorkshopLegalAgreement = this->m_bUserNeedsToAcceptWorkshopLegalAgreement; + return ret; +} + +u32_CreateItemResult_t::operator w32_CreateItemResult_t() const +{ + w32_CreateItemResult_t ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_bUserNeedsToAcceptWorkshopLegalAgreement = this->m_bUserNeedsToAcceptWorkshopLegalAgreement; + return ret; +} +#endif + C_ASSERT( sizeof(w64_DeleteItemResult_t) >= 16 ); C_ASSERT( offsetof(w64_DeleteItemResult_t, m_eResult) == 0 ); C_ASSERT( sizeof(w64_DeleteItemResult_t().m_eResult) >= 4 ); @@ -3260,6 +3676,42 @@ C_ASSERT( sizeof(u32_DeleteItemResult_t().m_eResult) >= 4 ); C_ASSERT( offsetof(u32_DeleteItemResult_t, m_nPublishedFileId) == 4 ); C_ASSERT( sizeof(u32_DeleteItemResult_t().m_nPublishedFileId) >= 8 ); +#ifdef __x86_64__ +w64_DeleteItemResult_t::operator u64_DeleteItemResult_t() const +{ + u64_DeleteItemResult_t ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + return ret; +} + +u64_DeleteItemResult_t::operator w64_DeleteItemResult_t() const +{ + w64_DeleteItemResult_t ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + return ret; +} +#endif + +#ifdef __i386__ +w32_DeleteItemResult_t::operator u32_DeleteItemResult_t() const +{ + u32_DeleteItemResult_t ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + return ret; +} + +u32_DeleteItemResult_t::operator w32_DeleteItemResult_t() const +{ + w32_DeleteItemResult_t ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + return ret; +} +#endif + C_ASSERT( sizeof(w64_DownloadItemResult_t) >= 24 ); C_ASSERT( offsetof(w64_DownloadItemResult_t, m_unAppID) == 0 ); C_ASSERT( sizeof(w64_DownloadItemResult_t().m_unAppID) >= 4 ); @@ -3292,6 +3744,46 @@ C_ASSERT( sizeof(u32_DownloadItemResult_t().m_nPublishedFileId) >= 8 ); C_ASSERT( offsetof(u32_DownloadItemResult_t, m_eResult) == 12 ); C_ASSERT( sizeof(u32_DownloadItemResult_t().m_eResult) >= 4 ); +#ifdef __x86_64__ +w64_DownloadItemResult_t::operator u64_DownloadItemResult_t() const +{ + u64_DownloadItemResult_t ret; + ret.m_unAppID = this->m_unAppID; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_eResult = this->m_eResult; + return ret; +} + +u64_DownloadItemResult_t::operator w64_DownloadItemResult_t() const +{ + w64_DownloadItemResult_t ret; + ret.m_unAppID = this->m_unAppID; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_eResult = this->m_eResult; + return ret; +} +#endif + +#ifdef __i386__ +w32_DownloadItemResult_t::operator u32_DownloadItemResult_t() const +{ + u32_DownloadItemResult_t ret; + ret.m_unAppID = this->m_unAppID; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_eResult = this->m_eResult; + return ret; +} + +u32_DownloadItemResult_t::operator w32_DownloadItemResult_t() const +{ + w32_DownloadItemResult_t ret; + ret.m_unAppID = this->m_unAppID; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_eResult = this->m_eResult; + return ret; +} +#endif + C_ASSERT( sizeof(w64_EndGameResultCallback_t) >= 16 ); C_ASSERT( offsetof(w64_EndGameResultCallback_t, m_eResult) == 0 ); C_ASSERT( sizeof(w64_EndGameResultCallback_t().m_eResult) >= 4 ); @@ -3316,6 +3808,42 @@ C_ASSERT( sizeof(u32_EndGameResultCallback_t().m_eResult) >= 4 ); C_ASSERT( offsetof(u32_EndGameResultCallback_t, ullUniqueGameID) == 4 ); C_ASSERT( sizeof(u32_EndGameResultCallback_t().ullUniqueGameID) >= 8 ); +#ifdef __x86_64__ +w64_EndGameResultCallback_t::operator u64_EndGameResultCallback_t() const +{ + u64_EndGameResultCallback_t ret; + ret.m_eResult = this->m_eResult; + ret.ullUniqueGameID = this->ullUniqueGameID; + return ret; +} + +u64_EndGameResultCallback_t::operator w64_EndGameResultCallback_t() const +{ + w64_EndGameResultCallback_t ret; + ret.m_eResult = this->m_eResult; + ret.ullUniqueGameID = this->ullUniqueGameID; + return ret; +} +#endif + +#ifdef __i386__ +w32_EndGameResultCallback_t::operator u32_EndGameResultCallback_t() const +{ + u32_EndGameResultCallback_t ret; + ret.m_eResult = this->m_eResult; + ret.ullUniqueGameID = this->ullUniqueGameID; + return ret; +} + +u32_EndGameResultCallback_t::operator w32_EndGameResultCallback_t() const +{ + w32_EndGameResultCallback_t ret; + ret.m_eResult = this->m_eResult; + ret.ullUniqueGameID = this->ullUniqueGameID; + return ret; +} +#endif + C_ASSERT( sizeof(w64_FileDetailsResult_t) >= 40 ); C_ASSERT( offsetof(w64_FileDetailsResult_t, m_eResult) == 0 ); C_ASSERT( sizeof(w64_FileDetailsResult_t().m_eResult) >= 4 ); @@ -3356,6 +3884,50 @@ C_ASSERT( sizeof(u32_FileDetailsResult_t().m_FileSHA) >= 20 ); C_ASSERT( offsetof(u32_FileDetailsResult_t, m_unFlags) == 32 ); C_ASSERT( sizeof(u32_FileDetailsResult_t().m_unFlags) >= 4 ); +#ifdef __x86_64__ +w64_FileDetailsResult_t::operator u64_FileDetailsResult_t() const +{ + u64_FileDetailsResult_t ret; + ret.m_eResult = this->m_eResult; + ret.m_ulFileSize = this->m_ulFileSize; + ret.m_FileSHA = this->m_FileSHA; + ret.m_unFlags = this->m_unFlags; + return ret; +} + +u64_FileDetailsResult_t::operator w64_FileDetailsResult_t() const +{ + w64_FileDetailsResult_t ret; + ret.m_eResult = this->m_eResult; + ret.m_ulFileSize = this->m_ulFileSize; + ret.m_FileSHA = this->m_FileSHA; + ret.m_unFlags = this->m_unFlags; + return ret; +} +#endif + +#ifdef __i386__ +w32_FileDetailsResult_t::operator u32_FileDetailsResult_t() const +{ + u32_FileDetailsResult_t ret; + ret.m_eResult = this->m_eResult; + ret.m_ulFileSize = this->m_ulFileSize; + ret.m_FileSHA = this->m_FileSHA; + ret.m_unFlags = this->m_unFlags; + return ret; +} + +u32_FileDetailsResult_t::operator w32_FileDetailsResult_t() const +{ + w32_FileDetailsResult_t ret; + ret.m_eResult = this->m_eResult; + ret.m_ulFileSize = this->m_ulFileSize; + ret.m_FileSHA = this->m_FileSHA; + ret.m_unFlags = this->m_unFlags; + return ret; +} +#endif + C_ASSERT( sizeof(w64_GSReputation_t_123) >= 40 ); C_ASSERT( offsetof(w64_GSReputation_t_123, m_eResult) == 0 ); C_ASSERT( sizeof(w64_GSReputation_t_123().m_eResult) >= 4 ); @@ -3484,6 +4056,90 @@ C_ASSERT( sizeof(u32_GSReputation_t_108().m_ulBannedGameID) >= 8 ); C_ASSERT( offsetof(u32_GSReputation_t_108, m_unBanExpires) == 28 ); C_ASSERT( sizeof(u32_GSReputation_t_108().m_unBanExpires) >= 4 ); +#ifdef __x86_64__ +w64_GSReputation_t_123::operator u64_GSReputation_t_123() const +{ + u64_GSReputation_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_unReputationScore = this->m_unReputationScore; + ret.m_bBanned = this->m_bBanned; + ret.m_unBannedIP = this->m_unBannedIP; + ret.m_usBannedPort = this->m_usBannedPort; + ret.m_ulBannedGameID = this->m_ulBannedGameID; + ret.m_unBanExpires = this->m_unBanExpires; + return ret; +} + +u64_GSReputation_t_123::operator w64_GSReputation_t_123() const +{ + w64_GSReputation_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_unReputationScore = this->m_unReputationScore; + ret.m_bBanned = this->m_bBanned; + ret.m_unBannedIP = this->m_unBannedIP; + ret.m_usBannedPort = this->m_usBannedPort; + ret.m_ulBannedGameID = this->m_ulBannedGameID; + ret.m_unBanExpires = this->m_unBanExpires; + return ret; +} +#endif + +#ifdef __i386__ +w32_GSReputation_t_123::operator u32_GSReputation_t_123() const +{ + u32_GSReputation_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_unReputationScore = this->m_unReputationScore; + ret.m_bBanned = this->m_bBanned; + ret.m_unBannedIP = this->m_unBannedIP; + ret.m_usBannedPort = this->m_usBannedPort; + ret.m_ulBannedGameID = this->m_ulBannedGameID; + ret.m_unBanExpires = this->m_unBanExpires; + return ret; +} + +u32_GSReputation_t_123::operator w32_GSReputation_t_123() const +{ + w32_GSReputation_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_unReputationScore = this->m_unReputationScore; + ret.m_bBanned = this->m_bBanned; + ret.m_unBannedIP = this->m_unBannedIP; + ret.m_usBannedPort = this->m_usBannedPort; + ret.m_ulBannedGameID = this->m_ulBannedGameID; + ret.m_unBanExpires = this->m_unBanExpires; + return ret; +} +#endif + +#ifdef __i386__ +w32_GSReputation_t_108::operator u32_GSReputation_t_108() const +{ + u32_GSReputation_t_108 ret; + ret.m_eResult = this->m_eResult; + ret.m_unReputationScore = this->m_unReputationScore; + ret.m_bBanned = this->m_bBanned; + ret.m_unBannedIP = this->m_unBannedIP; + ret.m_usBannedPort = this->m_usBannedPort; + ret.m_ulBannedGameID = this->m_ulBannedGameID; + ret.m_unBanExpires = this->m_unBanExpires; + return ret; +} + +u32_GSReputation_t_108::operator w32_GSReputation_t_108() const +{ + w32_GSReputation_t_108 ret; + ret.m_eResult = this->m_eResult; + ret.m_unReputationScore = this->m_unReputationScore; + ret.m_bBanned = this->m_bBanned; + ret.m_unBannedIP = this->m_unBannedIP; + ret.m_usBannedPort = this->m_usBannedPort; + ret.m_ulBannedGameID = this->m_ulBannedGameID; + ret.m_unBanExpires = this->m_unBanExpires; + return ret; +} +#endif + C_ASSERT( sizeof(w64_GetAppDependenciesResult_t) >= 152 ); C_ASSERT( offsetof(w64_GetAppDependenciesResult_t, m_eResult) == 0 ); C_ASSERT( sizeof(w64_GetAppDependenciesResult_t().m_eResult) >= 4 ); @@ -3532,6 +4188,54 @@ C_ASSERT( sizeof(u32_GetAppDependenciesResult_t().m_nNumAppDependencies) >= 4 ); C_ASSERT( offsetof(u32_GetAppDependenciesResult_t, m_nTotalNumAppDependencies) == 144 ); C_ASSERT( sizeof(u32_GetAppDependenciesResult_t().m_nTotalNumAppDependencies) >= 4 ); +#ifdef __x86_64__ +w64_GetAppDependenciesResult_t::operator u64_GetAppDependenciesResult_t() const +{ + u64_GetAppDependenciesResult_t ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_rgAppIDs = this->m_rgAppIDs; + ret.m_nNumAppDependencies = this->m_nNumAppDependencies; + ret.m_nTotalNumAppDependencies = this->m_nTotalNumAppDependencies; + return ret; +} + +u64_GetAppDependenciesResult_t::operator w64_GetAppDependenciesResult_t() const +{ + w64_GetAppDependenciesResult_t ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_rgAppIDs = this->m_rgAppIDs; + ret.m_nNumAppDependencies = this->m_nNumAppDependencies; + ret.m_nTotalNumAppDependencies = this->m_nTotalNumAppDependencies; + return ret; +} +#endif + +#ifdef __i386__ +w32_GetAppDependenciesResult_t::operator u32_GetAppDependenciesResult_t() const +{ + u32_GetAppDependenciesResult_t ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_rgAppIDs = this->m_rgAppIDs; + ret.m_nNumAppDependencies = this->m_nNumAppDependencies; + ret.m_nTotalNumAppDependencies = this->m_nTotalNumAppDependencies; + return ret; +} + +u32_GetAppDependenciesResult_t::operator w32_GetAppDependenciesResult_t() const +{ + w32_GetAppDependenciesResult_t ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_rgAppIDs = this->m_rgAppIDs; + ret.m_nNumAppDependencies = this->m_nNumAppDependencies; + ret.m_nTotalNumAppDependencies = this->m_nTotalNumAppDependencies; + return ret; +} +#endif + C_ASSERT( sizeof(w64_HTML_ChangedTitle_t) >= 16 ); C_ASSERT( offsetof(w64_HTML_ChangedTitle_t, unBrowserHandle) == 0 ); C_ASSERT( sizeof(w64_HTML_ChangedTitle_t().unBrowserHandle) >= 4 ); @@ -3556,6 +4260,24 @@ C_ASSERT( sizeof(u32_HTML_ChangedTitle_t().unBrowserHandle) >= 4 ); C_ASSERT( offsetof(u32_HTML_ChangedTitle_t, pchTitle) == 4 ); C_ASSERT( sizeof(u32_HTML_ChangedTitle_t().pchTitle) >= 4 ); +#ifdef __x86_64__ +w64_HTML_ChangedTitle_t::operator u64_HTML_ChangedTitle_t() const +{ + u64_HTML_ChangedTitle_t ret; + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchTitle = this->pchTitle; + return ret; +} + +u64_HTML_ChangedTitle_t::operator w64_HTML_ChangedTitle_t() const +{ + w64_HTML_ChangedTitle_t ret; + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchTitle = this->pchTitle; + return ret; +} +#endif + C_ASSERT( sizeof(w64_HTML_ComboNeedsPaint_t) >= 24 ); C_ASSERT( offsetof(w64_HTML_ComboNeedsPaint_t, unBrowserHandle) == 0 ); C_ASSERT( sizeof(w64_HTML_ComboNeedsPaint_t().unBrowserHandle) >= 4 ); @@ -3596,6 +4318,28 @@ C_ASSERT( sizeof(u32_HTML_ComboNeedsPaint_t().unWide) >= 4 ); C_ASSERT( offsetof(u32_HTML_ComboNeedsPaint_t, unTall) == 12 ); C_ASSERT( sizeof(u32_HTML_ComboNeedsPaint_t().unTall) >= 4 ); +#ifdef __x86_64__ +w64_HTML_ComboNeedsPaint_t::operator u64_HTML_ComboNeedsPaint_t() const +{ + u64_HTML_ComboNeedsPaint_t ret; + ret.unBrowserHandle = this->unBrowserHandle; + ret.pBGRA = this->pBGRA; + ret.unWide = this->unWide; + ret.unTall = this->unTall; + return ret; +} + +u64_HTML_ComboNeedsPaint_t::operator w64_HTML_ComboNeedsPaint_t() const +{ + w64_HTML_ComboNeedsPaint_t ret; + ret.unBrowserHandle = this->unBrowserHandle; + ret.pBGRA = this->pBGRA; + ret.unWide = this->unWide; + ret.unTall = this->unTall; + return ret; +} +#endif + C_ASSERT( sizeof(w64_HTML_FileOpenDialog_t) >= 24 ); C_ASSERT( offsetof(w64_HTML_FileOpenDialog_t, unBrowserHandle) == 0 ); C_ASSERT( sizeof(w64_HTML_FileOpenDialog_t().unBrowserHandle) >= 4 ); @@ -3628,6 +4372,48 @@ C_ASSERT( sizeof(u32_HTML_FileOpenDialog_t().pchTitle) >= 4 ); C_ASSERT( offsetof(u32_HTML_FileOpenDialog_t, pchInitialFile) == 8 ); C_ASSERT( sizeof(u32_HTML_FileOpenDialog_t().pchInitialFile) >= 4 ); +#ifdef __x86_64__ +w64_HTML_FileOpenDialog_t::operator u64_HTML_FileOpenDialog_t() const +{ + u64_HTML_FileOpenDialog_t ret; + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchTitle = this->pchTitle; + ret.pchInitialFile = this->pchInitialFile; + return ret; +} + +u64_HTML_FileOpenDialog_t::operator w64_HTML_FileOpenDialog_t() const +{ + w64_HTML_FileOpenDialog_t ret; + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchTitle = this->pchTitle; + steamclient_unix_path_to_dos_path(1, this->pchInitialFile, g_tmppath, sizeof(g_tmppath), 1); + ret.pchInitialFile = g_tmppath; + return ret; +} +#endif + +#ifdef __i386__ +w32_HTML_FileOpenDialog_t::operator u32_HTML_FileOpenDialog_t() const +{ + u32_HTML_FileOpenDialog_t ret; + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchTitle = this->pchTitle; + ret.pchInitialFile = this->pchInitialFile; + return ret; +} + +u32_HTML_FileOpenDialog_t::operator w32_HTML_FileOpenDialog_t() const +{ + w32_HTML_FileOpenDialog_t ret; + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchTitle = this->pchTitle; + steamclient_unix_path_to_dos_path(1, this->pchInitialFile, g_tmppath, sizeof(g_tmppath), 1); + ret.pchInitialFile = g_tmppath; + return ret; +} +#endif + C_ASSERT( sizeof(w64_HTML_FinishedRequest_t) >= 24 ); C_ASSERT( offsetof(w64_HTML_FinishedRequest_t, unBrowserHandle) == 0 ); C_ASSERT( sizeof(w64_HTML_FinishedRequest_t().unBrowserHandle) >= 4 ); @@ -3660,6 +4446,48 @@ C_ASSERT( sizeof(u32_HTML_FinishedRequest_t().pchURL) >= 4 ); C_ASSERT( offsetof(u32_HTML_FinishedRequest_t, pchPageTitle) == 8 ); C_ASSERT( sizeof(u32_HTML_FinishedRequest_t().pchPageTitle) >= 4 ); +#ifdef __x86_64__ +w64_HTML_FinishedRequest_t::operator u64_HTML_FinishedRequest_t() const +{ + u64_HTML_FinishedRequest_t ret; + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchURL = this->pchURL; + ret.pchPageTitle = this->pchPageTitle; + return ret; +} + +u64_HTML_FinishedRequest_t::operator w64_HTML_FinishedRequest_t() const +{ + w64_HTML_FinishedRequest_t ret; + ret.unBrowserHandle = this->unBrowserHandle; + steamclient_unix_path_to_dos_path(1, this->pchURL, g_tmppath, sizeof(g_tmppath), 1); + ret.pchURL = g_tmppath; + ret.pchPageTitle = this->pchPageTitle; + return ret; +} +#endif + +#ifdef __i386__ +w32_HTML_FinishedRequest_t::operator u32_HTML_FinishedRequest_t() const +{ + u32_HTML_FinishedRequest_t ret; + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchURL = this->pchURL; + ret.pchPageTitle = this->pchPageTitle; + return ret; +} + +u32_HTML_FinishedRequest_t::operator w32_HTML_FinishedRequest_t() const +{ + w32_HTML_FinishedRequest_t ret; + ret.unBrowserHandle = this->unBrowserHandle; + steamclient_unix_path_to_dos_path(1, this->pchURL, g_tmppath, sizeof(g_tmppath), 1); + ret.pchURL = g_tmppath; + ret.pchPageTitle = this->pchPageTitle; + return ret; +} +#endif + C_ASSERT( sizeof(w64_HTML_JSAlert_t) >= 16 ); C_ASSERT( offsetof(w64_HTML_JSAlert_t, unBrowserHandle) == 0 ); C_ASSERT( sizeof(w64_HTML_JSAlert_t().unBrowserHandle) >= 4 ); @@ -3684,6 +4512,24 @@ C_ASSERT( sizeof(u32_HTML_JSAlert_t().unBrowserHandle) >= 4 ); C_ASSERT( offsetof(u32_HTML_JSAlert_t, pchMessage) == 4 ); C_ASSERT( sizeof(u32_HTML_JSAlert_t().pchMessage) >= 4 ); +#ifdef __x86_64__ +w64_HTML_JSAlert_t::operator u64_HTML_JSAlert_t() const +{ + u64_HTML_JSAlert_t ret; + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchMessage = this->pchMessage; + return ret; +} + +u64_HTML_JSAlert_t::operator w64_HTML_JSAlert_t() const +{ + w64_HTML_JSAlert_t ret; + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchMessage = this->pchMessage; + return ret; +} +#endif + C_ASSERT( sizeof(w64_HTML_JSConfirm_t) >= 16 ); C_ASSERT( offsetof(w64_HTML_JSConfirm_t, unBrowserHandle) == 0 ); C_ASSERT( sizeof(w64_HTML_JSConfirm_t().unBrowserHandle) >= 4 ); @@ -3708,6 +4554,24 @@ C_ASSERT( sizeof(u32_HTML_JSConfirm_t().unBrowserHandle) >= 4 ); C_ASSERT( offsetof(u32_HTML_JSConfirm_t, pchMessage) == 4 ); C_ASSERT( sizeof(u32_HTML_JSConfirm_t().pchMessage) >= 4 ); +#ifdef __x86_64__ +w64_HTML_JSConfirm_t::operator u64_HTML_JSConfirm_t() const +{ + u64_HTML_JSConfirm_t ret; + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchMessage = this->pchMessage; + return ret; +} + +u64_HTML_JSConfirm_t::operator w64_HTML_JSConfirm_t() const +{ + w64_HTML_JSConfirm_t ret; + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchMessage = this->pchMessage; + return ret; +} +#endif + C_ASSERT( sizeof(w64_HTML_LinkAtPosition_t) >= 32 ); C_ASSERT( offsetof(w64_HTML_LinkAtPosition_t, unBrowserHandle) == 0 ); C_ASSERT( sizeof(w64_HTML_LinkAtPosition_t().unBrowserHandle) >= 4 ); @@ -3764,6 +4628,60 @@ C_ASSERT( sizeof(u32_HTML_LinkAtPosition_t().bInput) >= 1 ); C_ASSERT( offsetof(u32_HTML_LinkAtPosition_t, bLiveLink) == 17 ); C_ASSERT( sizeof(u32_HTML_LinkAtPosition_t().bLiveLink) >= 1 ); +#ifdef __x86_64__ +w64_HTML_LinkAtPosition_t::operator u64_HTML_LinkAtPosition_t() const +{ + u64_HTML_LinkAtPosition_t ret; + ret.unBrowserHandle = this->unBrowserHandle; + ret.x = this->x; + ret.y = this->y; + ret.pchURL = this->pchURL; + ret.bInput = this->bInput; + ret.bLiveLink = this->bLiveLink; + return ret; +} + +u64_HTML_LinkAtPosition_t::operator w64_HTML_LinkAtPosition_t() const +{ + w64_HTML_LinkAtPosition_t ret; + ret.unBrowserHandle = this->unBrowserHandle; + ret.x = this->x; + ret.y = this->y; + steamclient_unix_path_to_dos_path(1, this->pchURL, g_tmppath, sizeof(g_tmppath), 1); + ret.pchURL = g_tmppath; + ret.bInput = this->bInput; + ret.bLiveLink = this->bLiveLink; + return ret; +} +#endif + +#ifdef __i386__ +w32_HTML_LinkAtPosition_t::operator u32_HTML_LinkAtPosition_t() const +{ + u32_HTML_LinkAtPosition_t ret; + ret.unBrowserHandle = this->unBrowserHandle; + ret.x = this->x; + ret.y = this->y; + ret.pchURL = this->pchURL; + ret.bInput = this->bInput; + ret.bLiveLink = this->bLiveLink; + return ret; +} + +u32_HTML_LinkAtPosition_t::operator w32_HTML_LinkAtPosition_t() const +{ + w32_HTML_LinkAtPosition_t ret; + ret.unBrowserHandle = this->unBrowserHandle; + ret.x = this->x; + ret.y = this->y; + steamclient_unix_path_to_dos_path(1, this->pchURL, g_tmppath, sizeof(g_tmppath), 1); + ret.pchURL = g_tmppath; + ret.bInput = this->bInput; + ret.bLiveLink = this->bLiveLink; + return ret; +} +#endif + C_ASSERT( sizeof(w64_HTML_NeedsPaint_t) >= 56 ); C_ASSERT( offsetof(w64_HTML_NeedsPaint_t, unBrowserHandle) == 0 ); C_ASSERT( sizeof(w64_HTML_NeedsPaint_t().unBrowserHandle) >= 4 ); @@ -3868,6 +4786,44 @@ C_ASSERT( sizeof(u32_HTML_NeedsPaint_t().flPageScale) >= 4 ); C_ASSERT( offsetof(u32_HTML_NeedsPaint_t, unPageSerial) == 44 ); C_ASSERT( sizeof(u32_HTML_NeedsPaint_t().unPageSerial) >= 4 ); +#ifdef __x86_64__ +w64_HTML_NeedsPaint_t::operator u64_HTML_NeedsPaint_t() const +{ + u64_HTML_NeedsPaint_t ret; + ret.unBrowserHandle = this->unBrowserHandle; + ret.pBGRA = this->pBGRA; + ret.unWide = this->unWide; + ret.unTall = this->unTall; + ret.unUpdateX = this->unUpdateX; + ret.unUpdateY = this->unUpdateY; + ret.unUpdateWide = this->unUpdateWide; + ret.unUpdateTall = this->unUpdateTall; + ret.unScrollX = this->unScrollX; + ret.unScrollY = this->unScrollY; + ret.flPageScale = this->flPageScale; + ret.unPageSerial = this->unPageSerial; + return ret; +} + +u64_HTML_NeedsPaint_t::operator w64_HTML_NeedsPaint_t() const +{ + w64_HTML_NeedsPaint_t ret; + ret.unBrowserHandle = this->unBrowserHandle; + ret.pBGRA = this->pBGRA; + ret.unWide = this->unWide; + ret.unTall = this->unTall; + ret.unUpdateX = this->unUpdateX; + ret.unUpdateY = this->unUpdateY; + ret.unUpdateWide = this->unUpdateWide; + ret.unUpdateTall = this->unUpdateTall; + ret.unScrollX = this->unScrollX; + ret.unScrollY = this->unScrollY; + ret.flPageScale = this->flPageScale; + ret.unPageSerial = this->unPageSerial; + return ret; +} +#endif + C_ASSERT( sizeof(w64_HTML_NewWindow_t_132x) >= 40 ); C_ASSERT( offsetof(w64_HTML_NewWindow_t_132x, unBrowserHandle) == 0 ); C_ASSERT( sizeof(w64_HTML_NewWindow_t_132x().unBrowserHandle) >= 4 ); @@ -3988,6 +4944,118 @@ C_ASSERT( sizeof(u32_HTML_NewWindow_t_130x().unWide) >= 4 ); C_ASSERT( offsetof(u32_HTML_NewWindow_t_130x, unTall) == 20 ); C_ASSERT( sizeof(u32_HTML_NewWindow_t_130x().unTall) >= 4 ); +#ifdef __x86_64__ +w64_HTML_NewWindow_t_132x::operator u64_HTML_NewWindow_t_132x() const +{ + u64_HTML_NewWindow_t_132x ret; + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchURL = this->pchURL; + ret.unX = this->unX; + ret.unY = this->unY; + ret.unWide = this->unWide; + ret.unTall = this->unTall; + ret.unNewWindow_BrowserHandle_IGNORE = this->unNewWindow_BrowserHandle_IGNORE; + return ret; +} + +u64_HTML_NewWindow_t_132x::operator w64_HTML_NewWindow_t_132x() const +{ + w64_HTML_NewWindow_t_132x ret; + ret.unBrowserHandle = this->unBrowserHandle; + steamclient_unix_path_to_dos_path(1, this->pchURL, g_tmppath, sizeof(g_tmppath), 1); + ret.pchURL = g_tmppath; + ret.unX = this->unX; + ret.unY = this->unY; + ret.unWide = this->unWide; + ret.unTall = this->unTall; + ret.unNewWindow_BrowserHandle_IGNORE = this->unNewWindow_BrowserHandle_IGNORE; + return ret; +} +#endif + +#ifdef __i386__ +w32_HTML_NewWindow_t_132x::operator u32_HTML_NewWindow_t_132x() const +{ + u32_HTML_NewWindow_t_132x ret; + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchURL = this->pchURL; + ret.unX = this->unX; + ret.unY = this->unY; + ret.unWide = this->unWide; + ret.unTall = this->unTall; + ret.unNewWindow_BrowserHandle_IGNORE = this->unNewWindow_BrowserHandle_IGNORE; + return ret; +} + +u32_HTML_NewWindow_t_132x::operator w32_HTML_NewWindow_t_132x() const +{ + w32_HTML_NewWindow_t_132x ret; + ret.unBrowserHandle = this->unBrowserHandle; + steamclient_unix_path_to_dos_path(1, this->pchURL, g_tmppath, sizeof(g_tmppath), 1); + ret.pchURL = g_tmppath; + ret.unX = this->unX; + ret.unY = this->unY; + ret.unWide = this->unWide; + ret.unTall = this->unTall; + ret.unNewWindow_BrowserHandle_IGNORE = this->unNewWindow_BrowserHandle_IGNORE; + return ret; +} +#endif + +#ifdef __x86_64__ +w64_HTML_NewWindow_t_130x::operator u64_HTML_NewWindow_t_130x() const +{ + u64_HTML_NewWindow_t_130x ret; + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchURL = this->pchURL; + ret.unX = this->unX; + ret.unY = this->unY; + ret.unWide = this->unWide; + ret.unTall = this->unTall; + return ret; +} + +u64_HTML_NewWindow_t_130x::operator w64_HTML_NewWindow_t_130x() const +{ + w64_HTML_NewWindow_t_130x ret; + ret.unBrowserHandle = this->unBrowserHandle; + steamclient_unix_path_to_dos_path(1, this->pchURL, g_tmppath, sizeof(g_tmppath), 1); + ret.pchURL = g_tmppath; + ret.unX = this->unX; + ret.unY = this->unY; + ret.unWide = this->unWide; + ret.unTall = this->unTall; + return ret; +} +#endif + +#ifdef __i386__ +w32_HTML_NewWindow_t_130x::operator u32_HTML_NewWindow_t_130x() const +{ + u32_HTML_NewWindow_t_130x ret; + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchURL = this->pchURL; + ret.unX = this->unX; + ret.unY = this->unY; + ret.unWide = this->unWide; + ret.unTall = this->unTall; + return ret; +} + +u32_HTML_NewWindow_t_130x::operator w32_HTML_NewWindow_t_130x() const +{ + w32_HTML_NewWindow_t_130x ret; + ret.unBrowserHandle = this->unBrowserHandle; + steamclient_unix_path_to_dos_path(1, this->pchURL, g_tmppath, sizeof(g_tmppath), 1); + ret.pchURL = g_tmppath; + ret.unX = this->unX; + ret.unY = this->unY; + ret.unWide = this->unWide; + ret.unTall = this->unTall; + return ret; +} +#endif + C_ASSERT( sizeof(w64_HTML_OpenLinkInNewTab_t) >= 16 ); C_ASSERT( offsetof(w64_HTML_OpenLinkInNewTab_t, unBrowserHandle) == 0 ); C_ASSERT( sizeof(w64_HTML_OpenLinkInNewTab_t().unBrowserHandle) >= 4 ); @@ -4012,6 +5080,44 @@ C_ASSERT( sizeof(u32_HTML_OpenLinkInNewTab_t().unBrowserHandle) >= 4 ); C_ASSERT( offsetof(u32_HTML_OpenLinkInNewTab_t, pchURL) == 4 ); C_ASSERT( sizeof(u32_HTML_OpenLinkInNewTab_t().pchURL) >= 4 ); +#ifdef __x86_64__ +w64_HTML_OpenLinkInNewTab_t::operator u64_HTML_OpenLinkInNewTab_t() const +{ + u64_HTML_OpenLinkInNewTab_t ret; + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchURL = this->pchURL; + return ret; +} + +u64_HTML_OpenLinkInNewTab_t::operator w64_HTML_OpenLinkInNewTab_t() const +{ + w64_HTML_OpenLinkInNewTab_t ret; + ret.unBrowserHandle = this->unBrowserHandle; + steamclient_unix_path_to_dos_path(1, this->pchURL, g_tmppath, sizeof(g_tmppath), 1); + ret.pchURL = g_tmppath; + return ret; +} +#endif + +#ifdef __i386__ +w32_HTML_OpenLinkInNewTab_t::operator u32_HTML_OpenLinkInNewTab_t() const +{ + u32_HTML_OpenLinkInNewTab_t ret; + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchURL = this->pchURL; + return ret; +} + +u32_HTML_OpenLinkInNewTab_t::operator w32_HTML_OpenLinkInNewTab_t() const +{ + w32_HTML_OpenLinkInNewTab_t ret; + ret.unBrowserHandle = this->unBrowserHandle; + steamclient_unix_path_to_dos_path(1, this->pchURL, g_tmppath, sizeof(g_tmppath), 1); + ret.pchURL = g_tmppath; + return ret; +} +#endif + C_ASSERT( sizeof(w64_HTML_ShowToolTip_t) >= 16 ); C_ASSERT( offsetof(w64_HTML_ShowToolTip_t, unBrowserHandle) == 0 ); C_ASSERT( sizeof(w64_HTML_ShowToolTip_t().unBrowserHandle) >= 4 ); @@ -4036,6 +5142,24 @@ C_ASSERT( sizeof(u32_HTML_ShowToolTip_t().unBrowserHandle) >= 4 ); C_ASSERT( offsetof(u32_HTML_ShowToolTip_t, pchMsg) == 4 ); C_ASSERT( sizeof(u32_HTML_ShowToolTip_t().pchMsg) >= 4 ); +#ifdef __x86_64__ +w64_HTML_ShowToolTip_t::operator u64_HTML_ShowToolTip_t() const +{ + u64_HTML_ShowToolTip_t ret; + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchMsg = this->pchMsg; + return ret; +} + +u64_HTML_ShowToolTip_t::operator w64_HTML_ShowToolTip_t() const +{ + w64_HTML_ShowToolTip_t ret; + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchMsg = this->pchMsg; + return ret; +} +#endif + C_ASSERT( sizeof(w64_HTML_StartRequest_t) >= 40 ); C_ASSERT( offsetof(w64_HTML_StartRequest_t, unBrowserHandle) == 0 ); C_ASSERT( sizeof(w64_HTML_StartRequest_t().unBrowserHandle) >= 4 ); @@ -4084,6 +5208,56 @@ C_ASSERT( sizeof(u32_HTML_StartRequest_t().pchPostData) >= 4 ); C_ASSERT( offsetof(u32_HTML_StartRequest_t, bIsRedirect) == 16 ); C_ASSERT( sizeof(u32_HTML_StartRequest_t().bIsRedirect) >= 1 ); +#ifdef __x86_64__ +w64_HTML_StartRequest_t::operator u64_HTML_StartRequest_t() const +{ + u64_HTML_StartRequest_t ret; + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchURL = this->pchURL; + ret.pchTarget = this->pchTarget; + ret.pchPostData = this->pchPostData; + ret.bIsRedirect = this->bIsRedirect; + return ret; +} + +u64_HTML_StartRequest_t::operator w64_HTML_StartRequest_t() const +{ + w64_HTML_StartRequest_t ret; + ret.unBrowserHandle = this->unBrowserHandle; + steamclient_unix_path_to_dos_path(1, this->pchURL, g_tmppath, sizeof(g_tmppath), 1); + ret.pchURL = g_tmppath; + ret.pchTarget = this->pchTarget; + ret.pchPostData = this->pchPostData; + ret.bIsRedirect = this->bIsRedirect; + return ret; +} +#endif + +#ifdef __i386__ +w32_HTML_StartRequest_t::operator u32_HTML_StartRequest_t() const +{ + u32_HTML_StartRequest_t ret; + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchURL = this->pchURL; + ret.pchTarget = this->pchTarget; + ret.pchPostData = this->pchPostData; + ret.bIsRedirect = this->bIsRedirect; + return ret; +} + +u32_HTML_StartRequest_t::operator w32_HTML_StartRequest_t() const +{ + w32_HTML_StartRequest_t ret; + ret.unBrowserHandle = this->unBrowserHandle; + steamclient_unix_path_to_dos_path(1, this->pchURL, g_tmppath, sizeof(g_tmppath), 1); + ret.pchURL = g_tmppath; + ret.pchTarget = this->pchTarget; + ret.pchPostData = this->pchPostData; + ret.bIsRedirect = this->bIsRedirect; + return ret; +} +#endif + C_ASSERT( sizeof(w64_HTML_StatusText_t) >= 16 ); C_ASSERT( offsetof(w64_HTML_StatusText_t, unBrowserHandle) == 0 ); C_ASSERT( sizeof(w64_HTML_StatusText_t().unBrowserHandle) >= 4 ); @@ -4108,6 +5282,24 @@ C_ASSERT( sizeof(u32_HTML_StatusText_t().unBrowserHandle) >= 4 ); C_ASSERT( offsetof(u32_HTML_StatusText_t, pchMsg) == 4 ); C_ASSERT( sizeof(u32_HTML_StatusText_t().pchMsg) >= 4 ); +#ifdef __x86_64__ +w64_HTML_StatusText_t::operator u64_HTML_StatusText_t() const +{ + u64_HTML_StatusText_t ret; + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchMsg = this->pchMsg; + return ret; +} + +u64_HTML_StatusText_t::operator w64_HTML_StatusText_t() const +{ + w64_HTML_StatusText_t ret; + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchMsg = this->pchMsg; + return ret; +} +#endif + C_ASSERT( sizeof(w64_HTML_URLChanged_t) >= 48 ); C_ASSERT( offsetof(w64_HTML_URLChanged_t, unBrowserHandle) == 0 ); C_ASSERT( sizeof(w64_HTML_URLChanged_t().unBrowserHandle) >= 4 ); @@ -4164,6 +5356,60 @@ C_ASSERT( sizeof(u32_HTML_URLChanged_t().pchPageTitle) >= 4 ); C_ASSERT( offsetof(u32_HTML_URLChanged_t, bNewNavigation) == 20 ); C_ASSERT( sizeof(u32_HTML_URLChanged_t().bNewNavigation) >= 1 ); +#ifdef __x86_64__ +w64_HTML_URLChanged_t::operator u64_HTML_URLChanged_t() const +{ + u64_HTML_URLChanged_t ret; + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchURL = this->pchURL; + ret.pchPostData = this->pchPostData; + ret.bIsRedirect = this->bIsRedirect; + ret.pchPageTitle = this->pchPageTitle; + ret.bNewNavigation = this->bNewNavigation; + return ret; +} + +u64_HTML_URLChanged_t::operator w64_HTML_URLChanged_t() const +{ + w64_HTML_URLChanged_t ret; + ret.unBrowserHandle = this->unBrowserHandle; + steamclient_unix_path_to_dos_path(1, this->pchURL, g_tmppath, sizeof(g_tmppath), 1); + ret.pchURL = g_tmppath; + ret.pchPostData = this->pchPostData; + ret.bIsRedirect = this->bIsRedirect; + ret.pchPageTitle = this->pchPageTitle; + ret.bNewNavigation = this->bNewNavigation; + return ret; +} +#endif + +#ifdef __i386__ +w32_HTML_URLChanged_t::operator u32_HTML_URLChanged_t() const +{ + u32_HTML_URLChanged_t ret; + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchURL = this->pchURL; + ret.pchPostData = this->pchPostData; + ret.bIsRedirect = this->bIsRedirect; + ret.pchPageTitle = this->pchPageTitle; + ret.bNewNavigation = this->bNewNavigation; + return ret; +} + +u32_HTML_URLChanged_t::operator w32_HTML_URLChanged_t() const +{ + w32_HTML_URLChanged_t ret; + ret.unBrowserHandle = this->unBrowserHandle; + steamclient_unix_path_to_dos_path(1, this->pchURL, g_tmppath, sizeof(g_tmppath), 1); + ret.pchURL = g_tmppath; + ret.pchPostData = this->pchPostData; + ret.bIsRedirect = this->bIsRedirect; + ret.pchPageTitle = this->pchPageTitle; + ret.bNewNavigation = this->bNewNavigation; + return ret; +} +#endif + C_ASSERT( sizeof(w64_HTML_UpdateToolTip_t) >= 16 ); C_ASSERT( offsetof(w64_HTML_UpdateToolTip_t, unBrowserHandle) == 0 ); C_ASSERT( sizeof(w64_HTML_UpdateToolTip_t().unBrowserHandle) >= 4 ); @@ -4188,6 +5434,24 @@ C_ASSERT( sizeof(u32_HTML_UpdateToolTip_t().unBrowserHandle) >= 4 ); C_ASSERT( offsetof(u32_HTML_UpdateToolTip_t, pchMsg) == 4 ); C_ASSERT( sizeof(u32_HTML_UpdateToolTip_t().pchMsg) >= 4 ); +#ifdef __x86_64__ +w64_HTML_UpdateToolTip_t::operator u64_HTML_UpdateToolTip_t() const +{ + u64_HTML_UpdateToolTip_t ret; + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchMsg = this->pchMsg; + return ret; +} + +u64_HTML_UpdateToolTip_t::operator w64_HTML_UpdateToolTip_t() const +{ + w64_HTML_UpdateToolTip_t ret; + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchMsg = this->pchMsg; + return ret; +} +#endif + C_ASSERT( sizeof(w64_HTTPRequestCompleted_t_132x) >= 32 ); C_ASSERT( offsetof(w64_HTTPRequestCompleted_t_132x, m_hRequest) == 0 ); C_ASSERT( sizeof(w64_HTTPRequestCompleted_t_132x().m_hRequest) >= 4 ); @@ -4316,6 +5580,120 @@ C_ASSERT( sizeof(u32_HTTPRequestCompleted_t_115().m_bRequestSuccessful) >= 1 ); C_ASSERT( offsetof(u32_HTTPRequestCompleted_t_115, m_eStatusCode) == 16 ); C_ASSERT( sizeof(u32_HTTPRequestCompleted_t_115().m_eStatusCode) >= 4 ); +#ifdef __x86_64__ +w64_HTTPRequestCompleted_t_132x::operator u64_HTTPRequestCompleted_t_132x() const +{ + u64_HTTPRequestCompleted_t_132x ret; + ret.m_hRequest = this->m_hRequest; + ret.m_ulContextValue = this->m_ulContextValue; + ret.m_bRequestSuccessful = this->m_bRequestSuccessful; + ret.m_eStatusCode = this->m_eStatusCode; + ret.m_unBodySize = this->m_unBodySize; + return ret; +} + +u64_HTTPRequestCompleted_t_132x::operator w64_HTTPRequestCompleted_t_132x() const +{ + w64_HTTPRequestCompleted_t_132x ret; + ret.m_hRequest = this->m_hRequest; + ret.m_ulContextValue = this->m_ulContextValue; + ret.m_bRequestSuccessful = this->m_bRequestSuccessful; + ret.m_eStatusCode = this->m_eStatusCode; + ret.m_unBodySize = this->m_unBodySize; + return ret; +} +#endif + +#ifdef __i386__ +w32_HTTPRequestCompleted_t_132x::operator u32_HTTPRequestCompleted_t_132x() const +{ + u32_HTTPRequestCompleted_t_132x ret; + ret.m_hRequest = this->m_hRequest; + ret.m_ulContextValue = this->m_ulContextValue; + ret.m_bRequestSuccessful = this->m_bRequestSuccessful; + ret.m_eStatusCode = this->m_eStatusCode; + ret.m_unBodySize = this->m_unBodySize; + return ret; +} + +u32_HTTPRequestCompleted_t_132x::operator w32_HTTPRequestCompleted_t_132x() const +{ + w32_HTTPRequestCompleted_t_132x ret; + ret.m_hRequest = this->m_hRequest; + ret.m_ulContextValue = this->m_ulContextValue; + ret.m_bRequestSuccessful = this->m_bRequestSuccessful; + ret.m_eStatusCode = this->m_eStatusCode; + ret.m_unBodySize = this->m_unBodySize; + return ret; +} +#endif + +#ifdef __x86_64__ +w64_HTTPRequestCompleted_t_123::operator u64_HTTPRequestCompleted_t_123() const +{ + u64_HTTPRequestCompleted_t_123 ret; + ret.m_hRequest = this->m_hRequest; + ret.m_ulContextValue = this->m_ulContextValue; + ret.m_bRequestSuccessful = this->m_bRequestSuccessful; + ret.m_eStatusCode = this->m_eStatusCode; + return ret; +} + +u64_HTTPRequestCompleted_t_123::operator w64_HTTPRequestCompleted_t_123() const +{ + w64_HTTPRequestCompleted_t_123 ret; + ret.m_hRequest = this->m_hRequest; + ret.m_ulContextValue = this->m_ulContextValue; + ret.m_bRequestSuccessful = this->m_bRequestSuccessful; + ret.m_eStatusCode = this->m_eStatusCode; + return ret; +} +#endif + +#ifdef __i386__ +w32_HTTPRequestCompleted_t_123::operator u32_HTTPRequestCompleted_t_123() const +{ + u32_HTTPRequestCompleted_t_123 ret; + ret.m_hRequest = this->m_hRequest; + ret.m_ulContextValue = this->m_ulContextValue; + ret.m_bRequestSuccessful = this->m_bRequestSuccessful; + ret.m_eStatusCode = this->m_eStatusCode; + return ret; +} + +u32_HTTPRequestCompleted_t_123::operator w32_HTTPRequestCompleted_t_123() const +{ + w32_HTTPRequestCompleted_t_123 ret; + ret.m_hRequest = this->m_hRequest; + ret.m_ulContextValue = this->m_ulContextValue; + ret.m_bRequestSuccessful = this->m_bRequestSuccessful; + ret.m_eStatusCode = this->m_eStatusCode; + return ret; +} +#endif + +#ifdef __i386__ +w32_HTTPRequestCompleted_t_115::operator u32_HTTPRequestCompleted_t_115() const +{ + u32_HTTPRequestCompleted_t_115 ret; + ret.m_hRequest = this->m_hRequest; + ret.m_ulContextValue = this->m_ulContextValue; + ret.m_bRequestSuccessful = this->m_bRequestSuccessful; + ret.m_eStatusCode = this->m_eStatusCode; + return ret; +} + +u32_HTTPRequestCompleted_t_115::operator w32_HTTPRequestCompleted_t_115() const +{ + w32_HTTPRequestCompleted_t_115 ret; + ret.m_hRequest = this->m_hRequest; + ret.m_ulContextValue = this->m_ulContextValue; + ret.m_bRequestSuccessful = this->m_bRequestSuccessful; + ret.m_eStatusCode = this->m_eStatusCode; + return ret; +} +#endif + C_ASSERT( sizeof(w64_HTTPRequestDataReceived_t_123) >= 24 ); C_ASSERT( offsetof(w64_HTTPRequestDataReceived_t_123, m_hRequest) == 0 ); C_ASSERT( sizeof(w64_HTTPRequestDataReceived_t_123().m_hRequest) >= 4 ); @@ -4396,6 +5774,72 @@ C_ASSERT( sizeof(u32_HTTPRequestDataReceived_t_121x().m_cOffset) >= 4 ); C_ASSERT( offsetof(u32_HTTPRequestDataReceived_t_121x, m_cBytesReceived) == 16 ); C_ASSERT( sizeof(u32_HTTPRequestDataReceived_t_121x().m_cBytesReceived) >= 4 ); +#ifdef __x86_64__ +w64_HTTPRequestDataReceived_t_123::operator u64_HTTPRequestDataReceived_t_123() const +{ + u64_HTTPRequestDataReceived_t_123 ret; + ret.m_hRequest = this->m_hRequest; + ret.m_ulContextValue = this->m_ulContextValue; + ret.m_cOffset = this->m_cOffset; + ret.m_cBytesReceived = this->m_cBytesReceived; + return ret; +} + +u64_HTTPRequestDataReceived_t_123::operator w64_HTTPRequestDataReceived_t_123() const +{ + w64_HTTPRequestDataReceived_t_123 ret; + ret.m_hRequest = this->m_hRequest; + ret.m_ulContextValue = this->m_ulContextValue; + ret.m_cOffset = this->m_cOffset; + ret.m_cBytesReceived = this->m_cBytesReceived; + return ret; +} +#endif + +#ifdef __i386__ +w32_HTTPRequestDataReceived_t_123::operator u32_HTTPRequestDataReceived_t_123() const +{ + u32_HTTPRequestDataReceived_t_123 ret; + ret.m_hRequest = this->m_hRequest; + ret.m_ulContextValue = this->m_ulContextValue; + ret.m_cOffset = this->m_cOffset; + ret.m_cBytesReceived = this->m_cBytesReceived; + return ret; +} + +u32_HTTPRequestDataReceived_t_123::operator w32_HTTPRequestDataReceived_t_123() const +{ + w32_HTTPRequestDataReceived_t_123 ret; + ret.m_hRequest = this->m_hRequest; + ret.m_ulContextValue = this->m_ulContextValue; + ret.m_cOffset = this->m_cOffset; + ret.m_cBytesReceived = this->m_cBytesReceived; + return ret; +} +#endif + +#ifdef __i386__ +w32_HTTPRequestDataReceived_t_121x::operator u32_HTTPRequestDataReceived_t_121x() const +{ + u32_HTTPRequestDataReceived_t_121x ret; + ret.m_hRequest = this->m_hRequest; + ret.m_ulContextValue = this->m_ulContextValue; + ret.m_cOffset = this->m_cOffset; + ret.m_cBytesReceived = this->m_cBytesReceived; + return ret; +} + +u32_HTTPRequestDataReceived_t_121x::operator w32_HTTPRequestDataReceived_t_121x() const +{ + w32_HTTPRequestDataReceived_t_121x ret; + ret.m_hRequest = this->m_hRequest; + ret.m_ulContextValue = this->m_ulContextValue; + ret.m_cOffset = this->m_cOffset; + ret.m_cBytesReceived = this->m_cBytesReceived; + return ret; +} +#endif + C_ASSERT( sizeof(w64_HTTPRequestHeadersReceived_t_123) >= 16 ); C_ASSERT( offsetof(w64_HTTPRequestHeadersReceived_t_123, m_hRequest) == 0 ); C_ASSERT( sizeof(w64_HTTPRequestHeadersReceived_t_123().m_hRequest) >= 4 ); @@ -4444,6 +5888,60 @@ C_ASSERT( sizeof(u32_HTTPRequestHeadersReceived_t_121x().m_hRequest) >= 4 ); C_ASSERT( offsetof(u32_HTTPRequestHeadersReceived_t_121x, m_ulContextValue) == 4 ); C_ASSERT( sizeof(u32_HTTPRequestHeadersReceived_t_121x().m_ulContextValue) >= 8 ); +#ifdef __x86_64__ +w64_HTTPRequestHeadersReceived_t_123::operator u64_HTTPRequestHeadersReceived_t_123() const +{ + u64_HTTPRequestHeadersReceived_t_123 ret; + ret.m_hRequest = this->m_hRequest; + ret.m_ulContextValue = this->m_ulContextValue; + return ret; +} + +u64_HTTPRequestHeadersReceived_t_123::operator w64_HTTPRequestHeadersReceived_t_123() const +{ + w64_HTTPRequestHeadersReceived_t_123 ret; + ret.m_hRequest = this->m_hRequest; + ret.m_ulContextValue = this->m_ulContextValue; + return ret; +} +#endif + +#ifdef __i386__ +w32_HTTPRequestHeadersReceived_t_123::operator u32_HTTPRequestHeadersReceived_t_123() const +{ + u32_HTTPRequestHeadersReceived_t_123 ret; + ret.m_hRequest = this->m_hRequest; + ret.m_ulContextValue = this->m_ulContextValue; + return ret; +} + +u32_HTTPRequestHeadersReceived_t_123::operator w32_HTTPRequestHeadersReceived_t_123() const +{ + w32_HTTPRequestHeadersReceived_t_123 ret; + ret.m_hRequest = this->m_hRequest; + ret.m_ulContextValue = this->m_ulContextValue; + return ret; +} +#endif + +#ifdef __i386__ +w32_HTTPRequestHeadersReceived_t_121x::operator u32_HTTPRequestHeadersReceived_t_121x() const +{ + u32_HTTPRequestHeadersReceived_t_121x ret; + ret.m_hRequest = this->m_hRequest; + ret.m_ulContextValue = this->m_ulContextValue; + return ret; +} + +u32_HTTPRequestHeadersReceived_t_121x::operator w32_HTTPRequestHeadersReceived_t_121x() const +{ + w32_HTTPRequestHeadersReceived_t_121x ret; + ret.m_hRequest = this->m_hRequest; + ret.m_ulContextValue = this->m_ulContextValue; + return ret; +} +#endif + C_ASSERT( sizeof(w64_ItemInstalled_t) >= 16 ); C_ASSERT( offsetof(w64_ItemInstalled_t, m_unAppID) == 0 ); C_ASSERT( sizeof(w64_ItemInstalled_t().m_unAppID) >= 4 ); @@ -4468,6 +5966,42 @@ C_ASSERT( sizeof(u32_ItemInstalled_t().m_unAppID) >= 4 ); C_ASSERT( offsetof(u32_ItemInstalled_t, m_nPublishedFileId) == 4 ); C_ASSERT( sizeof(u32_ItemInstalled_t().m_nPublishedFileId) >= 8 ); +#ifdef __x86_64__ +w64_ItemInstalled_t::operator u64_ItemInstalled_t() const +{ + u64_ItemInstalled_t ret; + ret.m_unAppID = this->m_unAppID; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + return ret; +} + +u64_ItemInstalled_t::operator w64_ItemInstalled_t() const +{ + w64_ItemInstalled_t ret; + ret.m_unAppID = this->m_unAppID; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + return ret; +} +#endif + +#ifdef __i386__ +w32_ItemInstalled_t::operator u32_ItemInstalled_t() const +{ + u32_ItemInstalled_t ret; + ret.m_unAppID = this->m_unAppID; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + return ret; +} + +u32_ItemInstalled_t::operator w32_ItemInstalled_t() const +{ + w32_ItemInstalled_t ret; + ret.m_unAppID = this->m_unAppID; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + return ret; +} +#endif + C_ASSERT( sizeof(w64_JoinPartyCallback_t) >= 280 ); C_ASSERT( offsetof(w64_JoinPartyCallback_t, m_eResult) == 0 ); C_ASSERT( sizeof(w64_JoinPartyCallback_t().m_eResult) >= 4 ); @@ -4508,6 +6042,50 @@ C_ASSERT( sizeof(u32_JoinPartyCallback_t().m_SteamIDBeaconOwner) >= 8 ); C_ASSERT( offsetof(u32_JoinPartyCallback_t, m_rgchConnectString) == 20 ); C_ASSERT( sizeof(u32_JoinPartyCallback_t().m_rgchConnectString) >= 256 ); +#ifdef __x86_64__ +w64_JoinPartyCallback_t::operator u64_JoinPartyCallback_t() const +{ + u64_JoinPartyCallback_t ret; + ret.m_eResult = this->m_eResult; + ret.m_ulBeaconID = this->m_ulBeaconID; + ret.m_SteamIDBeaconOwner = this->m_SteamIDBeaconOwner; + ret.m_rgchConnectString = this->m_rgchConnectString; + return ret; +} + +u64_JoinPartyCallback_t::operator w64_JoinPartyCallback_t() const +{ + w64_JoinPartyCallback_t ret; + ret.m_eResult = this->m_eResult; + ret.m_ulBeaconID = this->m_ulBeaconID; + ret.m_SteamIDBeaconOwner = this->m_SteamIDBeaconOwner; + ret.m_rgchConnectString = this->m_rgchConnectString; + return ret; +} +#endif + +#ifdef __i386__ +w32_JoinPartyCallback_t::operator u32_JoinPartyCallback_t() const +{ + u32_JoinPartyCallback_t ret; + ret.m_eResult = this->m_eResult; + ret.m_ulBeaconID = this->m_ulBeaconID; + ret.m_SteamIDBeaconOwner = this->m_SteamIDBeaconOwner; + ret.m_rgchConnectString = this->m_rgchConnectString; + return ret; +} + +u32_JoinPartyCallback_t::operator w32_JoinPartyCallback_t() const +{ + w32_JoinPartyCallback_t ret; + ret.m_eResult = this->m_eResult; + ret.m_ulBeaconID = this->m_ulBeaconID; + ret.m_SteamIDBeaconOwner = this->m_SteamIDBeaconOwner; + ret.m_rgchConnectString = this->m_rgchConnectString; + return ret; +} +#endif + C_ASSERT( sizeof(w64_LeaderboardEntry_t_123) >= 32 ); C_ASSERT( offsetof(w64_LeaderboardEntry_t_123, m_steamIDUser) == 0 ); C_ASSERT( sizeof(w64_LeaderboardEntry_t_123().m_steamIDUser) >= 8 ); @@ -4644,6 +6222,78 @@ C_ASSERT( sizeof(u32_LeaderboardEntry_t_104().m_nScore) >= 4 ); C_ASSERT( offsetof(u32_LeaderboardEntry_t_104, m_cDetails) == 16 ); C_ASSERT( sizeof(u32_LeaderboardEntry_t_104().m_cDetails) >= 4 ); +#ifdef __x86_64__ +w64_LeaderboardEntry_t_123::operator u64_LeaderboardEntry_t_123() const +{ + u64_LeaderboardEntry_t_123 ret; + ret.m_steamIDUser = this->m_steamIDUser; + ret.m_nGlobalRank = this->m_nGlobalRank; + ret.m_nScore = this->m_nScore; + ret.m_cDetails = this->m_cDetails; + ret.m_hUGC = this->m_hUGC; + return ret; +} + +u64_LeaderboardEntry_t_123::operator w64_LeaderboardEntry_t_123() const +{ + w64_LeaderboardEntry_t_123 ret; + ret.m_steamIDUser = this->m_steamIDUser; + ret.m_nGlobalRank = this->m_nGlobalRank; + ret.m_nScore = this->m_nScore; + ret.m_cDetails = this->m_cDetails; + ret.m_hUGC = this->m_hUGC; + return ret; +} +#endif + +#ifdef __i386__ +w32_LeaderboardEntry_t_123::operator u32_LeaderboardEntry_t_123() const +{ + u32_LeaderboardEntry_t_123 ret; + ret.m_steamIDUser = this->m_steamIDUser; + ret.m_nGlobalRank = this->m_nGlobalRank; + ret.m_nScore = this->m_nScore; + ret.m_cDetails = this->m_cDetails; + ret.m_hUGC = this->m_hUGC; + return ret; +} + +u32_LeaderboardEntry_t_123::operator w32_LeaderboardEntry_t_123() const +{ + w32_LeaderboardEntry_t_123 ret; + ret.m_steamIDUser = this->m_steamIDUser; + ret.m_nGlobalRank = this->m_nGlobalRank; + ret.m_nScore = this->m_nScore; + ret.m_cDetails = this->m_cDetails; + ret.m_hUGC = this->m_hUGC; + return ret; +} +#endif + +#ifdef __i386__ +w32_LeaderboardEntry_t_111x::operator u32_LeaderboardEntry_t_111x() const +{ + u32_LeaderboardEntry_t_111x ret; + ret.m_steamIDUser = this->m_steamIDUser; + ret.m_nGlobalRank = this->m_nGlobalRank; + ret.m_nScore = this->m_nScore; + ret.m_cDetails = this->m_cDetails; + ret.m_hUGC = this->m_hUGC; + return ret; +} + +u32_LeaderboardEntry_t_111x::operator w32_LeaderboardEntry_t_111x() const +{ + w32_LeaderboardEntry_t_111x ret; + ret.m_steamIDUser = this->m_steamIDUser; + ret.m_nGlobalRank = this->m_nGlobalRank; + ret.m_nScore = this->m_nScore; + ret.m_cDetails = this->m_cDetails; + ret.m_hUGC = this->m_hUGC; + return ret; +} +#endif + C_ASSERT( sizeof(w64_LeaderboardScoreUploaded_t_123) >= 32 ); C_ASSERT( offsetof(w64_LeaderboardScoreUploaded_t_123, m_bSuccess) == 0 ); C_ASSERT( sizeof(w64_LeaderboardScoreUploaded_t_123().m_bSuccess) >= 1 ); @@ -4756,6 +6406,84 @@ C_ASSERT( sizeof(u32_LeaderboardScoreUploaded_t_104().m_nGlobalRankNew) >= 4 ); C_ASSERT( offsetof(u32_LeaderboardScoreUploaded_t_104, m_nGlobalRankPrevious) == 24 ); C_ASSERT( sizeof(u32_LeaderboardScoreUploaded_t_104().m_nGlobalRankPrevious) >= 4 ); +#ifdef __x86_64__ +w64_LeaderboardScoreUploaded_t_123::operator u64_LeaderboardScoreUploaded_t_123() const +{ + u64_LeaderboardScoreUploaded_t_123 ret; + ret.m_bSuccess = this->m_bSuccess; + ret.m_hSteamLeaderboard = this->m_hSteamLeaderboard; + ret.m_nScore = this->m_nScore; + ret.m_bScoreChanged = this->m_bScoreChanged; + ret.m_nGlobalRankNew = this->m_nGlobalRankNew; + ret.m_nGlobalRankPrevious = this->m_nGlobalRankPrevious; + return ret; +} + +u64_LeaderboardScoreUploaded_t_123::operator w64_LeaderboardScoreUploaded_t_123() const +{ + w64_LeaderboardScoreUploaded_t_123 ret; + ret.m_bSuccess = this->m_bSuccess; + ret.m_hSteamLeaderboard = this->m_hSteamLeaderboard; + ret.m_nScore = this->m_nScore; + ret.m_bScoreChanged = this->m_bScoreChanged; + ret.m_nGlobalRankNew = this->m_nGlobalRankNew; + ret.m_nGlobalRankPrevious = this->m_nGlobalRankPrevious; + return ret; +} +#endif + +#ifdef __i386__ +w32_LeaderboardScoreUploaded_t_123::operator u32_LeaderboardScoreUploaded_t_123() const +{ + u32_LeaderboardScoreUploaded_t_123 ret; + ret.m_bSuccess = this->m_bSuccess; + ret.m_hSteamLeaderboard = this->m_hSteamLeaderboard; + ret.m_nScore = this->m_nScore; + ret.m_bScoreChanged = this->m_bScoreChanged; + ret.m_nGlobalRankNew = this->m_nGlobalRankNew; + ret.m_nGlobalRankPrevious = this->m_nGlobalRankPrevious; + return ret; +} + +u32_LeaderboardScoreUploaded_t_123::operator w32_LeaderboardScoreUploaded_t_123() const +{ + w32_LeaderboardScoreUploaded_t_123 ret; + ret.m_bSuccess = this->m_bSuccess; + ret.m_hSteamLeaderboard = this->m_hSteamLeaderboard; + ret.m_nScore = this->m_nScore; + ret.m_bScoreChanged = this->m_bScoreChanged; + ret.m_nGlobalRankNew = this->m_nGlobalRankNew; + ret.m_nGlobalRankPrevious = this->m_nGlobalRankPrevious; + return ret; +} +#endif + +#ifdef __i386__ +w32_LeaderboardScoreUploaded_t_104::operator u32_LeaderboardScoreUploaded_t_104() const +{ + u32_LeaderboardScoreUploaded_t_104 ret; + ret.m_bSuccess = this->m_bSuccess; + ret.m_hSteamLeaderboard = this->m_hSteamLeaderboard; + ret.m_nScore = this->m_nScore; + ret.m_bScoreChanged = this->m_bScoreChanged; + ret.m_nGlobalRankNew = this->m_nGlobalRankNew; + ret.m_nGlobalRankPrevious = this->m_nGlobalRankPrevious; + return ret; +} + +u32_LeaderboardScoreUploaded_t_104::operator w32_LeaderboardScoreUploaded_t_104() const +{ + w32_LeaderboardScoreUploaded_t_104 ret; + ret.m_bSuccess = this->m_bSuccess; + ret.m_hSteamLeaderboard = this->m_hSteamLeaderboard; + ret.m_nScore = this->m_nScore; + ret.m_bScoreChanged = this->m_bScoreChanged; + ret.m_nGlobalRankNew = this->m_nGlobalRankNew; + ret.m_nGlobalRankPrevious = this->m_nGlobalRankPrevious; + return ret; +} +#endif + C_ASSERT( sizeof(w64_LeaderboardUGCSet_t_123) >= 16 ); C_ASSERT( offsetof(w64_LeaderboardUGCSet_t_123, m_eResult) == 0 ); C_ASSERT( sizeof(w64_LeaderboardUGCSet_t_123().m_eResult) >= 4 ); @@ -4804,6 +6532,60 @@ C_ASSERT( sizeof(u32_LeaderboardUGCSet_t_111x().m_eResult) >= 4 ); C_ASSERT( offsetof(u32_LeaderboardUGCSet_t_111x, m_hSteamLeaderboard) == 4 ); C_ASSERT( sizeof(u32_LeaderboardUGCSet_t_111x().m_hSteamLeaderboard) >= 8 ); +#ifdef __x86_64__ +w64_LeaderboardUGCSet_t_123::operator u64_LeaderboardUGCSet_t_123() const +{ + u64_LeaderboardUGCSet_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_hSteamLeaderboard = this->m_hSteamLeaderboard; + return ret; +} + +u64_LeaderboardUGCSet_t_123::operator w64_LeaderboardUGCSet_t_123() const +{ + w64_LeaderboardUGCSet_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_hSteamLeaderboard = this->m_hSteamLeaderboard; + return ret; +} +#endif + +#ifdef __i386__ +w32_LeaderboardUGCSet_t_123::operator u32_LeaderboardUGCSet_t_123() const +{ + u32_LeaderboardUGCSet_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_hSteamLeaderboard = this->m_hSteamLeaderboard; + return ret; +} + +u32_LeaderboardUGCSet_t_123::operator w32_LeaderboardUGCSet_t_123() const +{ + w32_LeaderboardUGCSet_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_hSteamLeaderboard = this->m_hSteamLeaderboard; + return ret; +} +#endif + +#ifdef __i386__ +w32_LeaderboardUGCSet_t_111x::operator u32_LeaderboardUGCSet_t_111x() const +{ + u32_LeaderboardUGCSet_t_111x ret; + ret.m_eResult = this->m_eResult; + ret.m_hSteamLeaderboard = this->m_hSteamLeaderboard; + return ret; +} + +u32_LeaderboardUGCSet_t_111x::operator w32_LeaderboardUGCSet_t_111x() const +{ + w32_LeaderboardUGCSet_t_111x ret; + ret.m_eResult = this->m_eResult; + ret.m_hSteamLeaderboard = this->m_hSteamLeaderboard; + return ret; +} +#endif + C_ASSERT( sizeof(w64_LobbyCreated_t_123) >= 16 ); C_ASSERT( offsetof(w64_LobbyCreated_t_123, m_eResult) == 0 ); C_ASSERT( sizeof(w64_LobbyCreated_t_123().m_eResult) >= 4 ); @@ -4852,6 +6634,60 @@ C_ASSERT( sizeof(u32_LobbyCreated_t_099u().m_eResult) >= 4 ); C_ASSERT( offsetof(u32_LobbyCreated_t_099u, m_ulSteamIDLobby) == 4 ); C_ASSERT( sizeof(u32_LobbyCreated_t_099u().m_ulSteamIDLobby) >= 8 ); +#ifdef __x86_64__ +w64_LobbyCreated_t_123::operator u64_LobbyCreated_t_123() const +{ + u64_LobbyCreated_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_ulSteamIDLobby = this->m_ulSteamIDLobby; + return ret; +} + +u64_LobbyCreated_t_123::operator w64_LobbyCreated_t_123() const +{ + w64_LobbyCreated_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_ulSteamIDLobby = this->m_ulSteamIDLobby; + return ret; +} +#endif + +#ifdef __i386__ +w32_LobbyCreated_t_123::operator u32_LobbyCreated_t_123() const +{ + u32_LobbyCreated_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_ulSteamIDLobby = this->m_ulSteamIDLobby; + return ret; +} + +u32_LobbyCreated_t_123::operator w32_LobbyCreated_t_123() const +{ + w32_LobbyCreated_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_ulSteamIDLobby = this->m_ulSteamIDLobby; + return ret; +} +#endif + +#ifdef __i386__ +w32_LobbyCreated_t_099u::operator u32_LobbyCreated_t_099u() const +{ + u32_LobbyCreated_t_099u ret; + ret.m_eResult = this->m_eResult; + ret.m_ulSteamIDLobby = this->m_ulSteamIDLobby; + return ret; +} + +u32_LobbyCreated_t_099u::operator w32_LobbyCreated_t_099u() const +{ + w32_LobbyCreated_t_099u ret; + ret.m_eResult = this->m_eResult; + ret.m_ulSteamIDLobby = this->m_ulSteamIDLobby; + return ret; +} +#endif + C_ASSERT( sizeof(w64_MicroTxnAuthorizationResponse_t_123) >= 24 ); C_ASSERT( offsetof(w64_MicroTxnAuthorizationResponse_t_123, m_unAppID) == 0 ); C_ASSERT( sizeof(w64_MicroTxnAuthorizationResponse_t_123().m_unAppID) >= 4 ); @@ -4916,6 +6752,66 @@ C_ASSERT( sizeof(u32_MicroTxnAuthorizationResponse_t_109().m_ulOrderID) >= 8 ); C_ASSERT( offsetof(u32_MicroTxnAuthorizationResponse_t_109, m_bAuthorized) == 12 ); C_ASSERT( sizeof(u32_MicroTxnAuthorizationResponse_t_109().m_bAuthorized) >= 1 ); +#ifdef __x86_64__ +w64_MicroTxnAuthorizationResponse_t_123::operator u64_MicroTxnAuthorizationResponse_t_123() const +{ + u64_MicroTxnAuthorizationResponse_t_123 ret; + ret.m_unAppID = this->m_unAppID; + ret.m_ulOrderID = this->m_ulOrderID; + ret.m_bAuthorized = this->m_bAuthorized; + return ret; +} + +u64_MicroTxnAuthorizationResponse_t_123::operator w64_MicroTxnAuthorizationResponse_t_123() const +{ + w64_MicroTxnAuthorizationResponse_t_123 ret; + ret.m_unAppID = this->m_unAppID; + ret.m_ulOrderID = this->m_ulOrderID; + ret.m_bAuthorized = this->m_bAuthorized; + return ret; +} +#endif + +#ifdef __i386__ +w32_MicroTxnAuthorizationResponse_t_123::operator u32_MicroTxnAuthorizationResponse_t_123() const +{ + u32_MicroTxnAuthorizationResponse_t_123 ret; + ret.m_unAppID = this->m_unAppID; + ret.m_ulOrderID = this->m_ulOrderID; + ret.m_bAuthorized = this->m_bAuthorized; + return ret; +} + +u32_MicroTxnAuthorizationResponse_t_123::operator w32_MicroTxnAuthorizationResponse_t_123() const +{ + w32_MicroTxnAuthorizationResponse_t_123 ret; + ret.m_unAppID = this->m_unAppID; + ret.m_ulOrderID = this->m_ulOrderID; + ret.m_bAuthorized = this->m_bAuthorized; + return ret; +} +#endif + +#ifdef __i386__ +w32_MicroTxnAuthorizationResponse_t_109::operator u32_MicroTxnAuthorizationResponse_t_109() const +{ + u32_MicroTxnAuthorizationResponse_t_109 ret; + ret.m_unAppID = this->m_unAppID; + ret.m_ulOrderID = this->m_ulOrderID; + ret.m_bAuthorized = this->m_bAuthorized; + return ret; +} + +u32_MicroTxnAuthorizationResponse_t_109::operator w32_MicroTxnAuthorizationResponse_t_109() const +{ + w32_MicroTxnAuthorizationResponse_t_109 ret; + ret.m_unAppID = this->m_unAppID; + ret.m_ulOrderID = this->m_ulOrderID; + ret.m_bAuthorized = this->m_bAuthorized; + return ret; +} +#endif + C_ASSERT( sizeof(w64_PS3TrophiesInstalled_t_123) >= 24 ); C_ASSERT( offsetof(w64_PS3TrophiesInstalled_t_123, m_nGameID) == 0 ); C_ASSERT( sizeof(w64_PS3TrophiesInstalled_t_123().m_nGameID) >= 8 ); @@ -4980,6 +6876,66 @@ C_ASSERT( sizeof(u32_PS3TrophiesInstalled_t_112x().m_eResult) >= 4 ); C_ASSERT( offsetof(u32_PS3TrophiesInstalled_t_112x, m_ulRequiredDiskSpace) == 12 ); C_ASSERT( sizeof(u32_PS3TrophiesInstalled_t_112x().m_ulRequiredDiskSpace) >= 8 ); +#ifdef __x86_64__ +w64_PS3TrophiesInstalled_t_123::operator u64_PS3TrophiesInstalled_t_123() const +{ + u64_PS3TrophiesInstalled_t_123 ret; + ret.m_nGameID = this->m_nGameID; + ret.m_eResult = this->m_eResult; + ret.m_ulRequiredDiskSpace = this->m_ulRequiredDiskSpace; + return ret; +} + +u64_PS3TrophiesInstalled_t_123::operator w64_PS3TrophiesInstalled_t_123() const +{ + w64_PS3TrophiesInstalled_t_123 ret; + ret.m_nGameID = this->m_nGameID; + ret.m_eResult = this->m_eResult; + ret.m_ulRequiredDiskSpace = this->m_ulRequiredDiskSpace; + return ret; +} +#endif + +#ifdef __i386__ +w32_PS3TrophiesInstalled_t_123::operator u32_PS3TrophiesInstalled_t_123() const +{ + u32_PS3TrophiesInstalled_t_123 ret; + ret.m_nGameID = this->m_nGameID; + ret.m_eResult = this->m_eResult; + ret.m_ulRequiredDiskSpace = this->m_ulRequiredDiskSpace; + return ret; +} + +u32_PS3TrophiesInstalled_t_123::operator w32_PS3TrophiesInstalled_t_123() const +{ + w32_PS3TrophiesInstalled_t_123 ret; + ret.m_nGameID = this->m_nGameID; + ret.m_eResult = this->m_eResult; + ret.m_ulRequiredDiskSpace = this->m_ulRequiredDiskSpace; + return ret; +} +#endif + +#ifdef __i386__ +w32_PS3TrophiesInstalled_t_112x::operator u32_PS3TrophiesInstalled_t_112x() const +{ + u32_PS3TrophiesInstalled_t_112x ret; + ret.m_nGameID = this->m_nGameID; + ret.m_eResult = this->m_eResult; + ret.m_ulRequiredDiskSpace = this->m_ulRequiredDiskSpace; + return ret; +} + +u32_PS3TrophiesInstalled_t_112x::operator w32_PS3TrophiesInstalled_t_112x() const +{ + w32_PS3TrophiesInstalled_t_112x ret; + ret.m_nGameID = this->m_nGameID; + ret.m_eResult = this->m_eResult; + ret.m_ulRequiredDiskSpace = this->m_ulRequiredDiskSpace; + return ret; +} +#endif + C_ASSERT( sizeof(w64_RemoteStorageAppSyncProgress_t_123) >= 288 ); C_ASSERT( offsetof(w64_RemoteStorageAppSyncProgress_t_123, m_rgchCurrentFile) == 0 ); C_ASSERT( sizeof(w64_RemoteStorageAppSyncProgress_t_123().m_rgchCurrentFile) >= 260 ); @@ -5076,6 +7032,78 @@ C_ASSERT( sizeof(u32_RemoteStorageAppSyncProgress_t_111x().m_dAppPercentComplete C_ASSERT( offsetof(u32_RemoteStorageAppSyncProgress_t_111x, m_bUploading) == 276 ); C_ASSERT( sizeof(u32_RemoteStorageAppSyncProgress_t_111x().m_bUploading) >= 1 ); +#ifdef __x86_64__ +w64_RemoteStorageAppSyncProgress_t_123::operator u64_RemoteStorageAppSyncProgress_t_123() const +{ + u64_RemoteStorageAppSyncProgress_t_123 ret; + ret.m_rgchCurrentFile = this->m_rgchCurrentFile; + ret.m_nAppID = this->m_nAppID; + ret.m_uBytesTransferredThisChunk = this->m_uBytesTransferredThisChunk; + ret.m_dAppPercentComplete = this->m_dAppPercentComplete; + ret.m_bUploading = this->m_bUploading; + return ret; +} + +u64_RemoteStorageAppSyncProgress_t_123::operator w64_RemoteStorageAppSyncProgress_t_123() const +{ + w64_RemoteStorageAppSyncProgress_t_123 ret; + ret.m_rgchCurrentFile = this->m_rgchCurrentFile; + ret.m_nAppID = this->m_nAppID; + ret.m_uBytesTransferredThisChunk = this->m_uBytesTransferredThisChunk; + ret.m_dAppPercentComplete = this->m_dAppPercentComplete; + ret.m_bUploading = this->m_bUploading; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStorageAppSyncProgress_t_123::operator u32_RemoteStorageAppSyncProgress_t_123() const +{ + u32_RemoteStorageAppSyncProgress_t_123 ret; + ret.m_rgchCurrentFile = this->m_rgchCurrentFile; + ret.m_nAppID = this->m_nAppID; + ret.m_uBytesTransferredThisChunk = this->m_uBytesTransferredThisChunk; + ret.m_dAppPercentComplete = this->m_dAppPercentComplete; + ret.m_bUploading = this->m_bUploading; + return ret; +} + +u32_RemoteStorageAppSyncProgress_t_123::operator w32_RemoteStorageAppSyncProgress_t_123() const +{ + w32_RemoteStorageAppSyncProgress_t_123 ret; + ret.m_rgchCurrentFile = this->m_rgchCurrentFile; + ret.m_nAppID = this->m_nAppID; + ret.m_uBytesTransferredThisChunk = this->m_uBytesTransferredThisChunk; + ret.m_dAppPercentComplete = this->m_dAppPercentComplete; + ret.m_bUploading = this->m_bUploading; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStorageAppSyncProgress_t_111x::operator u32_RemoteStorageAppSyncProgress_t_111x() const +{ + u32_RemoteStorageAppSyncProgress_t_111x ret; + ret.m_rgchCurrentFile = this->m_rgchCurrentFile; + ret.m_nAppID = this->m_nAppID; + ret.m_uBytesTransferredThisChunk = this->m_uBytesTransferredThisChunk; + ret.m_dAppPercentComplete = this->m_dAppPercentComplete; + ret.m_bUploading = this->m_bUploading; + return ret; +} + +u32_RemoteStorageAppSyncProgress_t_111x::operator w32_RemoteStorageAppSyncProgress_t_111x() const +{ + w32_RemoteStorageAppSyncProgress_t_111x ret; + ret.m_rgchCurrentFile = this->m_rgchCurrentFile; + ret.m_nAppID = this->m_nAppID; + ret.m_uBytesTransferredThisChunk = this->m_uBytesTransferredThisChunk; + ret.m_dAppPercentComplete = this->m_dAppPercentComplete; + ret.m_bUploading = this->m_bUploading; + return ret; +} +#endif + C_ASSERT( sizeof(w64_RemoteStorageDeletePublishedFileResult_t_123) >= 16 ); C_ASSERT( offsetof(w64_RemoteStorageDeletePublishedFileResult_t_123, m_eResult) == 0 ); C_ASSERT( sizeof(w64_RemoteStorageDeletePublishedFileResult_t_123().m_eResult) >= 4 ); @@ -5124,6 +7152,60 @@ C_ASSERT( sizeof(u32_RemoteStorageDeletePublishedFileResult_t_116x().m_eResult) C_ASSERT( offsetof(u32_RemoteStorageDeletePublishedFileResult_t_116x, m_nPublishedFileId) == 4 ); C_ASSERT( sizeof(u32_RemoteStorageDeletePublishedFileResult_t_116x().m_nPublishedFileId) >= 8 ); +#ifdef __x86_64__ +w64_RemoteStorageDeletePublishedFileResult_t_123::operator u64_RemoteStorageDeletePublishedFileResult_t_123() const +{ + u64_RemoteStorageDeletePublishedFileResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + return ret; +} + +u64_RemoteStorageDeletePublishedFileResult_t_123::operator w64_RemoteStorageDeletePublishedFileResult_t_123() const +{ + w64_RemoteStorageDeletePublishedFileResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStorageDeletePublishedFileResult_t_123::operator u32_RemoteStorageDeletePublishedFileResult_t_123() const +{ + u32_RemoteStorageDeletePublishedFileResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + return ret; +} + +u32_RemoteStorageDeletePublishedFileResult_t_123::operator w32_RemoteStorageDeletePublishedFileResult_t_123() const +{ + w32_RemoteStorageDeletePublishedFileResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStorageDeletePublishedFileResult_t_116x::operator u32_RemoteStorageDeletePublishedFileResult_t_116x() const +{ + u32_RemoteStorageDeletePublishedFileResult_t_116x ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + return ret; +} + +u32_RemoteStorageDeletePublishedFileResult_t_116x::operator w32_RemoteStorageDeletePublishedFileResult_t_116x() const +{ + w32_RemoteStorageDeletePublishedFileResult_t_116x ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + return ret; +} +#endif + C_ASSERT( sizeof(w64_RemoteStorageDownloadUGCResult_t_123) >= 296 ); C_ASSERT( offsetof(w64_RemoteStorageDownloadUGCResult_t_123, m_eResult) == 0 ); C_ASSERT( sizeof(w64_RemoteStorageDownloadUGCResult_t_123().m_eResult) >= 4 ); @@ -5292,6 +7374,110 @@ C_ASSERT( sizeof(u32_RemoteStorageDownloadUGCResult_t_111x().m_pchFileName) >= 4 C_ASSERT( offsetof(u32_RemoteStorageDownloadUGCResult_t_111x, m_ulSteamIDOwner) == 24 ); C_ASSERT( sizeof(u32_RemoteStorageDownloadUGCResult_t_111x().m_ulSteamIDOwner) >= 8 ); +#ifdef __x86_64__ +w64_RemoteStorageDownloadUGCResult_t_123::operator u64_RemoteStorageDownloadUGCResult_t_123() const +{ + u64_RemoteStorageDownloadUGCResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_hFile = this->m_hFile; + ret.m_nAppID = this->m_nAppID; + ret.m_nSizeInBytes = this->m_nSizeInBytes; + ret.m_pchFileName = this->m_pchFileName; + ret.m_ulSteamIDOwner = this->m_ulSteamIDOwner; + return ret; +} + +u64_RemoteStorageDownloadUGCResult_t_123::operator w64_RemoteStorageDownloadUGCResult_t_123() const +{ + w64_RemoteStorageDownloadUGCResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_hFile = this->m_hFile; + ret.m_nAppID = this->m_nAppID; + ret.m_nSizeInBytes = this->m_nSizeInBytes; + ret.m_pchFileName = this->m_pchFileName; + ret.m_ulSteamIDOwner = this->m_ulSteamIDOwner; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStorageDownloadUGCResult_t_123::operator u32_RemoteStorageDownloadUGCResult_t_123() const +{ + u32_RemoteStorageDownloadUGCResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_hFile = this->m_hFile; + ret.m_nAppID = this->m_nAppID; + ret.m_nSizeInBytes = this->m_nSizeInBytes; + ret.m_pchFileName = this->m_pchFileName; + ret.m_ulSteamIDOwner = this->m_ulSteamIDOwner; + return ret; +} + +u32_RemoteStorageDownloadUGCResult_t_123::operator w32_RemoteStorageDownloadUGCResult_t_123() const +{ + w32_RemoteStorageDownloadUGCResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_hFile = this->m_hFile; + ret.m_nAppID = this->m_nAppID; + ret.m_nSizeInBytes = this->m_nSizeInBytes; + ret.m_pchFileName = this->m_pchFileName; + ret.m_ulSteamIDOwner = this->m_ulSteamIDOwner; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStorageDownloadUGCResult_t_116x::operator u32_RemoteStorageDownloadUGCResult_t_116x() const +{ + u32_RemoteStorageDownloadUGCResult_t_116x ret; + ret.m_eResult = this->m_eResult; + ret.m_hFile = this->m_hFile; + ret.m_nAppID = this->m_nAppID; + ret.m_nSizeInBytes = this->m_nSizeInBytes; + ret.m_pchFileName = this->m_pchFileName; + ret.m_ulSteamIDOwner = this->m_ulSteamIDOwner; + return ret; +} + +u32_RemoteStorageDownloadUGCResult_t_116x::operator w32_RemoteStorageDownloadUGCResult_t_116x() const +{ + w32_RemoteStorageDownloadUGCResult_t_116x ret; + ret.m_eResult = this->m_eResult; + ret.m_hFile = this->m_hFile; + ret.m_nAppID = this->m_nAppID; + ret.m_nSizeInBytes = this->m_nSizeInBytes; + ret.m_pchFileName = this->m_pchFileName; + ret.m_ulSteamIDOwner = this->m_ulSteamIDOwner; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStorageDownloadUGCResult_t_111x::operator u32_RemoteStorageDownloadUGCResult_t_111x() const +{ + u32_RemoteStorageDownloadUGCResult_t_111x ret; + ret.m_eResult = this->m_eResult; + ret.m_hFile = this->m_hFile; + ret.m_nAppID = this->m_nAppID; + ret.m_nSizeInBytes = this->m_nSizeInBytes; + ret.m_pchFileName = this->m_pchFileName; + ret.m_ulSteamIDOwner = this->m_ulSteamIDOwner; + return ret; +} + +u32_RemoteStorageDownloadUGCResult_t_111x::operator w32_RemoteStorageDownloadUGCResult_t_111x() const +{ + w32_RemoteStorageDownloadUGCResult_t_111x ret; + ret.m_eResult = this->m_eResult; + ret.m_hFile = this->m_hFile; + ret.m_nAppID = this->m_nAppID; + ret.m_nSizeInBytes = this->m_nSizeInBytes; + ret.m_pchFileName = this->m_pchFileName; + ret.m_ulSteamIDOwner = this->m_ulSteamIDOwner; + return ret; +} +#endif + C_ASSERT( sizeof(w64_RemoteStorageEnumerateUserPublishedFilesResult_t_123) >= 416 ); C_ASSERT( offsetof(w64_RemoteStorageEnumerateUserPublishedFilesResult_t_123, m_eResult) == 0 ); C_ASSERT( sizeof(w64_RemoteStorageEnumerateUserPublishedFilesResult_t_123().m_eResult) >= 4 ); @@ -5372,6 +7558,72 @@ C_ASSERT( sizeof(u32_RemoteStorageEnumerateUserPublishedFilesResult_t_116x().m_n C_ASSERT( offsetof(u32_RemoteStorageEnumerateUserPublishedFilesResult_t_116x, m_rgPublishedFileId) == 12 ); C_ASSERT( sizeof(u32_RemoteStorageEnumerateUserPublishedFilesResult_t_116x().m_rgPublishedFileId) >= 400 ); +#ifdef __x86_64__ +w64_RemoteStorageEnumerateUserPublishedFilesResult_t_123::operator u64_RemoteStorageEnumerateUserPublishedFilesResult_t_123() const +{ + u64_RemoteStorageEnumerateUserPublishedFilesResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nResultsReturned = this->m_nResultsReturned; + ret.m_nTotalResultCount = this->m_nTotalResultCount; + ret.m_rgPublishedFileId = this->m_rgPublishedFileId; + return ret; +} + +u64_RemoteStorageEnumerateUserPublishedFilesResult_t_123::operator w64_RemoteStorageEnumerateUserPublishedFilesResult_t_123() const +{ + w64_RemoteStorageEnumerateUserPublishedFilesResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nResultsReturned = this->m_nResultsReturned; + ret.m_nTotalResultCount = this->m_nTotalResultCount; + ret.m_rgPublishedFileId = this->m_rgPublishedFileId; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStorageEnumerateUserPublishedFilesResult_t_123::operator u32_RemoteStorageEnumerateUserPublishedFilesResult_t_123() const +{ + u32_RemoteStorageEnumerateUserPublishedFilesResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nResultsReturned = this->m_nResultsReturned; + ret.m_nTotalResultCount = this->m_nTotalResultCount; + ret.m_rgPublishedFileId = this->m_rgPublishedFileId; + return ret; +} + +u32_RemoteStorageEnumerateUserPublishedFilesResult_t_123::operator w32_RemoteStorageEnumerateUserPublishedFilesResult_t_123() const +{ + w32_RemoteStorageEnumerateUserPublishedFilesResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nResultsReturned = this->m_nResultsReturned; + ret.m_nTotalResultCount = this->m_nTotalResultCount; + ret.m_rgPublishedFileId = this->m_rgPublishedFileId; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStorageEnumerateUserPublishedFilesResult_t_116x::operator u32_RemoteStorageEnumerateUserPublishedFilesResult_t_116x() const +{ + u32_RemoteStorageEnumerateUserPublishedFilesResult_t_116x ret; + ret.m_eResult = this->m_eResult; + ret.m_nResultsReturned = this->m_nResultsReturned; + ret.m_nTotalResultCount = this->m_nTotalResultCount; + ret.m_rgPublishedFileId = this->m_rgPublishedFileId; + return ret; +} + +u32_RemoteStorageEnumerateUserPublishedFilesResult_t_116x::operator w32_RemoteStorageEnumerateUserPublishedFilesResult_t_116x() const +{ + w32_RemoteStorageEnumerateUserPublishedFilesResult_t_116x ret; + ret.m_eResult = this->m_eResult; + ret.m_nResultsReturned = this->m_nResultsReturned; + ret.m_nTotalResultCount = this->m_nTotalResultCount; + ret.m_rgPublishedFileId = this->m_rgPublishedFileId; + return ret; +} +#endif + C_ASSERT( sizeof(w64_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123) >= 416 ); C_ASSERT( offsetof(w64_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123, m_eResult) == 0 ); C_ASSERT( sizeof(w64_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123().m_eResult) >= 4 ); @@ -5452,6 +7704,72 @@ C_ASSERT( sizeof(u32_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_119() C_ASSERT( offsetof(u32_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_119, m_rgPublishedFileId) == 12 ); C_ASSERT( sizeof(u32_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_119().m_rgPublishedFileId) >= 400 ); +#ifdef __x86_64__ +w64_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123::operator u64_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123() const +{ + u64_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nResultsReturned = this->m_nResultsReturned; + ret.m_nTotalResultCount = this->m_nTotalResultCount; + ret.m_rgPublishedFileId = this->m_rgPublishedFileId; + return ret; +} + +u64_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123::operator w64_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123() const +{ + w64_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nResultsReturned = this->m_nResultsReturned; + ret.m_nTotalResultCount = this->m_nTotalResultCount; + ret.m_rgPublishedFileId = this->m_rgPublishedFileId; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123::operator u32_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123() const +{ + u32_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nResultsReturned = this->m_nResultsReturned; + ret.m_nTotalResultCount = this->m_nTotalResultCount; + ret.m_rgPublishedFileId = this->m_rgPublishedFileId; + return ret; +} + +u32_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123::operator w32_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123() const +{ + w32_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nResultsReturned = this->m_nResultsReturned; + ret.m_nTotalResultCount = this->m_nTotalResultCount; + ret.m_rgPublishedFileId = this->m_rgPublishedFileId; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_119::operator u32_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_119() const +{ + u32_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_119 ret; + ret.m_eResult = this->m_eResult; + ret.m_nResultsReturned = this->m_nResultsReturned; + ret.m_nTotalResultCount = this->m_nTotalResultCount; + ret.m_rgPublishedFileId = this->m_rgPublishedFileId; + return ret; +} + +u32_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_119::operator w32_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_119() const +{ + w32_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_119 ret; + ret.m_eResult = this->m_eResult; + ret.m_nResultsReturned = this->m_nResultsReturned; + ret.m_nTotalResultCount = this->m_nTotalResultCount; + ret.m_rgPublishedFileId = this->m_rgPublishedFileId; + return ret; +} +#endif + C_ASSERT( sizeof(w64_RemoteStorageEnumerateUserSubscribedFilesResult_t_123) >= 616 ); C_ASSERT( offsetof(w64_RemoteStorageEnumerateUserSubscribedFilesResult_t_123, m_eResult) == 0 ); C_ASSERT( sizeof(w64_RemoteStorageEnumerateUserSubscribedFilesResult_t_123().m_eResult) >= 4 ); @@ -5548,6 +7866,78 @@ C_ASSERT( sizeof(u32_RemoteStorageEnumerateUserSubscribedFilesResult_t_116x().m_ C_ASSERT( offsetof(u32_RemoteStorageEnumerateUserSubscribedFilesResult_t_116x, m_rgRTimeSubscribed) == 412 ); C_ASSERT( sizeof(u32_RemoteStorageEnumerateUserSubscribedFilesResult_t_116x().m_rgRTimeSubscribed) >= 200 ); +#ifdef __x86_64__ +w64_RemoteStorageEnumerateUserSubscribedFilesResult_t_123::operator u64_RemoteStorageEnumerateUserSubscribedFilesResult_t_123() const +{ + u64_RemoteStorageEnumerateUserSubscribedFilesResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nResultsReturned = this->m_nResultsReturned; + ret.m_nTotalResultCount = this->m_nTotalResultCount; + ret.m_rgPublishedFileId = this->m_rgPublishedFileId; + ret.m_rgRTimeSubscribed = this->m_rgRTimeSubscribed; + return ret; +} + +u64_RemoteStorageEnumerateUserSubscribedFilesResult_t_123::operator w64_RemoteStorageEnumerateUserSubscribedFilesResult_t_123() const +{ + w64_RemoteStorageEnumerateUserSubscribedFilesResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nResultsReturned = this->m_nResultsReturned; + ret.m_nTotalResultCount = this->m_nTotalResultCount; + ret.m_rgPublishedFileId = this->m_rgPublishedFileId; + ret.m_rgRTimeSubscribed = this->m_rgRTimeSubscribed; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStorageEnumerateUserSubscribedFilesResult_t_123::operator u32_RemoteStorageEnumerateUserSubscribedFilesResult_t_123() const +{ + u32_RemoteStorageEnumerateUserSubscribedFilesResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nResultsReturned = this->m_nResultsReturned; + ret.m_nTotalResultCount = this->m_nTotalResultCount; + ret.m_rgPublishedFileId = this->m_rgPublishedFileId; + ret.m_rgRTimeSubscribed = this->m_rgRTimeSubscribed; + return ret; +} + +u32_RemoteStorageEnumerateUserSubscribedFilesResult_t_123::operator w32_RemoteStorageEnumerateUserSubscribedFilesResult_t_123() const +{ + w32_RemoteStorageEnumerateUserSubscribedFilesResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nResultsReturned = this->m_nResultsReturned; + ret.m_nTotalResultCount = this->m_nTotalResultCount; + ret.m_rgPublishedFileId = this->m_rgPublishedFileId; + ret.m_rgRTimeSubscribed = this->m_rgRTimeSubscribed; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStorageEnumerateUserSubscribedFilesResult_t_116x::operator u32_RemoteStorageEnumerateUserSubscribedFilesResult_t_116x() const +{ + u32_RemoteStorageEnumerateUserSubscribedFilesResult_t_116x ret; + ret.m_eResult = this->m_eResult; + ret.m_nResultsReturned = this->m_nResultsReturned; + ret.m_nTotalResultCount = this->m_nTotalResultCount; + ret.m_rgPublishedFileId = this->m_rgPublishedFileId; + ret.m_rgRTimeSubscribed = this->m_rgRTimeSubscribed; + return ret; +} + +u32_RemoteStorageEnumerateUserSubscribedFilesResult_t_116x::operator w32_RemoteStorageEnumerateUserSubscribedFilesResult_t_116x() const +{ + w32_RemoteStorageEnumerateUserSubscribedFilesResult_t_116x ret; + ret.m_eResult = this->m_eResult; + ret.m_nResultsReturned = this->m_nResultsReturned; + ret.m_nTotalResultCount = this->m_nTotalResultCount; + ret.m_rgPublishedFileId = this->m_rgPublishedFileId; + ret.m_rgRTimeSubscribed = this->m_rgRTimeSubscribed; + return ret; +} +#endif + C_ASSERT( sizeof(w64_RemoteStorageEnumerateWorkshopFilesResult_t_125) >= 624 ); C_ASSERT( offsetof(w64_RemoteStorageEnumerateWorkshopFilesResult_t_125, m_eResult) == 0 ); C_ASSERT( sizeof(w64_RemoteStorageEnumerateWorkshopFilesResult_t_125().m_eResult) >= 4 ); @@ -5708,6 +8098,134 @@ C_ASSERT( sizeof(u32_RemoteStorageEnumerateWorkshopFilesResult_t_119().m_rgPubli C_ASSERT( offsetof(u32_RemoteStorageEnumerateWorkshopFilesResult_t_119, m_rgScore) == 412 ); C_ASSERT( sizeof(u32_RemoteStorageEnumerateWorkshopFilesResult_t_119().m_rgScore) >= 200 ); +#ifdef __x86_64__ +w64_RemoteStorageEnumerateWorkshopFilesResult_t_125::operator u64_RemoteStorageEnumerateWorkshopFilesResult_t_125() const +{ + u64_RemoteStorageEnumerateWorkshopFilesResult_t_125 ret; + ret.m_eResult = this->m_eResult; + ret.m_nResultsReturned = this->m_nResultsReturned; + ret.m_nTotalResultCount = this->m_nTotalResultCount; + ret.m_rgPublishedFileId = this->m_rgPublishedFileId; + ret.m_rgScore = this->m_rgScore; + ret.m_nAppId = this->m_nAppId; + ret.m_unStartIndex = this->m_unStartIndex; + return ret; +} + +u64_RemoteStorageEnumerateWorkshopFilesResult_t_125::operator w64_RemoteStorageEnumerateWorkshopFilesResult_t_125() const +{ + w64_RemoteStorageEnumerateWorkshopFilesResult_t_125 ret; + ret.m_eResult = this->m_eResult; + ret.m_nResultsReturned = this->m_nResultsReturned; + ret.m_nTotalResultCount = this->m_nTotalResultCount; + ret.m_rgPublishedFileId = this->m_rgPublishedFileId; + ret.m_rgScore = this->m_rgScore; + ret.m_nAppId = this->m_nAppId; + ret.m_unStartIndex = this->m_unStartIndex; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStorageEnumerateWorkshopFilesResult_t_125::operator u32_RemoteStorageEnumerateWorkshopFilesResult_t_125() const +{ + u32_RemoteStorageEnumerateWorkshopFilesResult_t_125 ret; + ret.m_eResult = this->m_eResult; + ret.m_nResultsReturned = this->m_nResultsReturned; + ret.m_nTotalResultCount = this->m_nTotalResultCount; + ret.m_rgPublishedFileId = this->m_rgPublishedFileId; + ret.m_rgScore = this->m_rgScore; + ret.m_nAppId = this->m_nAppId; + ret.m_unStartIndex = this->m_unStartIndex; + return ret; +} + +u32_RemoteStorageEnumerateWorkshopFilesResult_t_125::operator w32_RemoteStorageEnumerateWorkshopFilesResult_t_125() const +{ + w32_RemoteStorageEnumerateWorkshopFilesResult_t_125 ret; + ret.m_eResult = this->m_eResult; + ret.m_nResultsReturned = this->m_nResultsReturned; + ret.m_nTotalResultCount = this->m_nTotalResultCount; + ret.m_rgPublishedFileId = this->m_rgPublishedFileId; + ret.m_rgScore = this->m_rgScore; + ret.m_nAppId = this->m_nAppId; + ret.m_unStartIndex = this->m_unStartIndex; + return ret; +} +#endif + +#ifdef __x86_64__ +w64_RemoteStorageEnumerateWorkshopFilesResult_t_123::operator u64_RemoteStorageEnumerateWorkshopFilesResult_t_123() const +{ + u64_RemoteStorageEnumerateWorkshopFilesResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nResultsReturned = this->m_nResultsReturned; + ret.m_nTotalResultCount = this->m_nTotalResultCount; + ret.m_rgPublishedFileId = this->m_rgPublishedFileId; + ret.m_rgScore = this->m_rgScore; + return ret; +} + +u64_RemoteStorageEnumerateWorkshopFilesResult_t_123::operator w64_RemoteStorageEnumerateWorkshopFilesResult_t_123() const +{ + w64_RemoteStorageEnumerateWorkshopFilesResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nResultsReturned = this->m_nResultsReturned; + ret.m_nTotalResultCount = this->m_nTotalResultCount; + ret.m_rgPublishedFileId = this->m_rgPublishedFileId; + ret.m_rgScore = this->m_rgScore; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStorageEnumerateWorkshopFilesResult_t_123::operator u32_RemoteStorageEnumerateWorkshopFilesResult_t_123() const +{ + u32_RemoteStorageEnumerateWorkshopFilesResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nResultsReturned = this->m_nResultsReturned; + ret.m_nTotalResultCount = this->m_nTotalResultCount; + ret.m_rgPublishedFileId = this->m_rgPublishedFileId; + ret.m_rgScore = this->m_rgScore; + return ret; +} + +u32_RemoteStorageEnumerateWorkshopFilesResult_t_123::operator w32_RemoteStorageEnumerateWorkshopFilesResult_t_123() const +{ + w32_RemoteStorageEnumerateWorkshopFilesResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nResultsReturned = this->m_nResultsReturned; + ret.m_nTotalResultCount = this->m_nTotalResultCount; + ret.m_rgPublishedFileId = this->m_rgPublishedFileId; + ret.m_rgScore = this->m_rgScore; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStorageEnumerateWorkshopFilesResult_t_119::operator u32_RemoteStorageEnumerateWorkshopFilesResult_t_119() const +{ + u32_RemoteStorageEnumerateWorkshopFilesResult_t_119 ret; + ret.m_eResult = this->m_eResult; + ret.m_nResultsReturned = this->m_nResultsReturned; + ret.m_nTotalResultCount = this->m_nTotalResultCount; + ret.m_rgPublishedFileId = this->m_rgPublishedFileId; + ret.m_rgScore = this->m_rgScore; + return ret; +} + +u32_RemoteStorageEnumerateWorkshopFilesResult_t_119::operator w32_RemoteStorageEnumerateWorkshopFilesResult_t_119() const +{ + w32_RemoteStorageEnumerateWorkshopFilesResult_t_119 ret; + ret.m_eResult = this->m_eResult; + ret.m_nResultsReturned = this->m_nResultsReturned; + ret.m_nTotalResultCount = this->m_nTotalResultCount; + ret.m_rgPublishedFileId = this->m_rgPublishedFileId; + ret.m_rgScore = this->m_rgScore; + return ret; +} +#endif + C_ASSERT( sizeof(w64_RemoteStorageFileShareResult_t_128x) >= 280 ); C_ASSERT( offsetof(w64_RemoteStorageFileShareResult_t_128x, m_eResult) == 0 ); C_ASSERT( sizeof(w64_RemoteStorageFileShareResult_t_128x().m_eResult) >= 4 ); @@ -5788,6 +8306,100 @@ C_ASSERT( sizeof(u32_RemoteStorageFileShareResult_t_111x().m_eResult) >= 4 ); C_ASSERT( offsetof(u32_RemoteStorageFileShareResult_t_111x, m_hFile) == 4 ); C_ASSERT( sizeof(u32_RemoteStorageFileShareResult_t_111x().m_hFile) >= 8 ); +#ifdef __x86_64__ +w64_RemoteStorageFileShareResult_t_128x::operator u64_RemoteStorageFileShareResult_t_128x() const +{ + u64_RemoteStorageFileShareResult_t_128x ret; + ret.m_eResult = this->m_eResult; + ret.m_hFile = this->m_hFile; + ret.m_rgchFilename = this->m_rgchFilename; + return ret; +} + +u64_RemoteStorageFileShareResult_t_128x::operator w64_RemoteStorageFileShareResult_t_128x() const +{ + w64_RemoteStorageFileShareResult_t_128x ret; + ret.m_eResult = this->m_eResult; + ret.m_hFile = this->m_hFile; + ret.m_rgchFilename = this->m_rgchFilename; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStorageFileShareResult_t_128x::operator u32_RemoteStorageFileShareResult_t_128x() const +{ + u32_RemoteStorageFileShareResult_t_128x ret; + ret.m_eResult = this->m_eResult; + ret.m_hFile = this->m_hFile; + ret.m_rgchFilename = this->m_rgchFilename; + return ret; +} + +u32_RemoteStorageFileShareResult_t_128x::operator w32_RemoteStorageFileShareResult_t_128x() const +{ + w32_RemoteStorageFileShareResult_t_128x ret; + ret.m_eResult = this->m_eResult; + ret.m_hFile = this->m_hFile; + ret.m_rgchFilename = this->m_rgchFilename; + return ret; +} +#endif + +#ifdef __x86_64__ +w64_RemoteStorageFileShareResult_t_123::operator u64_RemoteStorageFileShareResult_t_123() const +{ + u64_RemoteStorageFileShareResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_hFile = this->m_hFile; + return ret; +} + +u64_RemoteStorageFileShareResult_t_123::operator w64_RemoteStorageFileShareResult_t_123() const +{ + w64_RemoteStorageFileShareResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_hFile = this->m_hFile; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStorageFileShareResult_t_123::operator u32_RemoteStorageFileShareResult_t_123() const +{ + u32_RemoteStorageFileShareResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_hFile = this->m_hFile; + return ret; +} + +u32_RemoteStorageFileShareResult_t_123::operator w32_RemoteStorageFileShareResult_t_123() const +{ + w32_RemoteStorageFileShareResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_hFile = this->m_hFile; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStorageFileShareResult_t_111x::operator u32_RemoteStorageFileShareResult_t_111x() const +{ + u32_RemoteStorageFileShareResult_t_111x ret; + ret.m_eResult = this->m_eResult; + ret.m_hFile = this->m_hFile; + return ret; +} + +u32_RemoteStorageFileShareResult_t_111x::operator w32_RemoteStorageFileShareResult_t_111x() const +{ + w32_RemoteStorageFileShareResult_t_111x ret; + ret.m_eResult = this->m_eResult; + ret.m_hFile = this->m_hFile; + return ret; +} +#endif + C_ASSERT( sizeof(w64_RemoteStorageGetPublishedFileDetailsResult_t_126) >= 9760 ); C_ASSERT( offsetof(w64_RemoteStorageGetPublishedFileDetailsResult_t_126, m_eResult) == 0 ); C_ASSERT( sizeof(w64_RemoteStorageGetPublishedFileDetailsResult_t_126().m_eResult) >= 4 ); @@ -6748,6 +9360,428 @@ C_ASSERT( sizeof(u32_RemoteStorageGetPublishedFileDetailsResult_t_116x().m_bTags C_ASSERT( offsetof(u32_RemoteStorageGetPublishedFileDetailsResult_t_116x, m_pchFileName) == 1471 ); C_ASSERT( sizeof(u32_RemoteStorageGetPublishedFileDetailsResult_t_116x().m_pchFileName) >= 260 ); +#ifdef __x86_64__ +w64_RemoteStorageGetPublishedFileDetailsResult_t_126::operator u64_RemoteStorageGetPublishedFileDetailsResult_t_126() const +{ + u64_RemoteStorageGetPublishedFileDetailsResult_t_126 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nCreatorAppID = this->m_nCreatorAppID; + ret.m_nConsumerAppID = this->m_nConsumerAppID; + ret.m_rgchTitle = this->m_rgchTitle; + ret.m_rgchDescription = this->m_rgchDescription; + ret.m_hFile = this->m_hFile; + ret.m_hPreviewFile = this->m_hPreviewFile; + ret.m_ulSteamIDOwner = this->m_ulSteamIDOwner; + ret.m_rtimeCreated = this->m_rtimeCreated; + ret.m_rtimeUpdated = this->m_rtimeUpdated; + ret.m_eVisibility = this->m_eVisibility; + ret.m_bBanned = this->m_bBanned; + ret.m_rgchTags = this->m_rgchTags; + ret.m_bTagsTruncated = this->m_bTagsTruncated; + ret.m_pchFileName = this->m_pchFileName; + ret.m_nFileSize = this->m_nFileSize; + ret.m_nPreviewFileSize = this->m_nPreviewFileSize; + ret.m_rgchURL = this->m_rgchURL; + ret.m_eFileType = this->m_eFileType; + ret.m_bAcceptedForUse = this->m_bAcceptedForUse; + return ret; +} + +u64_RemoteStorageGetPublishedFileDetailsResult_t_126::operator w64_RemoteStorageGetPublishedFileDetailsResult_t_126() const +{ + w64_RemoteStorageGetPublishedFileDetailsResult_t_126 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nCreatorAppID = this->m_nCreatorAppID; + ret.m_nConsumerAppID = this->m_nConsumerAppID; + ret.m_rgchTitle = this->m_rgchTitle; + ret.m_rgchDescription = this->m_rgchDescription; + ret.m_hFile = this->m_hFile; + ret.m_hPreviewFile = this->m_hPreviewFile; + ret.m_ulSteamIDOwner = this->m_ulSteamIDOwner; + ret.m_rtimeCreated = this->m_rtimeCreated; + ret.m_rtimeUpdated = this->m_rtimeUpdated; + ret.m_eVisibility = this->m_eVisibility; + ret.m_bBanned = this->m_bBanned; + ret.m_rgchTags = this->m_rgchTags; + ret.m_bTagsTruncated = this->m_bTagsTruncated; + ret.m_pchFileName = this->m_pchFileName; + ret.m_nFileSize = this->m_nFileSize; + ret.m_nPreviewFileSize = this->m_nPreviewFileSize; + ret.m_rgchURL = this->m_rgchURL; + ret.m_eFileType = this->m_eFileType; + ret.m_bAcceptedForUse = this->m_bAcceptedForUse; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStorageGetPublishedFileDetailsResult_t_126::operator u32_RemoteStorageGetPublishedFileDetailsResult_t_126() const +{ + u32_RemoteStorageGetPublishedFileDetailsResult_t_126 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nCreatorAppID = this->m_nCreatorAppID; + ret.m_nConsumerAppID = this->m_nConsumerAppID; + ret.m_rgchTitle = this->m_rgchTitle; + ret.m_rgchDescription = this->m_rgchDescription; + ret.m_hFile = this->m_hFile; + ret.m_hPreviewFile = this->m_hPreviewFile; + ret.m_ulSteamIDOwner = this->m_ulSteamIDOwner; + ret.m_rtimeCreated = this->m_rtimeCreated; + ret.m_rtimeUpdated = this->m_rtimeUpdated; + ret.m_eVisibility = this->m_eVisibility; + ret.m_bBanned = this->m_bBanned; + ret.m_rgchTags = this->m_rgchTags; + ret.m_bTagsTruncated = this->m_bTagsTruncated; + ret.m_pchFileName = this->m_pchFileName; + ret.m_nFileSize = this->m_nFileSize; + ret.m_nPreviewFileSize = this->m_nPreviewFileSize; + ret.m_rgchURL = this->m_rgchURL; + ret.m_eFileType = this->m_eFileType; + ret.m_bAcceptedForUse = this->m_bAcceptedForUse; + return ret; +} + +u32_RemoteStorageGetPublishedFileDetailsResult_t_126::operator w32_RemoteStorageGetPublishedFileDetailsResult_t_126() const +{ + w32_RemoteStorageGetPublishedFileDetailsResult_t_126 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nCreatorAppID = this->m_nCreatorAppID; + ret.m_nConsumerAppID = this->m_nConsumerAppID; + ret.m_rgchTitle = this->m_rgchTitle; + ret.m_rgchDescription = this->m_rgchDescription; + ret.m_hFile = this->m_hFile; + ret.m_hPreviewFile = this->m_hPreviewFile; + ret.m_ulSteamIDOwner = this->m_ulSteamIDOwner; + ret.m_rtimeCreated = this->m_rtimeCreated; + ret.m_rtimeUpdated = this->m_rtimeUpdated; + ret.m_eVisibility = this->m_eVisibility; + ret.m_bBanned = this->m_bBanned; + ret.m_rgchTags = this->m_rgchTags; + ret.m_bTagsTruncated = this->m_bTagsTruncated; + ret.m_pchFileName = this->m_pchFileName; + ret.m_nFileSize = this->m_nFileSize; + ret.m_nPreviewFileSize = this->m_nPreviewFileSize; + ret.m_rgchURL = this->m_rgchURL; + ret.m_eFileType = this->m_eFileType; + ret.m_bAcceptedForUse = this->m_bAcceptedForUse; + return ret; +} +#endif + +#ifdef __x86_64__ +w64_RemoteStorageGetPublishedFileDetailsResult_t_123::operator u64_RemoteStorageGetPublishedFileDetailsResult_t_123() const +{ + u64_RemoteStorageGetPublishedFileDetailsResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nCreatorAppID = this->m_nCreatorAppID; + ret.m_nConsumerAppID = this->m_nConsumerAppID; + ret.m_rgchTitle = this->m_rgchTitle; + ret.m_rgchDescription = this->m_rgchDescription; + ret.m_hFile = this->m_hFile; + ret.m_hPreviewFile = this->m_hPreviewFile; + ret.m_ulSteamIDOwner = this->m_ulSteamIDOwner; + ret.m_rtimeCreated = this->m_rtimeCreated; + ret.m_rtimeUpdated = this->m_rtimeUpdated; + ret.m_eVisibility = this->m_eVisibility; + ret.m_bBanned = this->m_bBanned; + ret.m_rgchTags = this->m_rgchTags; + ret.m_bTagsTruncated = this->m_bTagsTruncated; + ret.m_pchFileName = this->m_pchFileName; + ret.m_nFileSize = this->m_nFileSize; + ret.m_nPreviewFileSize = this->m_nPreviewFileSize; + ret.m_rgchURL = this->m_rgchURL; + ret.m_eFileType = this->m_eFileType; + return ret; +} + +u64_RemoteStorageGetPublishedFileDetailsResult_t_123::operator w64_RemoteStorageGetPublishedFileDetailsResult_t_123() const +{ + w64_RemoteStorageGetPublishedFileDetailsResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nCreatorAppID = this->m_nCreatorAppID; + ret.m_nConsumerAppID = this->m_nConsumerAppID; + ret.m_rgchTitle = this->m_rgchTitle; + ret.m_rgchDescription = this->m_rgchDescription; + ret.m_hFile = this->m_hFile; + ret.m_hPreviewFile = this->m_hPreviewFile; + ret.m_ulSteamIDOwner = this->m_ulSteamIDOwner; + ret.m_rtimeCreated = this->m_rtimeCreated; + ret.m_rtimeUpdated = this->m_rtimeUpdated; + ret.m_eVisibility = this->m_eVisibility; + ret.m_bBanned = this->m_bBanned; + ret.m_rgchTags = this->m_rgchTags; + ret.m_bTagsTruncated = this->m_bTagsTruncated; + ret.m_pchFileName = this->m_pchFileName; + ret.m_nFileSize = this->m_nFileSize; + ret.m_nPreviewFileSize = this->m_nPreviewFileSize; + ret.m_rgchURL = this->m_rgchURL; + ret.m_eFileType = this->m_eFileType; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStorageGetPublishedFileDetailsResult_t_123::operator u32_RemoteStorageGetPublishedFileDetailsResult_t_123() const +{ + u32_RemoteStorageGetPublishedFileDetailsResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nCreatorAppID = this->m_nCreatorAppID; + ret.m_nConsumerAppID = this->m_nConsumerAppID; + ret.m_rgchTitle = this->m_rgchTitle; + ret.m_rgchDescription = this->m_rgchDescription; + ret.m_hFile = this->m_hFile; + ret.m_hPreviewFile = this->m_hPreviewFile; + ret.m_ulSteamIDOwner = this->m_ulSteamIDOwner; + ret.m_rtimeCreated = this->m_rtimeCreated; + ret.m_rtimeUpdated = this->m_rtimeUpdated; + ret.m_eVisibility = this->m_eVisibility; + ret.m_bBanned = this->m_bBanned; + ret.m_rgchTags = this->m_rgchTags; + ret.m_bTagsTruncated = this->m_bTagsTruncated; + ret.m_pchFileName = this->m_pchFileName; + ret.m_nFileSize = this->m_nFileSize; + ret.m_nPreviewFileSize = this->m_nPreviewFileSize; + ret.m_rgchURL = this->m_rgchURL; + ret.m_eFileType = this->m_eFileType; + return ret; +} + +u32_RemoteStorageGetPublishedFileDetailsResult_t_123::operator w32_RemoteStorageGetPublishedFileDetailsResult_t_123() const +{ + w32_RemoteStorageGetPublishedFileDetailsResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nCreatorAppID = this->m_nCreatorAppID; + ret.m_nConsumerAppID = this->m_nConsumerAppID; + ret.m_rgchTitle = this->m_rgchTitle; + ret.m_rgchDescription = this->m_rgchDescription; + ret.m_hFile = this->m_hFile; + ret.m_hPreviewFile = this->m_hPreviewFile; + ret.m_ulSteamIDOwner = this->m_ulSteamIDOwner; + ret.m_rtimeCreated = this->m_rtimeCreated; + ret.m_rtimeUpdated = this->m_rtimeUpdated; + ret.m_eVisibility = this->m_eVisibility; + ret.m_bBanned = this->m_bBanned; + ret.m_rgchTags = this->m_rgchTags; + ret.m_bTagsTruncated = this->m_bTagsTruncated; + ret.m_pchFileName = this->m_pchFileName; + ret.m_nFileSize = this->m_nFileSize; + ret.m_nPreviewFileSize = this->m_nPreviewFileSize; + ret.m_rgchURL = this->m_rgchURL; + ret.m_eFileType = this->m_eFileType; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStorageGetPublishedFileDetailsResult_t_119x::operator u32_RemoteStorageGetPublishedFileDetailsResult_t_119x() const +{ + u32_RemoteStorageGetPublishedFileDetailsResult_t_119x ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nCreatorAppID = this->m_nCreatorAppID; + ret.m_nConsumerAppID = this->m_nConsumerAppID; + ret.m_rgchTitle = this->m_rgchTitle; + ret.m_rgchDescription = this->m_rgchDescription; + ret.m_hFile = this->m_hFile; + ret.m_hPreviewFile = this->m_hPreviewFile; + ret.m_ulSteamIDOwner = this->m_ulSteamIDOwner; + ret.m_rtimeCreated = this->m_rtimeCreated; + ret.m_rtimeUpdated = this->m_rtimeUpdated; + ret.m_eVisibility = this->m_eVisibility; + ret.m_bBanned = this->m_bBanned; + ret.m_rgchTags = this->m_rgchTags; + ret.m_bTagsTruncated = this->m_bTagsTruncated; + ret.m_pchFileName = this->m_pchFileName; + ret.m_nFileSize = this->m_nFileSize; + ret.m_nPreviewFileSize = this->m_nPreviewFileSize; + ret.m_rgchURL = this->m_rgchURL; + ret.m_eFileType = this->m_eFileType; + return ret; +} + +u32_RemoteStorageGetPublishedFileDetailsResult_t_119x::operator w32_RemoteStorageGetPublishedFileDetailsResult_t_119x() const +{ + w32_RemoteStorageGetPublishedFileDetailsResult_t_119x ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nCreatorAppID = this->m_nCreatorAppID; + ret.m_nConsumerAppID = this->m_nConsumerAppID; + ret.m_rgchTitle = this->m_rgchTitle; + ret.m_rgchDescription = this->m_rgchDescription; + ret.m_hFile = this->m_hFile; + ret.m_hPreviewFile = this->m_hPreviewFile; + ret.m_ulSteamIDOwner = this->m_ulSteamIDOwner; + ret.m_rtimeCreated = this->m_rtimeCreated; + ret.m_rtimeUpdated = this->m_rtimeUpdated; + ret.m_eVisibility = this->m_eVisibility; + ret.m_bBanned = this->m_bBanned; + ret.m_rgchTags = this->m_rgchTags; + ret.m_bTagsTruncated = this->m_bTagsTruncated; + ret.m_pchFileName = this->m_pchFileName; + ret.m_nFileSize = this->m_nFileSize; + ret.m_nPreviewFileSize = this->m_nPreviewFileSize; + ret.m_rgchURL = this->m_rgchURL; + ret.m_eFileType = this->m_eFileType; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStorageGetPublishedFileDetailsResult_t_119::operator u32_RemoteStorageGetPublishedFileDetailsResult_t_119() const +{ + u32_RemoteStorageGetPublishedFileDetailsResult_t_119 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nCreatorAppID = this->m_nCreatorAppID; + ret.m_nConsumerAppID = this->m_nConsumerAppID; + ret.m_rgchTitle = this->m_rgchTitle; + ret.m_rgchDescription = this->m_rgchDescription; + ret.m_hFile = this->m_hFile; + ret.m_hPreviewFile = this->m_hPreviewFile; + ret.m_ulSteamIDOwner = this->m_ulSteamIDOwner; + ret.m_rtimeCreated = this->m_rtimeCreated; + ret.m_rtimeUpdated = this->m_rtimeUpdated; + ret.m_eVisibility = this->m_eVisibility; + ret.m_bBanned = this->m_bBanned; + ret.m_rgchTags = this->m_rgchTags; + ret.m_bTagsTruncated = this->m_bTagsTruncated; + ret.m_pchFileName = this->m_pchFileName; + ret.m_nFileSize = this->m_nFileSize; + ret.m_nPreviewFileSize = this->m_nPreviewFileSize; + ret.m_rgchURL = this->m_rgchURL; + return ret; +} + +u32_RemoteStorageGetPublishedFileDetailsResult_t_119::operator w32_RemoteStorageGetPublishedFileDetailsResult_t_119() const +{ + w32_RemoteStorageGetPublishedFileDetailsResult_t_119 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nCreatorAppID = this->m_nCreatorAppID; + ret.m_nConsumerAppID = this->m_nConsumerAppID; + ret.m_rgchTitle = this->m_rgchTitle; + ret.m_rgchDescription = this->m_rgchDescription; + ret.m_hFile = this->m_hFile; + ret.m_hPreviewFile = this->m_hPreviewFile; + ret.m_ulSteamIDOwner = this->m_ulSteamIDOwner; + ret.m_rtimeCreated = this->m_rtimeCreated; + ret.m_rtimeUpdated = this->m_rtimeUpdated; + ret.m_eVisibility = this->m_eVisibility; + ret.m_bBanned = this->m_bBanned; + ret.m_rgchTags = this->m_rgchTags; + ret.m_bTagsTruncated = this->m_bTagsTruncated; + ret.m_pchFileName = this->m_pchFileName; + ret.m_nFileSize = this->m_nFileSize; + ret.m_nPreviewFileSize = this->m_nPreviewFileSize; + ret.m_rgchURL = this->m_rgchURL; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStorageGetPublishedFileDetailsResult_t_118::operator u32_RemoteStorageGetPublishedFileDetailsResult_t_118() const +{ + u32_RemoteStorageGetPublishedFileDetailsResult_t_118 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nCreatorAppID = this->m_nCreatorAppID; + ret.m_nConsumerAppID = this->m_nConsumerAppID; + ret.m_rgchTitle = this->m_rgchTitle; + ret.m_rgchDescription = this->m_rgchDescription; + ret.m_hFile = this->m_hFile; + ret.m_hPreviewFile = this->m_hPreviewFile; + ret.m_ulSteamIDOwner = this->m_ulSteamIDOwner; + ret.m_rtimeCreated = this->m_rtimeCreated; + ret.m_rtimeUpdated = this->m_rtimeUpdated; + ret.m_eVisibility = this->m_eVisibility; + ret.m_bBanned = this->m_bBanned; + ret.m_rgchTags = this->m_rgchTags; + ret.m_bTagsTruncated = this->m_bTagsTruncated; + ret.m_pchFileName = this->m_pchFileName; + ret.m_nFileSize = this->m_nFileSize; + ret.m_nPreviewFileSize = this->m_nPreviewFileSize; + return ret; +} + +u32_RemoteStorageGetPublishedFileDetailsResult_t_118::operator w32_RemoteStorageGetPublishedFileDetailsResult_t_118() const +{ + w32_RemoteStorageGetPublishedFileDetailsResult_t_118 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nCreatorAppID = this->m_nCreatorAppID; + ret.m_nConsumerAppID = this->m_nConsumerAppID; + ret.m_rgchTitle = this->m_rgchTitle; + ret.m_rgchDescription = this->m_rgchDescription; + ret.m_hFile = this->m_hFile; + ret.m_hPreviewFile = this->m_hPreviewFile; + ret.m_ulSteamIDOwner = this->m_ulSteamIDOwner; + ret.m_rtimeCreated = this->m_rtimeCreated; + ret.m_rtimeUpdated = this->m_rtimeUpdated; + ret.m_eVisibility = this->m_eVisibility; + ret.m_bBanned = this->m_bBanned; + ret.m_rgchTags = this->m_rgchTags; + ret.m_bTagsTruncated = this->m_bTagsTruncated; + ret.m_pchFileName = this->m_pchFileName; + ret.m_nFileSize = this->m_nFileSize; + ret.m_nPreviewFileSize = this->m_nPreviewFileSize; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStorageGetPublishedFileDetailsResult_t_116x::operator u32_RemoteStorageGetPublishedFileDetailsResult_t_116x() const +{ + u32_RemoteStorageGetPublishedFileDetailsResult_t_116x ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nCreatorAppID = this->m_nCreatorAppID; + ret.m_nConsumerAppID = this->m_nConsumerAppID; + ret.m_rgchTitle = this->m_rgchTitle; + ret.m_rgchDescription = this->m_rgchDescription; + ret.m_hFile = this->m_hFile; + ret.m_hPreviewFile = this->m_hPreviewFile; + ret.m_ulSteamIDOwner = this->m_ulSteamIDOwner; + ret.m_rtimeCreated = this->m_rtimeCreated; + ret.m_rtimeUpdated = this->m_rtimeUpdated; + ret.m_eVisibility = this->m_eVisibility; + ret.m_bBanned = this->m_bBanned; + ret.m_rgchTags = this->m_rgchTags; + ret.m_bTagsTruncated = this->m_bTagsTruncated; + ret.m_pchFileName = this->m_pchFileName; + return ret; +} + +u32_RemoteStorageGetPublishedFileDetailsResult_t_116x::operator w32_RemoteStorageGetPublishedFileDetailsResult_t_116x() const +{ + w32_RemoteStorageGetPublishedFileDetailsResult_t_116x ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nCreatorAppID = this->m_nCreatorAppID; + ret.m_nConsumerAppID = this->m_nConsumerAppID; + ret.m_rgchTitle = this->m_rgchTitle; + ret.m_rgchDescription = this->m_rgchDescription; + ret.m_hFile = this->m_hFile; + ret.m_hPreviewFile = this->m_hPreviewFile; + ret.m_ulSteamIDOwner = this->m_ulSteamIDOwner; + ret.m_rtimeCreated = this->m_rtimeCreated; + ret.m_rtimeUpdated = this->m_rtimeUpdated; + ret.m_eVisibility = this->m_eVisibility; + ret.m_bBanned = this->m_bBanned; + ret.m_rgchTags = this->m_rgchTags; + ret.m_bTagsTruncated = this->m_bTagsTruncated; + ret.m_pchFileName = this->m_pchFileName; + return ret; +} +#endif + C_ASSERT( sizeof(w64_RemoteStorageGetPublishedItemVoteDetailsResult_t_123) >= 32 ); C_ASSERT( offsetof(w64_RemoteStorageGetPublishedItemVoteDetailsResult_t_123, m_eResult) == 0 ); C_ASSERT( sizeof(w64_RemoteStorageGetPublishedItemVoteDetailsResult_t_123().m_eResult) >= 4 ); @@ -6860,6 +9894,84 @@ C_ASSERT( sizeof(u32_RemoteStorageGetPublishedItemVoteDetailsResult_t_119().m_nR C_ASSERT( offsetof(u32_RemoteStorageGetPublishedItemVoteDetailsResult_t_119, m_fScore) == 24 ); C_ASSERT( sizeof(u32_RemoteStorageGetPublishedItemVoteDetailsResult_t_119().m_fScore) >= 4 ); +#ifdef __x86_64__ +w64_RemoteStorageGetPublishedItemVoteDetailsResult_t_123::operator u64_RemoteStorageGetPublishedItemVoteDetailsResult_t_123() const +{ + u64_RemoteStorageGetPublishedItemVoteDetailsResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_unPublishedFileId = this->m_unPublishedFileId; + ret.m_nVotesFor = this->m_nVotesFor; + ret.m_nVotesAgainst = this->m_nVotesAgainst; + ret.m_nReports = this->m_nReports; + ret.m_fScore = this->m_fScore; + return ret; +} + +u64_RemoteStorageGetPublishedItemVoteDetailsResult_t_123::operator w64_RemoteStorageGetPublishedItemVoteDetailsResult_t_123() const +{ + w64_RemoteStorageGetPublishedItemVoteDetailsResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_unPublishedFileId = this->m_unPublishedFileId; + ret.m_nVotesFor = this->m_nVotesFor; + ret.m_nVotesAgainst = this->m_nVotesAgainst; + ret.m_nReports = this->m_nReports; + ret.m_fScore = this->m_fScore; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStorageGetPublishedItemVoteDetailsResult_t_123::operator u32_RemoteStorageGetPublishedItemVoteDetailsResult_t_123() const +{ + u32_RemoteStorageGetPublishedItemVoteDetailsResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_unPublishedFileId = this->m_unPublishedFileId; + ret.m_nVotesFor = this->m_nVotesFor; + ret.m_nVotesAgainst = this->m_nVotesAgainst; + ret.m_nReports = this->m_nReports; + ret.m_fScore = this->m_fScore; + return ret; +} + +u32_RemoteStorageGetPublishedItemVoteDetailsResult_t_123::operator w32_RemoteStorageGetPublishedItemVoteDetailsResult_t_123() const +{ + w32_RemoteStorageGetPublishedItemVoteDetailsResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_unPublishedFileId = this->m_unPublishedFileId; + ret.m_nVotesFor = this->m_nVotesFor; + ret.m_nVotesAgainst = this->m_nVotesAgainst; + ret.m_nReports = this->m_nReports; + ret.m_fScore = this->m_fScore; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStorageGetPublishedItemVoteDetailsResult_t_119::operator u32_RemoteStorageGetPublishedItemVoteDetailsResult_t_119() const +{ + u32_RemoteStorageGetPublishedItemVoteDetailsResult_t_119 ret; + ret.m_eResult = this->m_eResult; + ret.m_unPublishedFileId = this->m_unPublishedFileId; + ret.m_nVotesFor = this->m_nVotesFor; + ret.m_nVotesAgainst = this->m_nVotesAgainst; + ret.m_nReports = this->m_nReports; + ret.m_fScore = this->m_fScore; + return ret; +} + +u32_RemoteStorageGetPublishedItemVoteDetailsResult_t_119::operator w32_RemoteStorageGetPublishedItemVoteDetailsResult_t_119() const +{ + w32_RemoteStorageGetPublishedItemVoteDetailsResult_t_119 ret; + ret.m_eResult = this->m_eResult; + ret.m_unPublishedFileId = this->m_unPublishedFileId; + ret.m_nVotesFor = this->m_nVotesFor; + ret.m_nVotesAgainst = this->m_nVotesAgainst; + ret.m_nReports = this->m_nReports; + ret.m_fScore = this->m_fScore; + return ret; +} +#endif + C_ASSERT( sizeof(w64_RemoteStoragePublishFileResult_t_125) >= 24 ); C_ASSERT( offsetof(w64_RemoteStoragePublishFileResult_t_125, m_eResult) == 0 ); C_ASSERT( sizeof(w64_RemoteStoragePublishFileResult_t_125().m_eResult) >= 4 ); @@ -6940,6 +10052,100 @@ C_ASSERT( sizeof(u32_RemoteStoragePublishFileResult_t_116x().m_eResult) >= 4 ); C_ASSERT( offsetof(u32_RemoteStoragePublishFileResult_t_116x, m_nPublishedFileId) == 4 ); C_ASSERT( sizeof(u32_RemoteStoragePublishFileResult_t_116x().m_nPublishedFileId) >= 8 ); +#ifdef __x86_64__ +w64_RemoteStoragePublishFileResult_t_125::operator u64_RemoteStoragePublishFileResult_t_125() const +{ + u64_RemoteStoragePublishFileResult_t_125 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_bUserNeedsToAcceptWorkshopLegalAgreement = this->m_bUserNeedsToAcceptWorkshopLegalAgreement; + return ret; +} + +u64_RemoteStoragePublishFileResult_t_125::operator w64_RemoteStoragePublishFileResult_t_125() const +{ + w64_RemoteStoragePublishFileResult_t_125 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_bUserNeedsToAcceptWorkshopLegalAgreement = this->m_bUserNeedsToAcceptWorkshopLegalAgreement; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStoragePublishFileResult_t_125::operator u32_RemoteStoragePublishFileResult_t_125() const +{ + u32_RemoteStoragePublishFileResult_t_125 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_bUserNeedsToAcceptWorkshopLegalAgreement = this->m_bUserNeedsToAcceptWorkshopLegalAgreement; + return ret; +} + +u32_RemoteStoragePublishFileResult_t_125::operator w32_RemoteStoragePublishFileResult_t_125() const +{ + w32_RemoteStoragePublishFileResult_t_125 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_bUserNeedsToAcceptWorkshopLegalAgreement = this->m_bUserNeedsToAcceptWorkshopLegalAgreement; + return ret; +} +#endif + +#ifdef __x86_64__ +w64_RemoteStoragePublishFileResult_t_123::operator u64_RemoteStoragePublishFileResult_t_123() const +{ + u64_RemoteStoragePublishFileResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + return ret; +} + +u64_RemoteStoragePublishFileResult_t_123::operator w64_RemoteStoragePublishFileResult_t_123() const +{ + w64_RemoteStoragePublishFileResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStoragePublishFileResult_t_123::operator u32_RemoteStoragePublishFileResult_t_123() const +{ + u32_RemoteStoragePublishFileResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + return ret; +} + +u32_RemoteStoragePublishFileResult_t_123::operator w32_RemoteStoragePublishFileResult_t_123() const +{ + w32_RemoteStoragePublishFileResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStoragePublishFileResult_t_116x::operator u32_RemoteStoragePublishFileResult_t_116x() const +{ + u32_RemoteStoragePublishFileResult_t_116x ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + return ret; +} + +u32_RemoteStoragePublishFileResult_t_116x::operator w32_RemoteStoragePublishFileResult_t_116x() const +{ + w32_RemoteStoragePublishFileResult_t_116x ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + return ret; +} +#endif + C_ASSERT( sizeof(w64_RemoteStoragePublishedFileUpdated_t) >= 24 ); C_ASSERT( offsetof(w64_RemoteStoragePublishedFileUpdated_t, m_nPublishedFileId) == 0 ); C_ASSERT( sizeof(w64_RemoteStoragePublishedFileUpdated_t().m_nPublishedFileId) >= 8 ); @@ -6972,6 +10178,46 @@ C_ASSERT( sizeof(u32_RemoteStoragePublishedFileUpdated_t().m_nAppID) >= 4 ); C_ASSERT( offsetof(u32_RemoteStoragePublishedFileUpdated_t, m_ulUnused) == 12 ); C_ASSERT( sizeof(u32_RemoteStoragePublishedFileUpdated_t().m_ulUnused) >= 8 ); +#ifdef __x86_64__ +w64_RemoteStoragePublishedFileUpdated_t::operator u64_RemoteStoragePublishedFileUpdated_t() const +{ + u64_RemoteStoragePublishedFileUpdated_t ret; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nAppID = this->m_nAppID; + ret.m_ulUnused = this->m_ulUnused; + return ret; +} + +u64_RemoteStoragePublishedFileUpdated_t::operator w64_RemoteStoragePublishedFileUpdated_t() const +{ + w64_RemoteStoragePublishedFileUpdated_t ret; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nAppID = this->m_nAppID; + ret.m_ulUnused = this->m_ulUnused; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStoragePublishedFileUpdated_t::operator u32_RemoteStoragePublishedFileUpdated_t() const +{ + u32_RemoteStoragePublishedFileUpdated_t ret; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nAppID = this->m_nAppID; + ret.m_ulUnused = this->m_ulUnused; + return ret; +} + +u32_RemoteStoragePublishedFileUpdated_t::operator w32_RemoteStoragePublishedFileUpdated_t() const +{ + w32_RemoteStoragePublishedFileUpdated_t ret; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nAppID = this->m_nAppID; + ret.m_ulUnused = this->m_ulUnused; + return ret; +} +#endif + C_ASSERT( sizeof(w64_RemoteStorageSetUserPublishedFileActionResult_t_123) >= 24 ); C_ASSERT( offsetof(w64_RemoteStorageSetUserPublishedFileActionResult_t_123, m_eResult) == 0 ); C_ASSERT( sizeof(w64_RemoteStorageSetUserPublishedFileActionResult_t_123().m_eResult) >= 4 ); @@ -7036,6 +10282,66 @@ C_ASSERT( sizeof(u32_RemoteStorageSetUserPublishedFileActionResult_t_119().m_nPu C_ASSERT( offsetof(u32_RemoteStorageSetUserPublishedFileActionResult_t_119, m_eAction) == 12 ); C_ASSERT( sizeof(u32_RemoteStorageSetUserPublishedFileActionResult_t_119().m_eAction) >= 4 ); +#ifdef __x86_64__ +w64_RemoteStorageSetUserPublishedFileActionResult_t_123::operator u64_RemoteStorageSetUserPublishedFileActionResult_t_123() const +{ + u64_RemoteStorageSetUserPublishedFileActionResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_eAction = this->m_eAction; + return ret; +} + +u64_RemoteStorageSetUserPublishedFileActionResult_t_123::operator w64_RemoteStorageSetUserPublishedFileActionResult_t_123() const +{ + w64_RemoteStorageSetUserPublishedFileActionResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_eAction = this->m_eAction; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStorageSetUserPublishedFileActionResult_t_123::operator u32_RemoteStorageSetUserPublishedFileActionResult_t_123() const +{ + u32_RemoteStorageSetUserPublishedFileActionResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_eAction = this->m_eAction; + return ret; +} + +u32_RemoteStorageSetUserPublishedFileActionResult_t_123::operator w32_RemoteStorageSetUserPublishedFileActionResult_t_123() const +{ + w32_RemoteStorageSetUserPublishedFileActionResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_eAction = this->m_eAction; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStorageSetUserPublishedFileActionResult_t_119::operator u32_RemoteStorageSetUserPublishedFileActionResult_t_119() const +{ + u32_RemoteStorageSetUserPublishedFileActionResult_t_119 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_eAction = this->m_eAction; + return ret; +} + +u32_RemoteStorageSetUserPublishedFileActionResult_t_119::operator w32_RemoteStorageSetUserPublishedFileActionResult_t_119() const +{ + w32_RemoteStorageSetUserPublishedFileActionResult_t_119 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_eAction = this->m_eAction; + return ret; +} +#endif + C_ASSERT( sizeof(w64_RemoteStorageSubscribePublishedFileResult_t_123) >= 16 ); C_ASSERT( offsetof(w64_RemoteStorageSubscribePublishedFileResult_t_123, m_eResult) == 0 ); C_ASSERT( sizeof(w64_RemoteStorageSubscribePublishedFileResult_t_123().m_eResult) >= 4 ); @@ -7076,6 +10382,42 @@ C_ASSERT( sizeof(u32_RemoteStorageSubscribePublishedFileResult_t_116x) >= 4 ); C_ASSERT( offsetof(u32_RemoteStorageSubscribePublishedFileResult_t_116x, m_eResult) == 0 ); C_ASSERT( sizeof(u32_RemoteStorageSubscribePublishedFileResult_t_116x().m_eResult) >= 4 ); +#ifdef __x86_64__ +w64_RemoteStorageSubscribePublishedFileResult_t_123::operator u64_RemoteStorageSubscribePublishedFileResult_t_123() const +{ + u64_RemoteStorageSubscribePublishedFileResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + return ret; +} + +u64_RemoteStorageSubscribePublishedFileResult_t_123::operator w64_RemoteStorageSubscribePublishedFileResult_t_123() const +{ + w64_RemoteStorageSubscribePublishedFileResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStorageSubscribePublishedFileResult_t_123::operator u32_RemoteStorageSubscribePublishedFileResult_t_123() const +{ + u32_RemoteStorageSubscribePublishedFileResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + return ret; +} + +u32_RemoteStorageSubscribePublishedFileResult_t_123::operator w32_RemoteStorageSubscribePublishedFileResult_t_123() const +{ + w32_RemoteStorageSubscribePublishedFileResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + return ret; +} +#endif + C_ASSERT( sizeof(w64_RemoteStorageUnsubscribePublishedFileResult_t_123) >= 16 ); C_ASSERT( offsetof(w64_RemoteStorageUnsubscribePublishedFileResult_t_123, m_eResult) == 0 ); C_ASSERT( sizeof(w64_RemoteStorageUnsubscribePublishedFileResult_t_123().m_eResult) >= 4 ); @@ -7116,6 +10458,42 @@ C_ASSERT( sizeof(u32_RemoteStorageUnsubscribePublishedFileResult_t_116x) >= 4 ); C_ASSERT( offsetof(u32_RemoteStorageUnsubscribePublishedFileResult_t_116x, m_eResult) == 0 ); C_ASSERT( sizeof(u32_RemoteStorageUnsubscribePublishedFileResult_t_116x().m_eResult) >= 4 ); +#ifdef __x86_64__ +w64_RemoteStorageUnsubscribePublishedFileResult_t_123::operator u64_RemoteStorageUnsubscribePublishedFileResult_t_123() const +{ + u64_RemoteStorageUnsubscribePublishedFileResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + return ret; +} + +u64_RemoteStorageUnsubscribePublishedFileResult_t_123::operator w64_RemoteStorageUnsubscribePublishedFileResult_t_123() const +{ + w64_RemoteStorageUnsubscribePublishedFileResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStorageUnsubscribePublishedFileResult_t_123::operator u32_RemoteStorageUnsubscribePublishedFileResult_t_123() const +{ + u32_RemoteStorageUnsubscribePublishedFileResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + return ret; +} + +u32_RemoteStorageUnsubscribePublishedFileResult_t_123::operator w32_RemoteStorageUnsubscribePublishedFileResult_t_123() const +{ + w32_RemoteStorageUnsubscribePublishedFileResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + return ret; +} +#endif + C_ASSERT( sizeof(w64_RemoteStorageUpdatePublishedFileRequest_t) >= 64 ); C_ASSERT( offsetof(w64_RemoteStorageUpdatePublishedFileRequest_t, m_unPublishedFileId) == 0 ); C_ASSERT( sizeof(w64_RemoteStorageUpdatePublishedFileRequest_t().m_unPublishedFileId) >= 8 ); @@ -7308,6 +10686,100 @@ C_ASSERT( sizeof(u32_RemoteStorageUpdatePublishedFileResult_t_116x().m_eResult) C_ASSERT( offsetof(u32_RemoteStorageUpdatePublishedFileResult_t_116x, m_nPublishedFileId) == 4 ); C_ASSERT( sizeof(u32_RemoteStorageUpdatePublishedFileResult_t_116x().m_nPublishedFileId) >= 8 ); +#ifdef __x86_64__ +w64_RemoteStorageUpdatePublishedFileResult_t_125::operator u64_RemoteStorageUpdatePublishedFileResult_t_125() const +{ + u64_RemoteStorageUpdatePublishedFileResult_t_125 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_bUserNeedsToAcceptWorkshopLegalAgreement = this->m_bUserNeedsToAcceptWorkshopLegalAgreement; + return ret; +} + +u64_RemoteStorageUpdatePublishedFileResult_t_125::operator w64_RemoteStorageUpdatePublishedFileResult_t_125() const +{ + w64_RemoteStorageUpdatePublishedFileResult_t_125 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_bUserNeedsToAcceptWorkshopLegalAgreement = this->m_bUserNeedsToAcceptWorkshopLegalAgreement; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStorageUpdatePublishedFileResult_t_125::operator u32_RemoteStorageUpdatePublishedFileResult_t_125() const +{ + u32_RemoteStorageUpdatePublishedFileResult_t_125 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_bUserNeedsToAcceptWorkshopLegalAgreement = this->m_bUserNeedsToAcceptWorkshopLegalAgreement; + return ret; +} + +u32_RemoteStorageUpdatePublishedFileResult_t_125::operator w32_RemoteStorageUpdatePublishedFileResult_t_125() const +{ + w32_RemoteStorageUpdatePublishedFileResult_t_125 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_bUserNeedsToAcceptWorkshopLegalAgreement = this->m_bUserNeedsToAcceptWorkshopLegalAgreement; + return ret; +} +#endif + +#ifdef __x86_64__ +w64_RemoteStorageUpdatePublishedFileResult_t_123::operator u64_RemoteStorageUpdatePublishedFileResult_t_123() const +{ + u64_RemoteStorageUpdatePublishedFileResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + return ret; +} + +u64_RemoteStorageUpdatePublishedFileResult_t_123::operator w64_RemoteStorageUpdatePublishedFileResult_t_123() const +{ + w64_RemoteStorageUpdatePublishedFileResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStorageUpdatePublishedFileResult_t_123::operator u32_RemoteStorageUpdatePublishedFileResult_t_123() const +{ + u32_RemoteStorageUpdatePublishedFileResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + return ret; +} + +u32_RemoteStorageUpdatePublishedFileResult_t_123::operator w32_RemoteStorageUpdatePublishedFileResult_t_123() const +{ + w32_RemoteStorageUpdatePublishedFileResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStorageUpdatePublishedFileResult_t_116x::operator u32_RemoteStorageUpdatePublishedFileResult_t_116x() const +{ + u32_RemoteStorageUpdatePublishedFileResult_t_116x ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + return ret; +} + +u32_RemoteStorageUpdatePublishedFileResult_t_116x::operator w32_RemoteStorageUpdatePublishedFileResult_t_116x() const +{ + w32_RemoteStorageUpdatePublishedFileResult_t_116x ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + return ret; +} +#endif + C_ASSERT( sizeof(w64_RemoteStorageUpdateUserPublishedItemVoteResult_t_123) >= 16 ); C_ASSERT( offsetof(w64_RemoteStorageUpdateUserPublishedItemVoteResult_t_123, m_eResult) == 0 ); C_ASSERT( sizeof(w64_RemoteStorageUpdateUserPublishedItemVoteResult_t_123().m_eResult) >= 4 ); @@ -7356,6 +10828,60 @@ C_ASSERT( sizeof(u32_RemoteStorageUpdateUserPublishedItemVoteResult_t_119().m_eR C_ASSERT( offsetof(u32_RemoteStorageUpdateUserPublishedItemVoteResult_t_119, m_nPublishedFileId) == 4 ); C_ASSERT( sizeof(u32_RemoteStorageUpdateUserPublishedItemVoteResult_t_119().m_nPublishedFileId) >= 8 ); +#ifdef __x86_64__ +w64_RemoteStorageUpdateUserPublishedItemVoteResult_t_123::operator u64_RemoteStorageUpdateUserPublishedItemVoteResult_t_123() const +{ + u64_RemoteStorageUpdateUserPublishedItemVoteResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + return ret; +} + +u64_RemoteStorageUpdateUserPublishedItemVoteResult_t_123::operator w64_RemoteStorageUpdateUserPublishedItemVoteResult_t_123() const +{ + w64_RemoteStorageUpdateUserPublishedItemVoteResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStorageUpdateUserPublishedItemVoteResult_t_123::operator u32_RemoteStorageUpdateUserPublishedItemVoteResult_t_123() const +{ + u32_RemoteStorageUpdateUserPublishedItemVoteResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + return ret; +} + +u32_RemoteStorageUpdateUserPublishedItemVoteResult_t_123::operator w32_RemoteStorageUpdateUserPublishedItemVoteResult_t_123() const +{ + w32_RemoteStorageUpdateUserPublishedItemVoteResult_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStorageUpdateUserPublishedItemVoteResult_t_119::operator u32_RemoteStorageUpdateUserPublishedItemVoteResult_t_119() const +{ + u32_RemoteStorageUpdateUserPublishedItemVoteResult_t_119 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + return ret; +} + +u32_RemoteStorageUpdateUserPublishedItemVoteResult_t_119::operator w32_RemoteStorageUpdateUserPublishedItemVoteResult_t_119() const +{ + w32_RemoteStorageUpdateUserPublishedItemVoteResult_t_119 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + return ret; +} +#endif + C_ASSERT( sizeof(w64_RemoteStorageUserVoteDetails_t_123) >= 24 ); C_ASSERT( offsetof(w64_RemoteStorageUserVoteDetails_t_123, m_eResult) == 0 ); C_ASSERT( sizeof(w64_RemoteStorageUserVoteDetails_t_123().m_eResult) >= 4 ); @@ -7420,6 +10946,66 @@ C_ASSERT( sizeof(u32_RemoteStorageUserVoteDetails_t_119().m_nPublishedFileId) >= C_ASSERT( offsetof(u32_RemoteStorageUserVoteDetails_t_119, m_eVote) == 12 ); C_ASSERT( sizeof(u32_RemoteStorageUserVoteDetails_t_119().m_eVote) >= 4 ); +#ifdef __x86_64__ +w64_RemoteStorageUserVoteDetails_t_123::operator u64_RemoteStorageUserVoteDetails_t_123() const +{ + u64_RemoteStorageUserVoteDetails_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_eVote = this->m_eVote; + return ret; +} + +u64_RemoteStorageUserVoteDetails_t_123::operator w64_RemoteStorageUserVoteDetails_t_123() const +{ + w64_RemoteStorageUserVoteDetails_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_eVote = this->m_eVote; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStorageUserVoteDetails_t_123::operator u32_RemoteStorageUserVoteDetails_t_123() const +{ + u32_RemoteStorageUserVoteDetails_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_eVote = this->m_eVote; + return ret; +} + +u32_RemoteStorageUserVoteDetails_t_123::operator w32_RemoteStorageUserVoteDetails_t_123() const +{ + w32_RemoteStorageUserVoteDetails_t_123 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_eVote = this->m_eVote; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoteStorageUserVoteDetails_t_119::operator u32_RemoteStorageUserVoteDetails_t_119() const +{ + u32_RemoteStorageUserVoteDetails_t_119 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_eVote = this->m_eVote; + return ret; +} + +u32_RemoteStorageUserVoteDetails_t_119::operator w32_RemoteStorageUserVoteDetails_t_119() const +{ + w32_RemoteStorageUserVoteDetails_t_119 ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_eVote = this->m_eVote; + return ret; +} +#endif + C_ASSERT( sizeof(w64_RemoveAppDependencyResult_t) >= 24 ); C_ASSERT( offsetof(w64_RemoveAppDependencyResult_t, m_eResult) == 0 ); C_ASSERT( sizeof(w64_RemoveAppDependencyResult_t().m_eResult) >= 4 ); @@ -7452,6 +11038,46 @@ C_ASSERT( sizeof(u32_RemoveAppDependencyResult_t().m_nPublishedFileId) >= 8 ); C_ASSERT( offsetof(u32_RemoveAppDependencyResult_t, m_nAppID) == 12 ); C_ASSERT( sizeof(u32_RemoveAppDependencyResult_t().m_nAppID) >= 4 ); +#ifdef __x86_64__ +w64_RemoveAppDependencyResult_t::operator u64_RemoveAppDependencyResult_t() const +{ + u64_RemoveAppDependencyResult_t ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nAppID = this->m_nAppID; + return ret; +} + +u64_RemoveAppDependencyResult_t::operator w64_RemoveAppDependencyResult_t() const +{ + w64_RemoveAppDependencyResult_t ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nAppID = this->m_nAppID; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoveAppDependencyResult_t::operator u32_RemoveAppDependencyResult_t() const +{ + u32_RemoveAppDependencyResult_t ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nAppID = this->m_nAppID; + return ret; +} + +u32_RemoveAppDependencyResult_t::operator w32_RemoveAppDependencyResult_t() const +{ + w32_RemoveAppDependencyResult_t ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nAppID = this->m_nAppID; + return ret; +} +#endif + C_ASSERT( sizeof(w64_RemoveUGCDependencyResult_t) >= 24 ); C_ASSERT( offsetof(w64_RemoveUGCDependencyResult_t, m_eResult) == 0 ); C_ASSERT( sizeof(w64_RemoveUGCDependencyResult_t().m_eResult) >= 4 ); @@ -7484,6 +11110,46 @@ C_ASSERT( sizeof(u32_RemoveUGCDependencyResult_t().m_nPublishedFileId) >= 8 ); C_ASSERT( offsetof(u32_RemoveUGCDependencyResult_t, m_nChildPublishedFileId) == 12 ); C_ASSERT( sizeof(u32_RemoveUGCDependencyResult_t().m_nChildPublishedFileId) >= 8 ); +#ifdef __x86_64__ +w64_RemoveUGCDependencyResult_t::operator u64_RemoveUGCDependencyResult_t() const +{ + u64_RemoveUGCDependencyResult_t ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nChildPublishedFileId = this->m_nChildPublishedFileId; + return ret; +} + +u64_RemoveUGCDependencyResult_t::operator w64_RemoveUGCDependencyResult_t() const +{ + w64_RemoveUGCDependencyResult_t ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nChildPublishedFileId = this->m_nChildPublishedFileId; + return ret; +} +#endif + +#ifdef __i386__ +w32_RemoveUGCDependencyResult_t::operator u32_RemoveUGCDependencyResult_t() const +{ + u32_RemoveUGCDependencyResult_t ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nChildPublishedFileId = this->m_nChildPublishedFileId; + return ret; +} + +u32_RemoveUGCDependencyResult_t::operator w32_RemoveUGCDependencyResult_t() const +{ + w32_RemoveUGCDependencyResult_t ret; + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nChildPublishedFileId = this->m_nChildPublishedFileId; + return ret; +} +#endif + C_ASSERT( sizeof(w64_RequestPlayersForGameFinalResultCallback_t) >= 24 ); C_ASSERT( offsetof(w64_RequestPlayersForGameFinalResultCallback_t, m_eResult) == 0 ); C_ASSERT( sizeof(w64_RequestPlayersForGameFinalResultCallback_t().m_eResult) >= 4 ); @@ -7516,6 +11182,46 @@ C_ASSERT( sizeof(u32_RequestPlayersForGameFinalResultCallback_t().m_ullSearchID) C_ASSERT( offsetof(u32_RequestPlayersForGameFinalResultCallback_t, m_ullUniqueGameID) == 12 ); C_ASSERT( sizeof(u32_RequestPlayersForGameFinalResultCallback_t().m_ullUniqueGameID) >= 8 ); +#ifdef __x86_64__ +w64_RequestPlayersForGameFinalResultCallback_t::operator u64_RequestPlayersForGameFinalResultCallback_t() const +{ + u64_RequestPlayersForGameFinalResultCallback_t ret; + ret.m_eResult = this->m_eResult; + ret.m_ullSearchID = this->m_ullSearchID; + ret.m_ullUniqueGameID = this->m_ullUniqueGameID; + return ret; +} + +u64_RequestPlayersForGameFinalResultCallback_t::operator w64_RequestPlayersForGameFinalResultCallback_t() const +{ + w64_RequestPlayersForGameFinalResultCallback_t ret; + ret.m_eResult = this->m_eResult; + ret.m_ullSearchID = this->m_ullSearchID; + ret.m_ullUniqueGameID = this->m_ullUniqueGameID; + return ret; +} +#endif + +#ifdef __i386__ +w32_RequestPlayersForGameFinalResultCallback_t::operator u32_RequestPlayersForGameFinalResultCallback_t() const +{ + u32_RequestPlayersForGameFinalResultCallback_t ret; + ret.m_eResult = this->m_eResult; + ret.m_ullSearchID = this->m_ullSearchID; + ret.m_ullUniqueGameID = this->m_ullUniqueGameID; + return ret; +} + +u32_RequestPlayersForGameFinalResultCallback_t::operator w32_RequestPlayersForGameFinalResultCallback_t() const +{ + w32_RequestPlayersForGameFinalResultCallback_t ret; + ret.m_eResult = this->m_eResult; + ret.m_ullSearchID = this->m_ullSearchID; + ret.m_ullUniqueGameID = this->m_ullUniqueGameID; + return ret; +} +#endif + C_ASSERT( sizeof(w64_RequestPlayersForGameProgressCallback_t) >= 16 ); C_ASSERT( offsetof(w64_RequestPlayersForGameProgressCallback_t, m_eResult) == 0 ); C_ASSERT( sizeof(w64_RequestPlayersForGameProgressCallback_t().m_eResult) >= 4 ); @@ -7540,6 +11246,42 @@ C_ASSERT( sizeof(u32_RequestPlayersForGameProgressCallback_t().m_eResult) >= 4 ) C_ASSERT( offsetof(u32_RequestPlayersForGameProgressCallback_t, m_ullSearchID) == 4 ); C_ASSERT( sizeof(u32_RequestPlayersForGameProgressCallback_t().m_ullSearchID) >= 8 ); +#ifdef __x86_64__ +w64_RequestPlayersForGameProgressCallback_t::operator u64_RequestPlayersForGameProgressCallback_t() const +{ + u64_RequestPlayersForGameProgressCallback_t ret; + ret.m_eResult = this->m_eResult; + ret.m_ullSearchID = this->m_ullSearchID; + return ret; +} + +u64_RequestPlayersForGameProgressCallback_t::operator w64_RequestPlayersForGameProgressCallback_t() const +{ + w64_RequestPlayersForGameProgressCallback_t ret; + ret.m_eResult = this->m_eResult; + ret.m_ullSearchID = this->m_ullSearchID; + return ret; +} +#endif + +#ifdef __i386__ +w32_RequestPlayersForGameProgressCallback_t::operator u32_RequestPlayersForGameProgressCallback_t() const +{ + u32_RequestPlayersForGameProgressCallback_t ret; + ret.m_eResult = this->m_eResult; + ret.m_ullSearchID = this->m_ullSearchID; + return ret; +} + +u32_RequestPlayersForGameProgressCallback_t::operator w32_RequestPlayersForGameProgressCallback_t() const +{ + w32_RequestPlayersForGameProgressCallback_t ret; + ret.m_eResult = this->m_eResult; + ret.m_ullSearchID = this->m_ullSearchID; + return ret; +} +#endif + C_ASSERT( sizeof(w64_RequestPlayersForGameResultCallback_t) >= 64 ); C_ASSERT( offsetof(w64_RequestPlayersForGameResultCallback_t, m_eResult) == 0 ); C_ASSERT( sizeof(w64_RequestPlayersForGameResultCallback_t().m_eResult) >= 4 ); @@ -7628,6 +11370,74 @@ C_ASSERT( sizeof(u32_RequestPlayersForGameResultCallback_t().m_nSuggestedTeamInd C_ASSERT( offsetof(u32_RequestPlayersForGameResultCallback_t, m_ullUniqueGameID) == 48 ); C_ASSERT( sizeof(u32_RequestPlayersForGameResultCallback_t().m_ullUniqueGameID) >= 8 ); +#ifdef __x86_64__ +w64_RequestPlayersForGameResultCallback_t::operator u64_RequestPlayersForGameResultCallback_t() const +{ + u64_RequestPlayersForGameResultCallback_t ret; + ret.m_eResult = this->m_eResult; + ret.m_ullSearchID = this->m_ullSearchID; + ret.m_SteamIDPlayerFound = this->m_SteamIDPlayerFound; + ret.m_SteamIDLobby = this->m_SteamIDLobby; + ret.m_ePlayerAcceptState = this->m_ePlayerAcceptState; + ret.m_nPlayerIndex = this->m_nPlayerIndex; + ret.m_nTotalPlayersFound = this->m_nTotalPlayersFound; + ret.m_nTotalPlayersAcceptedGame = this->m_nTotalPlayersAcceptedGame; + ret.m_nSuggestedTeamIndex = this->m_nSuggestedTeamIndex; + ret.m_ullUniqueGameID = this->m_ullUniqueGameID; + return ret; +} + +u64_RequestPlayersForGameResultCallback_t::operator w64_RequestPlayersForGameResultCallback_t() const +{ + w64_RequestPlayersForGameResultCallback_t ret; + ret.m_eResult = this->m_eResult; + ret.m_ullSearchID = this->m_ullSearchID; + ret.m_SteamIDPlayerFound = this->m_SteamIDPlayerFound; + ret.m_SteamIDLobby = this->m_SteamIDLobby; + ret.m_ePlayerAcceptState = this->m_ePlayerAcceptState; + ret.m_nPlayerIndex = this->m_nPlayerIndex; + ret.m_nTotalPlayersFound = this->m_nTotalPlayersFound; + ret.m_nTotalPlayersAcceptedGame = this->m_nTotalPlayersAcceptedGame; + ret.m_nSuggestedTeamIndex = this->m_nSuggestedTeamIndex; + ret.m_ullUniqueGameID = this->m_ullUniqueGameID; + return ret; +} +#endif + +#ifdef __i386__ +w32_RequestPlayersForGameResultCallback_t::operator u32_RequestPlayersForGameResultCallback_t() const +{ + u32_RequestPlayersForGameResultCallback_t ret; + ret.m_eResult = this->m_eResult; + ret.m_ullSearchID = this->m_ullSearchID; + ret.m_SteamIDPlayerFound = this->m_SteamIDPlayerFound; + ret.m_SteamIDLobby = this->m_SteamIDLobby; + ret.m_ePlayerAcceptState = this->m_ePlayerAcceptState; + ret.m_nPlayerIndex = this->m_nPlayerIndex; + ret.m_nTotalPlayersFound = this->m_nTotalPlayersFound; + ret.m_nTotalPlayersAcceptedGame = this->m_nTotalPlayersAcceptedGame; + ret.m_nSuggestedTeamIndex = this->m_nSuggestedTeamIndex; + ret.m_ullUniqueGameID = this->m_ullUniqueGameID; + return ret; +} + +u32_RequestPlayersForGameResultCallback_t::operator w32_RequestPlayersForGameResultCallback_t() const +{ + w32_RequestPlayersForGameResultCallback_t ret; + ret.m_eResult = this->m_eResult; + ret.m_ullSearchID = this->m_ullSearchID; + ret.m_SteamIDPlayerFound = this->m_SteamIDPlayerFound; + ret.m_SteamIDLobby = this->m_SteamIDLobby; + ret.m_ePlayerAcceptState = this->m_ePlayerAcceptState; + ret.m_nPlayerIndex = this->m_nPlayerIndex; + ret.m_nTotalPlayersFound = this->m_nTotalPlayersFound; + ret.m_nTotalPlayersAcceptedGame = this->m_nTotalPlayersAcceptedGame; + ret.m_nSuggestedTeamIndex = this->m_nSuggestedTeamIndex; + ret.m_ullUniqueGameID = this->m_ullUniqueGameID; + return ret; +} +#endif + C_ASSERT( sizeof(w64_SteamInputConfigurationLoaded_t) >= 40 ); C_ASSERT( offsetof(w64_SteamInputConfigurationLoaded_t, m_unAppID) == 0 ); C_ASSERT( sizeof(w64_SteamInputConfigurationLoaded_t().m_unAppID) >= 4 ); @@ -7692,6 +11502,62 @@ C_ASSERT( sizeof(u32_SteamInputConfigurationLoaded_t().m_bUsesSteamInputAPI) >= C_ASSERT( offsetof(u32_SteamInputConfigurationLoaded_t, m_bUsesGamepadAPI) == 29 ); C_ASSERT( sizeof(u32_SteamInputConfigurationLoaded_t().m_bUsesGamepadAPI) >= 1 ); +#ifdef __x86_64__ +w64_SteamInputConfigurationLoaded_t::operator u64_SteamInputConfigurationLoaded_t() const +{ + u64_SteamInputConfigurationLoaded_t ret; + ret.m_unAppID = this->m_unAppID; + ret.m_ulDeviceHandle = this->m_ulDeviceHandle; + ret.m_ulMappingCreator = this->m_ulMappingCreator; + ret.m_unMajorRevision = this->m_unMajorRevision; + ret.m_unMinorRevision = this->m_unMinorRevision; + ret.m_bUsesSteamInputAPI = this->m_bUsesSteamInputAPI; + ret.m_bUsesGamepadAPI = this->m_bUsesGamepadAPI; + return ret; +} + +u64_SteamInputConfigurationLoaded_t::operator w64_SteamInputConfigurationLoaded_t() const +{ + w64_SteamInputConfigurationLoaded_t ret; + ret.m_unAppID = this->m_unAppID; + ret.m_ulDeviceHandle = this->m_ulDeviceHandle; + ret.m_ulMappingCreator = this->m_ulMappingCreator; + ret.m_unMajorRevision = this->m_unMajorRevision; + ret.m_unMinorRevision = this->m_unMinorRevision; + ret.m_bUsesSteamInputAPI = this->m_bUsesSteamInputAPI; + ret.m_bUsesGamepadAPI = this->m_bUsesGamepadAPI; + return ret; +} +#endif + +#ifdef __i386__ +w32_SteamInputConfigurationLoaded_t::operator u32_SteamInputConfigurationLoaded_t() const +{ + u32_SteamInputConfigurationLoaded_t ret; + ret.m_unAppID = this->m_unAppID; + ret.m_ulDeviceHandle = this->m_ulDeviceHandle; + ret.m_ulMappingCreator = this->m_ulMappingCreator; + ret.m_unMajorRevision = this->m_unMajorRevision; + ret.m_unMinorRevision = this->m_unMinorRevision; + ret.m_bUsesSteamInputAPI = this->m_bUsesSteamInputAPI; + ret.m_bUsesGamepadAPI = this->m_bUsesGamepadAPI; + return ret; +} + +u32_SteamInputConfigurationLoaded_t::operator w32_SteamInputConfigurationLoaded_t() const +{ + w32_SteamInputConfigurationLoaded_t ret; + ret.m_unAppID = this->m_unAppID; + ret.m_ulDeviceHandle = this->m_ulDeviceHandle; + ret.m_ulMappingCreator = this->m_ulMappingCreator; + ret.m_unMajorRevision = this->m_unMajorRevision; + ret.m_unMinorRevision = this->m_unMinorRevision; + ret.m_bUsesSteamInputAPI = this->m_bUsesSteamInputAPI; + ret.m_bUsesGamepadAPI = this->m_bUsesGamepadAPI; + return ret; +} +#endif + C_ASSERT( sizeof(w64_SteamInputGamepadSlotChange_t) >= 32 ); C_ASSERT( offsetof(w64_SteamInputGamepadSlotChange_t, m_unAppID) == 0 ); C_ASSERT( sizeof(w64_SteamInputGamepadSlotChange_t().m_unAppID) >= 4 ); @@ -7740,6 +11606,54 @@ C_ASSERT( sizeof(u32_SteamInputGamepadSlotChange_t().m_nOldGamepadSlot) >= 4 ); C_ASSERT( offsetof(u32_SteamInputGamepadSlotChange_t, m_nNewGamepadSlot) == 20 ); C_ASSERT( sizeof(u32_SteamInputGamepadSlotChange_t().m_nNewGamepadSlot) >= 4 ); +#ifdef __x86_64__ +w64_SteamInputGamepadSlotChange_t::operator u64_SteamInputGamepadSlotChange_t() const +{ + u64_SteamInputGamepadSlotChange_t ret; + ret.m_unAppID = this->m_unAppID; + ret.m_ulDeviceHandle = this->m_ulDeviceHandle; + ret.m_eDeviceType = this->m_eDeviceType; + ret.m_nOldGamepadSlot = this->m_nOldGamepadSlot; + ret.m_nNewGamepadSlot = this->m_nNewGamepadSlot; + return ret; +} + +u64_SteamInputGamepadSlotChange_t::operator w64_SteamInputGamepadSlotChange_t() const +{ + w64_SteamInputGamepadSlotChange_t ret; + ret.m_unAppID = this->m_unAppID; + ret.m_ulDeviceHandle = this->m_ulDeviceHandle; + ret.m_eDeviceType = this->m_eDeviceType; + ret.m_nOldGamepadSlot = this->m_nOldGamepadSlot; + ret.m_nNewGamepadSlot = this->m_nNewGamepadSlot; + return ret; +} +#endif + +#ifdef __i386__ +w32_SteamInputGamepadSlotChange_t::operator u32_SteamInputGamepadSlotChange_t() const +{ + u32_SteamInputGamepadSlotChange_t ret; + ret.m_unAppID = this->m_unAppID; + ret.m_ulDeviceHandle = this->m_ulDeviceHandle; + ret.m_eDeviceType = this->m_eDeviceType; + ret.m_nOldGamepadSlot = this->m_nOldGamepadSlot; + ret.m_nNewGamepadSlot = this->m_nNewGamepadSlot; + return ret; +} + +u32_SteamInputGamepadSlotChange_t::operator w32_SteamInputGamepadSlotChange_t() const +{ + w32_SteamInputGamepadSlotChange_t ret; + ret.m_unAppID = this->m_unAppID; + ret.m_ulDeviceHandle = this->m_ulDeviceHandle; + ret.m_eDeviceType = this->m_eDeviceType; + ret.m_nOldGamepadSlot = this->m_nOldGamepadSlot; + ret.m_nNewGamepadSlot = this->m_nNewGamepadSlot; + return ret; +} +#endif + C_ASSERT( sizeof(w64_SteamInventoryStartPurchaseResult_t) >= 24 ); C_ASSERT( offsetof(w64_SteamInventoryStartPurchaseResult_t, m_result) == 0 ); C_ASSERT( sizeof(w64_SteamInventoryStartPurchaseResult_t().m_result) >= 4 ); @@ -7772,6 +11686,46 @@ C_ASSERT( sizeof(u32_SteamInventoryStartPurchaseResult_t().m_ulOrderID) >= 8 ); C_ASSERT( offsetof(u32_SteamInventoryStartPurchaseResult_t, m_ulTransID) == 12 ); C_ASSERT( sizeof(u32_SteamInventoryStartPurchaseResult_t().m_ulTransID) >= 8 ); +#ifdef __x86_64__ +w64_SteamInventoryStartPurchaseResult_t::operator u64_SteamInventoryStartPurchaseResult_t() const +{ + u64_SteamInventoryStartPurchaseResult_t ret; + ret.m_result = this->m_result; + ret.m_ulOrderID = this->m_ulOrderID; + ret.m_ulTransID = this->m_ulTransID; + return ret; +} + +u64_SteamInventoryStartPurchaseResult_t::operator w64_SteamInventoryStartPurchaseResult_t() const +{ + w64_SteamInventoryStartPurchaseResult_t ret; + ret.m_result = this->m_result; + ret.m_ulOrderID = this->m_ulOrderID; + ret.m_ulTransID = this->m_ulTransID; + return ret; +} +#endif + +#ifdef __i386__ +w32_SteamInventoryStartPurchaseResult_t::operator u32_SteamInventoryStartPurchaseResult_t() const +{ + u32_SteamInventoryStartPurchaseResult_t ret; + ret.m_result = this->m_result; + ret.m_ulOrderID = this->m_ulOrderID; + ret.m_ulTransID = this->m_ulTransID; + return ret; +} + +u32_SteamInventoryStartPurchaseResult_t::operator w32_SteamInventoryStartPurchaseResult_t() const +{ + w32_SteamInventoryStartPurchaseResult_t ret; + ret.m_result = this->m_result; + ret.m_ulOrderID = this->m_ulOrderID; + ret.m_ulTransID = this->m_ulTransID; + return ret; +} +#endif + C_ASSERT( sizeof(w64_SteamNetConnectionStatusChangedCallback_t_153a) >= 712 ); C_ASSERT( offsetof(w64_SteamNetConnectionStatusChangedCallback_t_153a, m_hConn) == 0 ); C_ASSERT( sizeof(w64_SteamNetConnectionStatusChangedCallback_t_153a().m_hConn) >= 4 ); @@ -7868,6 +11822,126 @@ C_ASSERT( sizeof(u32_SteamNetConnectionStatusChangedCallback_t_151().m_info) >= C_ASSERT( offsetof(u32_SteamNetConnectionStatusChangedCallback_t_151, m_eOldState) == 572 ); C_ASSERT( sizeof(u32_SteamNetConnectionStatusChangedCallback_t_151().m_eOldState) >= 4 ); +#ifdef __x86_64__ +w64_SteamNetConnectionStatusChangedCallback_t_153a::operator u64_SteamNetConnectionStatusChangedCallback_t_153a() const +{ + u64_SteamNetConnectionStatusChangedCallback_t_153a ret; + ret.m_hConn = this->m_hConn; + ret.m_info = this->m_info; + ret.m_eOldState = this->m_eOldState; + return ret; +} + +u64_SteamNetConnectionStatusChangedCallback_t_153a::operator w64_SteamNetConnectionStatusChangedCallback_t_153a() const +{ + w64_SteamNetConnectionStatusChangedCallback_t_153a ret; + ret.m_hConn = this->m_hConn; + ret.m_info = this->m_info; + ret.m_eOldState = this->m_eOldState; + return ret; +} +#endif + +#ifdef __i386__ +w32_SteamNetConnectionStatusChangedCallback_t_153a::operator u32_SteamNetConnectionStatusChangedCallback_t_153a() const +{ + u32_SteamNetConnectionStatusChangedCallback_t_153a ret; + ret.m_hConn = this->m_hConn; + ret.m_info = this->m_info; + ret.m_eOldState = this->m_eOldState; + return ret; +} + +u32_SteamNetConnectionStatusChangedCallback_t_153a::operator w32_SteamNetConnectionStatusChangedCallback_t_153a() const +{ + w32_SteamNetConnectionStatusChangedCallback_t_153a ret; + ret.m_hConn = this->m_hConn; + ret.m_info = this->m_info; + ret.m_eOldState = this->m_eOldState; + return ret; +} +#endif + +#ifdef __x86_64__ +w64_SteamNetConnectionStatusChangedCallback_t_144::operator u64_SteamNetConnectionStatusChangedCallback_t_144() const +{ + u64_SteamNetConnectionStatusChangedCallback_t_144 ret; + ret.m_hConn = this->m_hConn; + ret.m_info = this->m_info; + ret.m_eOldState = this->m_eOldState; + return ret; +} + +u64_SteamNetConnectionStatusChangedCallback_t_144::operator w64_SteamNetConnectionStatusChangedCallback_t_144() const +{ + w64_SteamNetConnectionStatusChangedCallback_t_144 ret; + ret.m_hConn = this->m_hConn; + ret.m_info = this->m_info; + ret.m_eOldState = this->m_eOldState; + return ret; +} +#endif + +#ifdef __i386__ +w32_SteamNetConnectionStatusChangedCallback_t_144::operator u32_SteamNetConnectionStatusChangedCallback_t_144() const +{ + u32_SteamNetConnectionStatusChangedCallback_t_144 ret; + ret.m_hConn = this->m_hConn; + ret.m_info = this->m_info; + ret.m_eOldState = this->m_eOldState; + return ret; +} + +u32_SteamNetConnectionStatusChangedCallback_t_144::operator w32_SteamNetConnectionStatusChangedCallback_t_144() const +{ + w32_SteamNetConnectionStatusChangedCallback_t_144 ret; + ret.m_hConn = this->m_hConn; + ret.m_info = this->m_info; + ret.m_eOldState = this->m_eOldState; + return ret; +} +#endif + +#ifdef __x86_64__ +w64_SteamNetConnectionStatusChangedCallback_t_151::operator u64_SteamNetConnectionStatusChangedCallback_t_151() const +{ + u64_SteamNetConnectionStatusChangedCallback_t_151 ret; + ret.m_hConn = this->m_hConn; + ret.m_info = this->m_info; + ret.m_eOldState = this->m_eOldState; + return ret; +} + +u64_SteamNetConnectionStatusChangedCallback_t_151::operator w64_SteamNetConnectionStatusChangedCallback_t_151() const +{ + w64_SteamNetConnectionStatusChangedCallback_t_151 ret; + ret.m_hConn = this->m_hConn; + ret.m_info = this->m_info; + ret.m_eOldState = this->m_eOldState; + return ret; +} +#endif + +#ifdef __i386__ +w32_SteamNetConnectionStatusChangedCallback_t_151::operator u32_SteamNetConnectionStatusChangedCallback_t_151() const +{ + u32_SteamNetConnectionStatusChangedCallback_t_151 ret; + ret.m_hConn = this->m_hConn; + ret.m_info = this->m_info; + ret.m_eOldState = this->m_eOldState; + return ret; +} + +u32_SteamNetConnectionStatusChangedCallback_t_151::operator w32_SteamNetConnectionStatusChangedCallback_t_151() const +{ + w32_SteamNetConnectionStatusChangedCallback_t_151 ret; + ret.m_hConn = this->m_hConn; + ret.m_info = this->m_info; + ret.m_eOldState = this->m_eOldState; + return ret; +} +#endif + C_ASSERT( sizeof(w64_SteamNetworkingMessage_t_153a) >= 216 ); C_ASSERT( offsetof(w64_SteamNetworkingMessage_t_153a, m_pData) == 0 ); C_ASSERT( sizeof(w64_SteamNetworkingMessage_t_153a().m_pData) >= 8 ); @@ -8340,6 +12414,42 @@ C_ASSERT( sizeof(u32_SteamPartyBeaconLocation_t().m_eType) >= 4 ); C_ASSERT( offsetof(u32_SteamPartyBeaconLocation_t, m_ulLocationID) == 4 ); C_ASSERT( sizeof(u32_SteamPartyBeaconLocation_t().m_ulLocationID) >= 8 ); +#ifdef __x86_64__ +w64_SteamPartyBeaconLocation_t::operator u64_SteamPartyBeaconLocation_t() const +{ + u64_SteamPartyBeaconLocation_t ret; + ret.m_eType = this->m_eType; + ret.m_ulLocationID = this->m_ulLocationID; + return ret; +} + +u64_SteamPartyBeaconLocation_t::operator w64_SteamPartyBeaconLocation_t() const +{ + w64_SteamPartyBeaconLocation_t ret; + ret.m_eType = this->m_eType; + ret.m_ulLocationID = this->m_ulLocationID; + return ret; +} +#endif + +#ifdef __i386__ +w32_SteamPartyBeaconLocation_t::operator u32_SteamPartyBeaconLocation_t() const +{ + u32_SteamPartyBeaconLocation_t ret; + ret.m_eType = this->m_eType; + ret.m_ulLocationID = this->m_ulLocationID; + return ret; +} + +u32_SteamPartyBeaconLocation_t::operator w32_SteamPartyBeaconLocation_t() const +{ + w32_SteamPartyBeaconLocation_t ret; + ret.m_eType = this->m_eType; + ret.m_ulLocationID = this->m_ulLocationID; + return ret; +} +#endif + C_ASSERT( sizeof(w64_SteamUGCRequestUGCDetailsResult_t_128x) >= 9784 ); C_ASSERT( offsetof(w64_SteamUGCRequestUGCDetailsResult_t_128x, m_details) == 0 ); C_ASSERT( sizeof(w64_SteamUGCRequestUGCDetailsResult_t_128x().m_details) >= 9776 ); @@ -8404,6 +12514,110 @@ C_ASSERT( sizeof(u32_SteamUGCRequestUGCDetailsResult_t_126) >= 9760 ); C_ASSERT( offsetof(u32_SteamUGCRequestUGCDetailsResult_t_126, m_details) == 0 ); C_ASSERT( sizeof(u32_SteamUGCRequestUGCDetailsResult_t_126().m_details) >= 9760 ); +#ifdef __x86_64__ +w64_SteamUGCRequestUGCDetailsResult_t_128x::operator u64_SteamUGCRequestUGCDetailsResult_t_128x() const +{ + u64_SteamUGCRequestUGCDetailsResult_t_128x ret; + ret.m_details = this->m_details; + ret.m_bCachedData = this->m_bCachedData; + return ret; +} + +u64_SteamUGCRequestUGCDetailsResult_t_128x::operator w64_SteamUGCRequestUGCDetailsResult_t_128x() const +{ + w64_SteamUGCRequestUGCDetailsResult_t_128x ret; + ret.m_details = this->m_details; + ret.m_bCachedData = this->m_bCachedData; + return ret; +} +#endif + +#ifdef __i386__ +w32_SteamUGCRequestUGCDetailsResult_t_128x::operator u32_SteamUGCRequestUGCDetailsResult_t_128x() const +{ + u32_SteamUGCRequestUGCDetailsResult_t_128x ret; + ret.m_details = this->m_details; + ret.m_bCachedData = this->m_bCachedData; + return ret; +} + +u32_SteamUGCRequestUGCDetailsResult_t_128x::operator w32_SteamUGCRequestUGCDetailsResult_t_128x() const +{ + w32_SteamUGCRequestUGCDetailsResult_t_128x ret; + ret.m_details = this->m_details; + ret.m_bCachedData = this->m_bCachedData; + return ret; +} +#endif + +#ifdef __x86_64__ +w64_SteamUGCRequestUGCDetailsResult_t_129::operator u64_SteamUGCRequestUGCDetailsResult_t_129() const +{ + u64_SteamUGCRequestUGCDetailsResult_t_129 ret; + ret.m_details = this->m_details; + ret.m_bCachedData = this->m_bCachedData; + return ret; +} + +u64_SteamUGCRequestUGCDetailsResult_t_129::operator w64_SteamUGCRequestUGCDetailsResult_t_129() const +{ + w64_SteamUGCRequestUGCDetailsResult_t_129 ret; + ret.m_details = this->m_details; + ret.m_bCachedData = this->m_bCachedData; + return ret; +} +#endif + +#ifdef __i386__ +w32_SteamUGCRequestUGCDetailsResult_t_129::operator u32_SteamUGCRequestUGCDetailsResult_t_129() const +{ + u32_SteamUGCRequestUGCDetailsResult_t_129 ret; + ret.m_details = this->m_details; + ret.m_bCachedData = this->m_bCachedData; + return ret; +} + +u32_SteamUGCRequestUGCDetailsResult_t_129::operator w32_SteamUGCRequestUGCDetailsResult_t_129() const +{ + w32_SteamUGCRequestUGCDetailsResult_t_129 ret; + ret.m_details = this->m_details; + ret.m_bCachedData = this->m_bCachedData; + return ret; +} +#endif + +#ifdef __x86_64__ +w64_SteamUGCRequestUGCDetailsResult_t_126::operator u64_SteamUGCRequestUGCDetailsResult_t_126() const +{ + u64_SteamUGCRequestUGCDetailsResult_t_126 ret; + ret.m_details = this->m_details; + return ret; +} + +u64_SteamUGCRequestUGCDetailsResult_t_126::operator w64_SteamUGCRequestUGCDetailsResult_t_126() const +{ + w64_SteamUGCRequestUGCDetailsResult_t_126 ret; + ret.m_details = this->m_details; + return ret; +} +#endif + +#ifdef __i386__ +w32_SteamUGCRequestUGCDetailsResult_t_126::operator u32_SteamUGCRequestUGCDetailsResult_t_126() const +{ + u32_SteamUGCRequestUGCDetailsResult_t_126 ret; + ret.m_details = this->m_details; + return ret; +} + +u32_SteamUGCRequestUGCDetailsResult_t_126::operator w32_SteamUGCRequestUGCDetailsResult_t_126() const +{ + w32_SteamUGCRequestUGCDetailsResult_t_126 ret; + ret.m_details = this->m_details; + return ret; +} +#endif + C_ASSERT( sizeof(w64_SubmitPlayerResultResultCallback_t) >= 24 ); C_ASSERT( offsetof(w64_SubmitPlayerResultResultCallback_t, m_eResult) == 0 ); C_ASSERT( sizeof(w64_SubmitPlayerResultResultCallback_t().m_eResult) >= 4 ); @@ -8436,3 +12650,43 @@ C_ASSERT( sizeof(u32_SubmitPlayerResultResultCallback_t().ullUniqueGameID) >= 8 C_ASSERT( offsetof(u32_SubmitPlayerResultResultCallback_t, steamIDPlayer) == 12 ); C_ASSERT( sizeof(u32_SubmitPlayerResultResultCallback_t().steamIDPlayer) >= 8 ); +#ifdef __x86_64__ +w64_SubmitPlayerResultResultCallback_t::operator u64_SubmitPlayerResultResultCallback_t() const +{ + u64_SubmitPlayerResultResultCallback_t ret; + ret.m_eResult = this->m_eResult; + ret.ullUniqueGameID = this->ullUniqueGameID; + ret.steamIDPlayer = this->steamIDPlayer; + return ret; +} + +u64_SubmitPlayerResultResultCallback_t::operator w64_SubmitPlayerResultResultCallback_t() const +{ + w64_SubmitPlayerResultResultCallback_t ret; + ret.m_eResult = this->m_eResult; + ret.ullUniqueGameID = this->ullUniqueGameID; + ret.steamIDPlayer = this->steamIDPlayer; + return ret; +} +#endif + +#ifdef __i386__ +w32_SubmitPlayerResultResultCallback_t::operator u32_SubmitPlayerResultResultCallback_t() const +{ + u32_SubmitPlayerResultResultCallback_t ret; + ret.m_eResult = this->m_eResult; + ret.ullUniqueGameID = this->ullUniqueGameID; + ret.steamIDPlayer = this->steamIDPlayer; + return ret; +} + +u32_SubmitPlayerResultResultCallback_t::operator w32_SubmitPlayerResultResultCallback_t() const +{ + w32_SubmitPlayerResultResultCallback_t ret; + ret.m_eResult = this->m_eResult; + ret.ullUniqueGameID = this->ullUniqueGameID; + ret.steamIDPlayer = this->steamIDPlayer; + return ret; +} +#endif +