From 8cd16ffc70a250aba29562325578bfbe29d6ad4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Bernon?= Date: Thu, 16 Jan 2025 01:32:23 +0100 Subject: [PATCH] lsteamclient: Simplify the struct converter code generation. --- lsteamclient/gen_wrapper.py | 47 +- lsteamclient/unixlib_generated.cpp | 5770 +++++++++++++--------------- lsteamclient/unixlib_generated.h | 28 +- lsteamclient/winISteamFriends.c | 20 +- lsteamclient/winISteamRemotePlay.c | 2 +- lsteamclient/winISteamUserStats.c | 6 +- 6 files changed, 2664 insertions(+), 3209 deletions(-) diff --git a/lsteamclient/gen_wrapper.py b/lsteamclient/gen_wrapper.py index 3d9f2a38..5a213a18 100755 --- a/lsteamclient/gen_wrapper.py +++ b/lsteamclient/gen_wrapper.py @@ -478,8 +478,6 @@ class BasicType: return False -written_converters = set() - class Struct: def __init__(self, sdkver, abi, cursor): self._cursor = cursor @@ -580,21 +578,6 @@ class Struct: def write_converter(self, prefix, path_conv_fields): version = all_versions[sdkver][self.name] - from_abi = self._abi[0] - func_name = f'{version}_{prefix[0]}_from_{from_abi}' - if not func_name in written_converters: - written_converters.add(func_name) - out(f'static void {func_name}(void *dst, const void *src)\n') - out(u'{\n') - out(f' {prefix[0]}_{version} *d = ({prefix[0]}_{version} *)dst;\n') - out(f' const {from_abi}_{version} *s = (const {from_abi}_{version} *)src;\n\n') - for field in self.fields: - if field.name not in path_conv_fields: - out(f' d->{field.name} = s->{field.name};\n') - else: - out(f' steamclient_unix_path_to_dos_path(1, s->{field.name}, g_tmppath, TEMP_PATH_BUFFER_LENGTH, 1);\n') - out(f' d->{field.name} = g_tmppath;\n') - out(u'}\n') if self._abi[1:3] == '64': out(u'#ifdef __x86_64__\n') @@ -606,7 +589,12 @@ class Struct: out(f'{self._abi}_{version}::operator {prefix}{version}() const\n') out(u'{\n') out(f' {prefix}{version} ret;\n') - out(f' {func_name}((void *)&ret, (const void *)this);\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, TEMP_PATH_BUFFER_LENGTH, 1);\n') + out(f' ret.{field.name} = g_tmppath;\n') out(u' return ret;\n') out(u'}\n') out(u'#endif\n\n') @@ -1701,14 +1689,17 @@ with open('unixlib_generated.cpp', 'w') as file: if abis["w64"].needs_conversion(abis["u64"]): abis['w64'].write_converter('u64_', {}) - out(u'\n') abis['u64'].write_converter('w64_', path_conv_fields) if abis["w32"].needs_conversion(abis["u32"]): abis['w32'].write_converter('u32_', {}) - out(u'\n') abis['u32'].write_converter('w32_', path_conv_fields) + out(f'static void {version}_utow(void *dst, const void *src)\n') + out(u'{\n') + out(f' *(w_{version} *)dst = *(const u_{version} *)src;\n') + out(u'}\n\n') + out(u'#ifdef __i386__\n') out(u'const struct callback_def callback_data[] =\n{\n'); values = set() @@ -1716,14 +1707,10 @@ with open('unixlib_generated.cpp', 'w') as file: name, value = abis["u32"].name, (cbid, abis["w32"].size, abis["u32"].size) if name in all_versions[sdkver]: name = all_versions[sdkver][name] - w_from_u = f'{name}_w_from_u' - if not w_from_u in written_converters: - w_from_u = u'nullptr' - if value not in values: - out(f' {{ {cbid}, {sdkver}, {abis["w32"].size}, {abis["u32"].size}, {w_from_u} }},\n') + out(f' {{ {cbid}, {sdkver}, {abis["w32"].size}, {abis["u32"].size}, {name}_utow }},\n') else: - out(f' /*{{ {cbid}, {sdkver}, {abis["w32"].size}, {abis["u32"].size}, {w_from_u} }},*/\n') + out(f' /*{{ {cbid}, {sdkver}, {abis["w32"].size}, {abis["u32"].size}, {name}_utow }},*/\n') values.add(value) out(u'};\n'); out(u'#endif\n') @@ -1734,14 +1721,10 @@ with open('unixlib_generated.cpp', 'w') as file: name, value = abis["u64"].name, (cbid, abis["w64"].size, abis["u64"].size) if name in all_versions[sdkver]: name = all_versions[sdkver][name] - w_from_u = f'{name}_w_from_u' - if not w_from_u in written_converters: - w_from_u = u'nullptr' - if value not in values: - out(f' {{ {cbid}, {sdkver}, {abis["w64"].size}, {abis["u64"].size}, {w_from_u} }},\n') + out(f' {{ {cbid}, {sdkver}, {abis["w64"].size}, {abis["u64"].size}, {name}_utow }},\n') else: - out(f' /*{{ {cbid}, {sdkver}, {abis["w64"].size}, {abis["u64"].size}, {w_from_u} }},*/\n') + out(f' /*{{ {cbid}, {sdkver}, {abis["w64"].size}, {abis["u64"].size}, {name}_utow }},*/\n') values.add(value) out(u'};\n'); out(u'#endif\n') diff --git a/lsteamclient/unixlib_generated.cpp b/lsteamclient/unixlib_generated.cpp index 945cac16..e27750d7 100644 --- a/lsteamclient/unixlib_generated.cpp +++ b/lsteamclient/unixlib_generated.cpp @@ -8742,87 +8742,72 @@ 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 ); -static void SteamUGCDetails_t_160_u_from_w(void *dst, const void *src) -{ - u_SteamUGCDetails_t_160 *d = (u_SteamUGCDetails_t_160 *)dst; - const w_SteamUGCDetails_t_160 *s = (const w_SteamUGCDetails_t_160 *)src; - - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_eResult = s->m_eResult; - d->m_eFileType = s->m_eFileType; - d->m_nCreatorAppID = s->m_nCreatorAppID; - d->m_nConsumerAppID = s->m_nConsumerAppID; - d->m_rgchTitle = s->m_rgchTitle; - d->m_rgchDescription = s->m_rgchDescription; - d->m_ulSteamIDOwner = s->m_ulSteamIDOwner; - d->m_rtimeCreated = s->m_rtimeCreated; - d->m_rtimeUpdated = s->m_rtimeUpdated; - d->m_rtimeAddedToUserList = s->m_rtimeAddedToUserList; - d->m_eVisibility = s->m_eVisibility; - d->m_bBanned = s->m_bBanned; - d->m_bAcceptedForUse = s->m_bAcceptedForUse; - d->m_bTagsTruncated = s->m_bTagsTruncated; - d->m_rgchTags = s->m_rgchTags; - d->m_hFile = s->m_hFile; - d->m_hPreviewFile = s->m_hPreviewFile; - d->m_pchFileName = s->m_pchFileName; - d->m_nFileSize = s->m_nFileSize; - d->m_nPreviewFileSize = s->m_nPreviewFileSize; - d->m_rgchURL = s->m_rgchURL; - d->m_unVotesUp = s->m_unVotesUp; - d->m_unVotesDown = s->m_unVotesDown; - d->m_flScore = s->m_flScore; - d->m_unNumChildren = s->m_unNumChildren; - d->m_ulTotalFilesSize = s->m_ulTotalFilesSize; -} #ifdef __x86_64__ w64_SteamUGCDetails_t_160::operator u64_SteamUGCDetails_t_160() const { u64_SteamUGCDetails_t_160 ret; - SteamUGCDetails_t_160_u_from_w((void *)&ret, (const void *)this); + 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; + ret.m_ulTotalFilesSize = this->m_ulTotalFilesSize; return ret; } #endif - -static void SteamUGCDetails_t_160_w_from_u(void *dst, const void *src) -{ - w_SteamUGCDetails_t_160 *d = (w_SteamUGCDetails_t_160 *)dst; - const u_SteamUGCDetails_t_160 *s = (const u_SteamUGCDetails_t_160 *)src; - - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_eResult = s->m_eResult; - d->m_eFileType = s->m_eFileType; - d->m_nCreatorAppID = s->m_nCreatorAppID; - d->m_nConsumerAppID = s->m_nConsumerAppID; - d->m_rgchTitle = s->m_rgchTitle; - d->m_rgchDescription = s->m_rgchDescription; - d->m_ulSteamIDOwner = s->m_ulSteamIDOwner; - d->m_rtimeCreated = s->m_rtimeCreated; - d->m_rtimeUpdated = s->m_rtimeUpdated; - d->m_rtimeAddedToUserList = s->m_rtimeAddedToUserList; - d->m_eVisibility = s->m_eVisibility; - d->m_bBanned = s->m_bBanned; - d->m_bAcceptedForUse = s->m_bAcceptedForUse; - d->m_bTagsTruncated = s->m_bTagsTruncated; - d->m_rgchTags = s->m_rgchTags; - d->m_hFile = s->m_hFile; - d->m_hPreviewFile = s->m_hPreviewFile; - d->m_pchFileName = s->m_pchFileName; - d->m_nFileSize = s->m_nFileSize; - d->m_nPreviewFileSize = s->m_nPreviewFileSize; - d->m_rgchURL = s->m_rgchURL; - d->m_unVotesUp = s->m_unVotesUp; - d->m_unVotesDown = s->m_unVotesDown; - d->m_flScore = s->m_flScore; - d->m_unNumChildren = s->m_unNumChildren; - d->m_ulTotalFilesSize = s->m_ulTotalFilesSize; -} #ifdef __x86_64__ u64_SteamUGCDetails_t_160::operator w64_SteamUGCDetails_t_160() const { w64_SteamUGCDetails_t_160 ret; - SteamUGCDetails_t_160_w_from_u((void *)&ret, (const void *)this); + 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; + ret.m_ulTotalFilesSize = this->m_ulTotalFilesSize; return ret; } #endif @@ -8831,100 +8816,141 @@ u64_SteamUGCDetails_t_160::operator w64_SteamUGCDetails_t_160() const w32_SteamUGCDetails_t_160::operator u32_SteamUGCDetails_t_160() const { u32_SteamUGCDetails_t_160 ret; - SteamUGCDetails_t_160_u_from_w((void *)&ret, (const void *)this); + 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; + ret.m_ulTotalFilesSize = this->m_ulTotalFilesSize; return ret; } #endif - #ifdef __i386__ u32_SteamUGCDetails_t_160::operator w32_SteamUGCDetails_t_160() const { w32_SteamUGCDetails_t_160 ret; - SteamUGCDetails_t_160_w_from_u((void *)&ret, (const void *)this); + 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; + ret.m_ulTotalFilesSize = this->m_ulTotalFilesSize; return ret; } #endif -static void SteamUGCDetails_t_128x_u_from_w(void *dst, const void *src) +static void SteamUGCDetails_t_160_utow(void *dst, const void *src) { - u_SteamUGCDetails_t_128x *d = (u_SteamUGCDetails_t_128x *)dst; - const w_SteamUGCDetails_t_128x *s = (const w_SteamUGCDetails_t_128x *)src; - - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_eResult = s->m_eResult; - d->m_eFileType = s->m_eFileType; - d->m_nCreatorAppID = s->m_nCreatorAppID; - d->m_nConsumerAppID = s->m_nConsumerAppID; - d->m_rgchTitle = s->m_rgchTitle; - d->m_rgchDescription = s->m_rgchDescription; - d->m_ulSteamIDOwner = s->m_ulSteamIDOwner; - d->m_rtimeCreated = s->m_rtimeCreated; - d->m_rtimeUpdated = s->m_rtimeUpdated; - d->m_rtimeAddedToUserList = s->m_rtimeAddedToUserList; - d->m_eVisibility = s->m_eVisibility; - d->m_bBanned = s->m_bBanned; - d->m_bAcceptedForUse = s->m_bAcceptedForUse; - d->m_bTagsTruncated = s->m_bTagsTruncated; - d->m_rgchTags = s->m_rgchTags; - d->m_hFile = s->m_hFile; - d->m_hPreviewFile = s->m_hPreviewFile; - d->m_pchFileName = s->m_pchFileName; - d->m_nFileSize = s->m_nFileSize; - d->m_nPreviewFileSize = s->m_nPreviewFileSize; - d->m_rgchURL = s->m_rgchURL; - d->m_unVotesUp = s->m_unVotesUp; - d->m_unVotesDown = s->m_unVotesDown; - d->m_flScore = s->m_flScore; - d->m_unNumChildren = s->m_unNumChildren; + *(w_SteamUGCDetails_t_160 *)dst = *(const u_SteamUGCDetails_t_160 *)src; } + #ifdef __x86_64__ w64_SteamUGCDetails_t_128x::operator u64_SteamUGCDetails_t_128x() const { u64_SteamUGCDetails_t_128x ret; - SteamUGCDetails_t_128x_u_from_w((void *)&ret, (const void *)this); + 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 - -static void SteamUGCDetails_t_128x_w_from_u(void *dst, const void *src) -{ - w_SteamUGCDetails_t_128x *d = (w_SteamUGCDetails_t_128x *)dst; - const u_SteamUGCDetails_t_128x *s = (const u_SteamUGCDetails_t_128x *)src; - - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_eResult = s->m_eResult; - d->m_eFileType = s->m_eFileType; - d->m_nCreatorAppID = s->m_nCreatorAppID; - d->m_nConsumerAppID = s->m_nConsumerAppID; - d->m_rgchTitle = s->m_rgchTitle; - d->m_rgchDescription = s->m_rgchDescription; - d->m_ulSteamIDOwner = s->m_ulSteamIDOwner; - d->m_rtimeCreated = s->m_rtimeCreated; - d->m_rtimeUpdated = s->m_rtimeUpdated; - d->m_rtimeAddedToUserList = s->m_rtimeAddedToUserList; - d->m_eVisibility = s->m_eVisibility; - d->m_bBanned = s->m_bBanned; - d->m_bAcceptedForUse = s->m_bAcceptedForUse; - d->m_bTagsTruncated = s->m_bTagsTruncated; - d->m_rgchTags = s->m_rgchTags; - d->m_hFile = s->m_hFile; - d->m_hPreviewFile = s->m_hPreviewFile; - d->m_pchFileName = s->m_pchFileName; - d->m_nFileSize = s->m_nFileSize; - d->m_nPreviewFileSize = s->m_nPreviewFileSize; - d->m_rgchURL = s->m_rgchURL; - d->m_unVotesUp = s->m_unVotesUp; - d->m_unVotesDown = s->m_unVotesDown; - d->m_flScore = s->m_flScore; - d->m_unNumChildren = s->m_unNumChildren; -} #ifdef __x86_64__ u64_SteamUGCDetails_t_128x::operator w64_SteamUGCDetails_t_128x() const { w64_SteamUGCDetails_t_128x ret; - SteamUGCDetails_t_128x_w_from_u((void *)&ret, (const void *)this); + 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 @@ -8933,98 +8959,137 @@ u64_SteamUGCDetails_t_128x::operator w64_SteamUGCDetails_t_128x() const w32_SteamUGCDetails_t_128x::operator u32_SteamUGCDetails_t_128x() const { u32_SteamUGCDetails_t_128x ret; - SteamUGCDetails_t_128x_u_from_w((void *)&ret, (const void *)this); + 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__ u32_SteamUGCDetails_t_128x::operator w32_SteamUGCDetails_t_128x() const { w32_SteamUGCDetails_t_128x ret; - SteamUGCDetails_t_128x_w_from_u((void *)&ret, (const void *)this); + 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 -static void SteamUGCDetails_t_126_u_from_w(void *dst, const void *src) +static void SteamUGCDetails_t_128x_utow(void *dst, const void *src) { - u_SteamUGCDetails_t_126 *d = (u_SteamUGCDetails_t_126 *)dst; - const w_SteamUGCDetails_t_126 *s = (const w_SteamUGCDetails_t_126 *)src; - - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_eResult = s->m_eResult; - d->m_eFileType = s->m_eFileType; - d->m_nCreatorAppID = s->m_nCreatorAppID; - d->m_nConsumerAppID = s->m_nConsumerAppID; - d->m_rgchTitle = s->m_rgchTitle; - d->m_rgchDescription = s->m_rgchDescription; - d->m_ulSteamIDOwner = s->m_ulSteamIDOwner; - d->m_rtimeCreated = s->m_rtimeCreated; - d->m_rtimeUpdated = s->m_rtimeUpdated; - d->m_rtimeAddedToUserList = s->m_rtimeAddedToUserList; - d->m_eVisibility = s->m_eVisibility; - d->m_bBanned = s->m_bBanned; - d->m_bAcceptedForUse = s->m_bAcceptedForUse; - d->m_bTagsTruncated = s->m_bTagsTruncated; - d->m_rgchTags = s->m_rgchTags; - d->m_hFile = s->m_hFile; - d->m_hPreviewFile = s->m_hPreviewFile; - d->m_pchFileName = s->m_pchFileName; - d->m_nFileSize = s->m_nFileSize; - d->m_nPreviewFileSize = s->m_nPreviewFileSize; - d->m_rgchURL = s->m_rgchURL; - d->m_unVotesUp = s->m_unVotesUp; - d->m_unVotesDown = s->m_unVotesDown; - d->m_flScore = s->m_flScore; + *(w_SteamUGCDetails_t_128x *)dst = *(const u_SteamUGCDetails_t_128x *)src; } + #ifdef __x86_64__ w64_SteamUGCDetails_t_126::operator u64_SteamUGCDetails_t_126() const { u64_SteamUGCDetails_t_126 ret; - SteamUGCDetails_t_126_u_from_w((void *)&ret, (const void *)this); + 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 - -static void SteamUGCDetails_t_126_w_from_u(void *dst, const void *src) -{ - w_SteamUGCDetails_t_126 *d = (w_SteamUGCDetails_t_126 *)dst; - const u_SteamUGCDetails_t_126 *s = (const u_SteamUGCDetails_t_126 *)src; - - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_eResult = s->m_eResult; - d->m_eFileType = s->m_eFileType; - d->m_nCreatorAppID = s->m_nCreatorAppID; - d->m_nConsumerAppID = s->m_nConsumerAppID; - d->m_rgchTitle = s->m_rgchTitle; - d->m_rgchDescription = s->m_rgchDescription; - d->m_ulSteamIDOwner = s->m_ulSteamIDOwner; - d->m_rtimeCreated = s->m_rtimeCreated; - d->m_rtimeUpdated = s->m_rtimeUpdated; - d->m_rtimeAddedToUserList = s->m_rtimeAddedToUserList; - d->m_eVisibility = s->m_eVisibility; - d->m_bBanned = s->m_bBanned; - d->m_bAcceptedForUse = s->m_bAcceptedForUse; - d->m_bTagsTruncated = s->m_bTagsTruncated; - d->m_rgchTags = s->m_rgchTags; - d->m_hFile = s->m_hFile; - d->m_hPreviewFile = s->m_hPreviewFile; - d->m_pchFileName = s->m_pchFileName; - d->m_nFileSize = s->m_nFileSize; - d->m_nPreviewFileSize = s->m_nPreviewFileSize; - d->m_rgchURL = s->m_rgchURL; - d->m_unVotesUp = s->m_unVotesUp; - d->m_unVotesDown = s->m_unVotesDown; - d->m_flScore = s->m_flScore; -} #ifdef __x86_64__ u64_SteamUGCDetails_t_126::operator w64_SteamUGCDetails_t_126() const { w64_SteamUGCDetails_t_126 ret; - SteamUGCDetails_t_126_w_from_u((void *)&ret, (const void *)this); + 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 @@ -9033,21 +9098,73 @@ u64_SteamUGCDetails_t_126::operator w64_SteamUGCDetails_t_126() const w32_SteamUGCDetails_t_126::operator u32_SteamUGCDetails_t_126() const { u32_SteamUGCDetails_t_126 ret; - SteamUGCDetails_t_126_u_from_w((void *)&ret, (const void *)this); + 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__ u32_SteamUGCDetails_t_126::operator w32_SteamUGCDetails_t_126() const { w32_SteamUGCDetails_t_126 ret; - SteamUGCDetails_t_126_w_from_u((void *)&ret, (const void *)this); + 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 +static void SteamUGCDetails_t_126_utow(void *dst, const void *src) +{ + *(w_SteamUGCDetails_t_126 *)dst = *(const u_SteamUGCDetails_t_126 *)src; +} + 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 ); @@ -9080,39 +9197,24 @@ 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 ); -static void AddAppDependencyResult_t_u_from_w(void *dst, const void *src) -{ - u_AddAppDependencyResult_t *d = (u_AddAppDependencyResult_t *)dst; - const w_AddAppDependencyResult_t *s = (const w_AddAppDependencyResult_t *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_nAppID = s->m_nAppID; -} #ifdef __x86_64__ w64_AddAppDependencyResult_t::operator u64_AddAppDependencyResult_t() const { u64_AddAppDependencyResult_t ret; - AddAppDependencyResult_t_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nAppID = this->m_nAppID; return ret; } #endif - -static void AddAppDependencyResult_t_w_from_u(void *dst, const void *src) -{ - w_AddAppDependencyResult_t *d = (w_AddAppDependencyResult_t *)dst; - const u_AddAppDependencyResult_t *s = (const u_AddAppDependencyResult_t *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_nAppID = s->m_nAppID; -} #ifdef __x86_64__ u64_AddAppDependencyResult_t::operator w64_AddAppDependencyResult_t() const { w64_AddAppDependencyResult_t ret; - AddAppDependencyResult_t_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nAppID = this->m_nAppID; return ret; } #endif @@ -9121,21 +9223,29 @@ u64_AddAppDependencyResult_t::operator w64_AddAppDependencyResult_t() const w32_AddAppDependencyResult_t::operator u32_AddAppDependencyResult_t() const { u32_AddAppDependencyResult_t ret; - AddAppDependencyResult_t_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nAppID = this->m_nAppID; return ret; } #endif - #ifdef __i386__ u32_AddAppDependencyResult_t::operator w32_AddAppDependencyResult_t() const { w32_AddAppDependencyResult_t ret; - AddAppDependencyResult_t_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nAppID = this->m_nAppID; return ret; } #endif +static void AddAppDependencyResult_t_utow(void *dst, const void *src) +{ + *(w_AddAppDependencyResult_t *)dst = *(const u_AddAppDependencyResult_t *)src; +} + 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 ); @@ -9168,39 +9278,24 @@ 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 ); -static void AddUGCDependencyResult_t_u_from_w(void *dst, const void *src) -{ - u_AddUGCDependencyResult_t *d = (u_AddUGCDependencyResult_t *)dst; - const w_AddUGCDependencyResult_t *s = (const w_AddUGCDependencyResult_t *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_nChildPublishedFileId = s->m_nChildPublishedFileId; -} #ifdef __x86_64__ w64_AddUGCDependencyResult_t::operator u64_AddUGCDependencyResult_t() const { u64_AddUGCDependencyResult_t ret; - AddUGCDependencyResult_t_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nChildPublishedFileId = this->m_nChildPublishedFileId; return ret; } #endif - -static void AddUGCDependencyResult_t_w_from_u(void *dst, const void *src) -{ - w_AddUGCDependencyResult_t *d = (w_AddUGCDependencyResult_t *)dst; - const u_AddUGCDependencyResult_t *s = (const u_AddUGCDependencyResult_t *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_nChildPublishedFileId = s->m_nChildPublishedFileId; -} #ifdef __x86_64__ u64_AddUGCDependencyResult_t::operator w64_AddUGCDependencyResult_t() const { w64_AddUGCDependencyResult_t ret; - AddUGCDependencyResult_t_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nChildPublishedFileId = this->m_nChildPublishedFileId; return ret; } #endif @@ -9209,21 +9304,29 @@ u64_AddUGCDependencyResult_t::operator w64_AddUGCDependencyResult_t() const w32_AddUGCDependencyResult_t::operator u32_AddUGCDependencyResult_t() const { u32_AddUGCDependencyResult_t ret; - AddUGCDependencyResult_t_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nChildPublishedFileId = this->m_nChildPublishedFileId; return ret; } #endif - #ifdef __i386__ u32_AddUGCDependencyResult_t::operator w32_AddUGCDependencyResult_t() const { w32_AddUGCDependencyResult_t ret; - AddUGCDependencyResult_t_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nChildPublishedFileId = this->m_nChildPublishedFileId; return ret; } #endif +static void AddUGCDependencyResult_t_utow(void *dst, const void *src) +{ + *(w_AddUGCDependencyResult_t *)dst = *(const u_AddUGCDependencyResult_t *)src; +} + C_ASSERT( sizeof(w64_CSteamAPIContext_141) >= 176 ); C_ASSERT( offsetof(w64_CSteamAPIContext_141, m_pSteamClient) == 0 ); C_ASSERT( sizeof(w64_CSteamAPIContext_141().m_pSteamClient) >= 8 ); @@ -9976,6 +10079,26 @@ C_ASSERT( sizeof(u32_CSteamAPIContext_137().m_pSteamVideo) >= 4 ); C_ASSERT( offsetof(u32_CSteamAPIContext_137, m_pSteamParentalSettings) == 80 ); C_ASSERT( sizeof(u32_CSteamAPIContext_137().m_pSteamParentalSettings) >= 4 ); +static void CSteamAPIContext_141_utow(void *dst, const void *src) +{ + *(w_CSteamAPIContext_141 *)dst = *(const u_CSteamAPIContext_141 *)src; +} + +static void CSteamAPIContext_143_utow(void *dst, const void *src) +{ + *(w_CSteamAPIContext_143 *)dst = *(const u_CSteamAPIContext_143 *)src; +} + +static void CSteamAPIContext_145_utow(void *dst, const void *src) +{ + *(w_CSteamAPIContext_145 *)dst = *(const u_CSteamAPIContext_145 *)src; +} + +static void CSteamAPIContext_137_utow(void *dst, const void *src) +{ + *(w_CSteamAPIContext_137 *)dst = *(const u_CSteamAPIContext_137 *)src; +} + C_ASSERT( sizeof(w64_CSteamGameServerAPIContext_152) >= 64 ); C_ASSERT( offsetof(w64_CSteamGameServerAPIContext_152, m_pSteamClient) == 0 ); C_ASSERT( sizeof(w64_CSteamGameServerAPIContext_152().m_pSteamClient) >= 8 ); @@ -10128,6 +10251,16 @@ C_ASSERT( sizeof(u32_CSteamGameServerAPIContext_143().m_pSteamUGC) >= 4 ); C_ASSERT( offsetof(u32_CSteamGameServerAPIContext_143, m_pSteamApps) == 32 ); C_ASSERT( sizeof(u32_CSteamGameServerAPIContext_143().m_pSteamApps) >= 4 ); +static void CSteamGameServerAPIContext_152_utow(void *dst, const void *src) +{ + *(w_CSteamGameServerAPIContext_152 *)dst = *(const u_CSteamGameServerAPIContext_152 *)src; +} + +static void CSteamGameServerAPIContext_143_utow(void *dst, const void *src) +{ + *(w_CSteamGameServerAPIContext_143 *)dst = *(const u_CSteamGameServerAPIContext_143 *)src; +} + C_ASSERT( sizeof(w64_CallbackMsg_t) >= 24 ); C_ASSERT( offsetof(w64_CallbackMsg_t, m_hSteamUser) == 0 ); C_ASSERT( sizeof(w64_CallbackMsg_t().m_hSteamUser) >= 4 ); @@ -10168,6 +10301,11 @@ C_ASSERT( sizeof(u32_CallbackMsg_t().m_pubParam) >= 4 ); C_ASSERT( offsetof(u32_CallbackMsg_t, m_cubParam) == 12 ); C_ASSERT( sizeof(u32_CallbackMsg_t().m_cubParam) >= 4 ); +static void CallbackMsg_t_utow(void *dst, const void *src) +{ + *(w_CallbackMsg_t *)dst = *(const u_CallbackMsg_t *)src; +} + C_ASSERT( sizeof(w64_CreateBeaconCallback_t) >= 16 ); C_ASSERT( offsetof(w64_CreateBeaconCallback_t, m_eResult) == 0 ); C_ASSERT( sizeof(w64_CreateBeaconCallback_t().m_eResult) >= 4 ); @@ -10192,37 +10330,22 @@ 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 ); -static void CreateBeaconCallback_t_u_from_w(void *dst, const void *src) -{ - u_CreateBeaconCallback_t *d = (u_CreateBeaconCallback_t *)dst; - const w_CreateBeaconCallback_t *s = (const w_CreateBeaconCallback_t *)src; - - d->m_eResult = s->m_eResult; - d->m_ulBeaconID = s->m_ulBeaconID; -} #ifdef __x86_64__ w64_CreateBeaconCallback_t::operator u64_CreateBeaconCallback_t() const { u64_CreateBeaconCallback_t ret; - CreateBeaconCallback_t_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_ulBeaconID = this->m_ulBeaconID; return ret; } #endif - -static void CreateBeaconCallback_t_w_from_u(void *dst, const void *src) -{ - w_CreateBeaconCallback_t *d = (w_CreateBeaconCallback_t *)dst; - const u_CreateBeaconCallback_t *s = (const u_CreateBeaconCallback_t *)src; - - d->m_eResult = s->m_eResult; - d->m_ulBeaconID = s->m_ulBeaconID; -} #ifdef __x86_64__ u64_CreateBeaconCallback_t::operator w64_CreateBeaconCallback_t() const { w64_CreateBeaconCallback_t ret; - CreateBeaconCallback_t_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_ulBeaconID = this->m_ulBeaconID; return ret; } #endif @@ -10231,21 +10354,27 @@ u64_CreateBeaconCallback_t::operator w64_CreateBeaconCallback_t() const w32_CreateBeaconCallback_t::operator u32_CreateBeaconCallback_t() const { u32_CreateBeaconCallback_t ret; - CreateBeaconCallback_t_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_ulBeaconID = this->m_ulBeaconID; return ret; } #endif - #ifdef __i386__ u32_CreateBeaconCallback_t::operator w32_CreateBeaconCallback_t() const { w32_CreateBeaconCallback_t ret; - CreateBeaconCallback_t_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_ulBeaconID = this->m_ulBeaconID; return ret; } #endif +static void CreateBeaconCallback_t_utow(void *dst, const void *src) +{ + *(w_CreateBeaconCallback_t *)dst = *(const u_CreateBeaconCallback_t *)src; +} + 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 ); @@ -10278,39 +10407,24 @@ 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 ); -static void CreateItemResult_t_u_from_w(void *dst, const void *src) -{ - u_CreateItemResult_t *d = (u_CreateItemResult_t *)dst; - const w_CreateItemResult_t *s = (const w_CreateItemResult_t *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_bUserNeedsToAcceptWorkshopLegalAgreement = s->m_bUserNeedsToAcceptWorkshopLegalAgreement; -} #ifdef __x86_64__ w64_CreateItemResult_t::operator u64_CreateItemResult_t() const { u64_CreateItemResult_t ret; - CreateItemResult_t_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_bUserNeedsToAcceptWorkshopLegalAgreement = this->m_bUserNeedsToAcceptWorkshopLegalAgreement; return ret; } #endif - -static void CreateItemResult_t_w_from_u(void *dst, const void *src) -{ - w_CreateItemResult_t *d = (w_CreateItemResult_t *)dst; - const u_CreateItemResult_t *s = (const u_CreateItemResult_t *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_bUserNeedsToAcceptWorkshopLegalAgreement = s->m_bUserNeedsToAcceptWorkshopLegalAgreement; -} #ifdef __x86_64__ u64_CreateItemResult_t::operator w64_CreateItemResult_t() const { w64_CreateItemResult_t ret; - CreateItemResult_t_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_bUserNeedsToAcceptWorkshopLegalAgreement = this->m_bUserNeedsToAcceptWorkshopLegalAgreement; return ret; } #endif @@ -10319,21 +10433,29 @@ u64_CreateItemResult_t::operator w64_CreateItemResult_t() const w32_CreateItemResult_t::operator u32_CreateItemResult_t() const { u32_CreateItemResult_t ret; - CreateItemResult_t_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_bUserNeedsToAcceptWorkshopLegalAgreement = this->m_bUserNeedsToAcceptWorkshopLegalAgreement; return ret; } #endif - #ifdef __i386__ u32_CreateItemResult_t::operator w32_CreateItemResult_t() const { w32_CreateItemResult_t ret; - CreateItemResult_t_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_bUserNeedsToAcceptWorkshopLegalAgreement = this->m_bUserNeedsToAcceptWorkshopLegalAgreement; return ret; } #endif +static void CreateItemResult_t_utow(void *dst, const void *src) +{ + *(w_CreateItemResult_t *)dst = *(const u_CreateItemResult_t *)src; +} + 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 ); @@ -10358,37 +10480,22 @@ 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 ); -static void DeleteItemResult_t_u_from_w(void *dst, const void *src) -{ - u_DeleteItemResult_t *d = (u_DeleteItemResult_t *)dst; - const w_DeleteItemResult_t *s = (const w_DeleteItemResult_t *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; -} #ifdef __x86_64__ w64_DeleteItemResult_t::operator u64_DeleteItemResult_t() const { u64_DeleteItemResult_t ret; - DeleteItemResult_t_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; return ret; } #endif - -static void DeleteItemResult_t_w_from_u(void *dst, const void *src) -{ - w_DeleteItemResult_t *d = (w_DeleteItemResult_t *)dst; - const u_DeleteItemResult_t *s = (const u_DeleteItemResult_t *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; -} #ifdef __x86_64__ u64_DeleteItemResult_t::operator w64_DeleteItemResult_t() const { w64_DeleteItemResult_t ret; - DeleteItemResult_t_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; return ret; } #endif @@ -10397,21 +10504,27 @@ u64_DeleteItemResult_t::operator w64_DeleteItemResult_t() const w32_DeleteItemResult_t::operator u32_DeleteItemResult_t() const { u32_DeleteItemResult_t ret; - DeleteItemResult_t_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; return ret; } #endif - #ifdef __i386__ u32_DeleteItemResult_t::operator w32_DeleteItemResult_t() const { w32_DeleteItemResult_t ret; - DeleteItemResult_t_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; return ret; } #endif +static void DeleteItemResult_t_utow(void *dst, const void *src) +{ + *(w_DeleteItemResult_t *)dst = *(const u_DeleteItemResult_t *)src; +} + 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 ); @@ -10444,39 +10557,24 @@ 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 ); -static void DownloadItemResult_t_u_from_w(void *dst, const void *src) -{ - u_DownloadItemResult_t *d = (u_DownloadItemResult_t *)dst; - const w_DownloadItemResult_t *s = (const w_DownloadItemResult_t *)src; - - d->m_unAppID = s->m_unAppID; - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_eResult = s->m_eResult; -} #ifdef __x86_64__ w64_DownloadItemResult_t::operator u64_DownloadItemResult_t() const { u64_DownloadItemResult_t ret; - DownloadItemResult_t_u_from_w((void *)&ret, (const void *)this); + ret.m_unAppID = this->m_unAppID; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_eResult = this->m_eResult; return ret; } #endif - -static void DownloadItemResult_t_w_from_u(void *dst, const void *src) -{ - w_DownloadItemResult_t *d = (w_DownloadItemResult_t *)dst; - const u_DownloadItemResult_t *s = (const u_DownloadItemResult_t *)src; - - d->m_unAppID = s->m_unAppID; - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_eResult = s->m_eResult; -} #ifdef __x86_64__ u64_DownloadItemResult_t::operator w64_DownloadItemResult_t() const { w64_DownloadItemResult_t ret; - DownloadItemResult_t_w_from_u((void *)&ret, (const void *)this); + ret.m_unAppID = this->m_unAppID; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_eResult = this->m_eResult; return ret; } #endif @@ -10485,21 +10583,29 @@ u64_DownloadItemResult_t::operator w64_DownloadItemResult_t() const w32_DownloadItemResult_t::operator u32_DownloadItemResult_t() const { u32_DownloadItemResult_t ret; - DownloadItemResult_t_u_from_w((void *)&ret, (const void *)this); + ret.m_unAppID = this->m_unAppID; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_eResult = this->m_eResult; return ret; } #endif - #ifdef __i386__ u32_DownloadItemResult_t::operator w32_DownloadItemResult_t() const { w32_DownloadItemResult_t ret; - DownloadItemResult_t_w_from_u((void *)&ret, (const void *)this); + ret.m_unAppID = this->m_unAppID; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_eResult = this->m_eResult; return ret; } #endif +static void DownloadItemResult_t_utow(void *dst, const void *src) +{ + *(w_DownloadItemResult_t *)dst = *(const u_DownloadItemResult_t *)src; +} + 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 ); @@ -10524,37 +10630,22 @@ 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 ); -static void EndGameResultCallback_t_u_from_w(void *dst, const void *src) -{ - u_EndGameResultCallback_t *d = (u_EndGameResultCallback_t *)dst; - const w_EndGameResultCallback_t *s = (const w_EndGameResultCallback_t *)src; - - d->m_eResult = s->m_eResult; - d->ullUniqueGameID = s->ullUniqueGameID; -} #ifdef __x86_64__ w64_EndGameResultCallback_t::operator u64_EndGameResultCallback_t() const { u64_EndGameResultCallback_t ret; - EndGameResultCallback_t_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.ullUniqueGameID = this->ullUniqueGameID; return ret; } #endif - -static void EndGameResultCallback_t_w_from_u(void *dst, const void *src) -{ - w_EndGameResultCallback_t *d = (w_EndGameResultCallback_t *)dst; - const u_EndGameResultCallback_t *s = (const u_EndGameResultCallback_t *)src; - - d->m_eResult = s->m_eResult; - d->ullUniqueGameID = s->ullUniqueGameID; -} #ifdef __x86_64__ u64_EndGameResultCallback_t::operator w64_EndGameResultCallback_t() const { w64_EndGameResultCallback_t ret; - EndGameResultCallback_t_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.ullUniqueGameID = this->ullUniqueGameID; return ret; } #endif @@ -10563,21 +10654,27 @@ u64_EndGameResultCallback_t::operator w64_EndGameResultCallback_t() const w32_EndGameResultCallback_t::operator u32_EndGameResultCallback_t() const { u32_EndGameResultCallback_t ret; - EndGameResultCallback_t_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.ullUniqueGameID = this->ullUniqueGameID; return ret; } #endif - #ifdef __i386__ u32_EndGameResultCallback_t::operator w32_EndGameResultCallback_t() const { w32_EndGameResultCallback_t ret; - EndGameResultCallback_t_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.ullUniqueGameID = this->ullUniqueGameID; return ret; } #endif +static void EndGameResultCallback_t_utow(void *dst, const void *src) +{ + *(w_EndGameResultCallback_t *)dst = *(const u_EndGameResultCallback_t *)src; +} + 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 ); @@ -10618,41 +10715,26 @@ 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 ); -static void FileDetailsResult_t_u_from_w(void *dst, const void *src) -{ - u_FileDetailsResult_t *d = (u_FileDetailsResult_t *)dst; - const w_FileDetailsResult_t *s = (const w_FileDetailsResult_t *)src; - - d->m_eResult = s->m_eResult; - d->m_ulFileSize = s->m_ulFileSize; - d->m_FileSHA = s->m_FileSHA; - d->m_unFlags = s->m_unFlags; -} #ifdef __x86_64__ w64_FileDetailsResult_t::operator u64_FileDetailsResult_t() const { u64_FileDetailsResult_t ret; - FileDetailsResult_t_u_from_w((void *)&ret, (const void *)this); + 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 - -static void FileDetailsResult_t_w_from_u(void *dst, const void *src) -{ - w_FileDetailsResult_t *d = (w_FileDetailsResult_t *)dst; - const u_FileDetailsResult_t *s = (const u_FileDetailsResult_t *)src; - - d->m_eResult = s->m_eResult; - d->m_ulFileSize = s->m_ulFileSize; - d->m_FileSHA = s->m_FileSHA; - d->m_unFlags = s->m_unFlags; -} #ifdef __x86_64__ u64_FileDetailsResult_t::operator w64_FileDetailsResult_t() const { w64_FileDetailsResult_t ret; - FileDetailsResult_t_w_from_u((void *)&ret, (const void *)this); + 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 @@ -10661,21 +10743,31 @@ u64_FileDetailsResult_t::operator w64_FileDetailsResult_t() const w32_FileDetailsResult_t::operator u32_FileDetailsResult_t() const { u32_FileDetailsResult_t ret; - FileDetailsResult_t_u_from_w((void *)&ret, (const void *)this); + 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__ u32_FileDetailsResult_t::operator w32_FileDetailsResult_t() const { w32_FileDetailsResult_t ret; - FileDetailsResult_t_w_from_u((void *)&ret, (const void *)this); + 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 +static void FileDetailsResult_t_utow(void *dst, const void *src) +{ + *(w_FileDetailsResult_t *)dst = *(const u_FileDetailsResult_t *)src; +} + 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 ); @@ -10804,47 +10896,32 @@ 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 ); -static void GSReputation_t_123_u_from_w(void *dst, const void *src) -{ - u_GSReputation_t_123 *d = (u_GSReputation_t_123 *)dst; - const w_GSReputation_t_123 *s = (const w_GSReputation_t_123 *)src; - - d->m_eResult = s->m_eResult; - d->m_unReputationScore = s->m_unReputationScore; - d->m_bBanned = s->m_bBanned; - d->m_unBannedIP = s->m_unBannedIP; - d->m_usBannedPort = s->m_usBannedPort; - d->m_ulBannedGameID = s->m_ulBannedGameID; - d->m_unBanExpires = s->m_unBanExpires; -} #ifdef __x86_64__ w64_GSReputation_t_123::operator u64_GSReputation_t_123() const { u64_GSReputation_t_123 ret; - GSReputation_t_123_u_from_w((void *)&ret, (const void *)this); + 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 - -static void GSReputation_t_123_w_from_u(void *dst, const void *src) -{ - w_GSReputation_t_123 *d = (w_GSReputation_t_123 *)dst; - const u_GSReputation_t_123 *s = (const u_GSReputation_t_123 *)src; - - d->m_eResult = s->m_eResult; - d->m_unReputationScore = s->m_unReputationScore; - d->m_bBanned = s->m_bBanned; - d->m_unBannedIP = s->m_unBannedIP; - d->m_usBannedPort = s->m_usBannedPort; - d->m_ulBannedGameID = s->m_ulBannedGameID; - d->m_unBanExpires = s->m_unBanExpires; -} #ifdef __x86_64__ u64_GSReputation_t_123::operator w64_GSReputation_t_123() const { w64_GSReputation_t_123 ret; - GSReputation_t_123_w_from_u((void *)&ret, (const void *)this); + 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 @@ -10853,66 +10930,72 @@ u64_GSReputation_t_123::operator w64_GSReputation_t_123() const w32_GSReputation_t_123::operator u32_GSReputation_t_123() const { u32_GSReputation_t_123 ret; - GSReputation_t_123_u_from_w((void *)&ret, (const void *)this); + 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__ u32_GSReputation_t_123::operator w32_GSReputation_t_123() const { w32_GSReputation_t_123 ret; - GSReputation_t_123_w_from_u((void *)&ret, (const void *)this); + 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 -static void GSReputation_t_108_u_from_w(void *dst, const void *src) +static void GSReputation_t_123_utow(void *dst, const void *src) { - u_GSReputation_t_108 *d = (u_GSReputation_t_108 *)dst; - const w_GSReputation_t_108 *s = (const w_GSReputation_t_108 *)src; - - d->m_eResult = s->m_eResult; - d->m_unReputationScore = s->m_unReputationScore; - d->m_bBanned = s->m_bBanned; - d->m_unBannedIP = s->m_unBannedIP; - d->m_usBannedPort = s->m_usBannedPort; - d->m_ulBannedGameID = s->m_ulBannedGameID; - d->m_unBanExpires = s->m_unBanExpires; + *(w_GSReputation_t_123 *)dst = *(const u_GSReputation_t_123 *)src; } + #ifdef __i386__ w32_GSReputation_t_108::operator u32_GSReputation_t_108() const { u32_GSReputation_t_108 ret; - GSReputation_t_108_u_from_w((void *)&ret, (const void *)this); + 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 - -static void GSReputation_t_108_w_from_u(void *dst, const void *src) -{ - w_GSReputation_t_108 *d = (w_GSReputation_t_108 *)dst; - const u_GSReputation_t_108 *s = (const u_GSReputation_t_108 *)src; - - d->m_eResult = s->m_eResult; - d->m_unReputationScore = s->m_unReputationScore; - d->m_bBanned = s->m_bBanned; - d->m_unBannedIP = s->m_unBannedIP; - d->m_usBannedPort = s->m_usBannedPort; - d->m_ulBannedGameID = s->m_ulBannedGameID; - d->m_unBanExpires = s->m_unBanExpires; -} #ifdef __i386__ u32_GSReputation_t_108::operator w32_GSReputation_t_108() const { w32_GSReputation_t_108 ret; - GSReputation_t_108_w_from_u((void *)&ret, (const void *)this); + 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 +static void GSReputation_t_108_utow(void *dst, const void *src) +{ + *(w_GSReputation_t_108 *)dst = *(const u_GSReputation_t_108 *)src; +} + 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 ); @@ -10961,43 +11044,28 @@ 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 ); -static void GetAppDependenciesResult_t_u_from_w(void *dst, const void *src) -{ - u_GetAppDependenciesResult_t *d = (u_GetAppDependenciesResult_t *)dst; - const w_GetAppDependenciesResult_t *s = (const w_GetAppDependenciesResult_t *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_rgAppIDs = s->m_rgAppIDs; - d->m_nNumAppDependencies = s->m_nNumAppDependencies; - d->m_nTotalNumAppDependencies = s->m_nTotalNumAppDependencies; -} #ifdef __x86_64__ w64_GetAppDependenciesResult_t::operator u64_GetAppDependenciesResult_t() const { u64_GetAppDependenciesResult_t ret; - GetAppDependenciesResult_t_u_from_w((void *)&ret, (const void *)this); + 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 - -static void GetAppDependenciesResult_t_w_from_u(void *dst, const void *src) -{ - w_GetAppDependenciesResult_t *d = (w_GetAppDependenciesResult_t *)dst; - const u_GetAppDependenciesResult_t *s = (const u_GetAppDependenciesResult_t *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_rgAppIDs = s->m_rgAppIDs; - d->m_nNumAppDependencies = s->m_nNumAppDependencies; - d->m_nTotalNumAppDependencies = s->m_nTotalNumAppDependencies; -} #ifdef __x86_64__ u64_GetAppDependenciesResult_t::operator w64_GetAppDependenciesResult_t() const { w64_GetAppDependenciesResult_t ret; - GetAppDependenciesResult_t_w_from_u((void *)&ret, (const void *)this); + 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 @@ -11006,21 +11074,33 @@ u64_GetAppDependenciesResult_t::operator w64_GetAppDependenciesResult_t() const w32_GetAppDependenciesResult_t::operator u32_GetAppDependenciesResult_t() const { u32_GetAppDependenciesResult_t ret; - GetAppDependenciesResult_t_u_from_w((void *)&ret, (const void *)this); + 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__ u32_GetAppDependenciesResult_t::operator w32_GetAppDependenciesResult_t() const { w32_GetAppDependenciesResult_t ret; - GetAppDependenciesResult_t_w_from_u((void *)&ret, (const void *)this); + 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 +static void GetAppDependenciesResult_t_utow(void *dst, const void *src) +{ + *(w_GetAppDependenciesResult_t *)dst = *(const u_GetAppDependenciesResult_t *)src; +} + 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 ); @@ -11045,41 +11125,31 @@ 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 ); -static void HTML_ChangedTitle_t_u_from_w(void *dst, const void *src) -{ - u_HTML_ChangedTitle_t *d = (u_HTML_ChangedTitle_t *)dst; - const w_HTML_ChangedTitle_t *s = (const w_HTML_ChangedTitle_t *)src; - - d->unBrowserHandle = s->unBrowserHandle; - d->pchTitle = s->pchTitle; -} #ifdef __x86_64__ w64_HTML_ChangedTitle_t::operator u64_HTML_ChangedTitle_t() const { u64_HTML_ChangedTitle_t ret; - HTML_ChangedTitle_t_u_from_w((void *)&ret, (const void *)this); + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchTitle = this->pchTitle; return ret; } #endif - -static void HTML_ChangedTitle_t_w_from_u(void *dst, const void *src) -{ - w_HTML_ChangedTitle_t *d = (w_HTML_ChangedTitle_t *)dst; - const u_HTML_ChangedTitle_t *s = (const u_HTML_ChangedTitle_t *)src; - - d->unBrowserHandle = s->unBrowserHandle; - d->pchTitle = s->pchTitle; -} #ifdef __x86_64__ u64_HTML_ChangedTitle_t::operator w64_HTML_ChangedTitle_t() const { w64_HTML_ChangedTitle_t ret; - HTML_ChangedTitle_t_w_from_u((void *)&ret, (const void *)this); + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchTitle = this->pchTitle; return ret; } #endif +static void HTML_ChangedTitle_t_utow(void *dst, const void *src) +{ + *(w_HTML_ChangedTitle_t *)dst = *(const u_HTML_ChangedTitle_t *)src; +} + 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 ); @@ -11120,45 +11190,35 @@ 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 ); -static void HTML_ComboNeedsPaint_t_u_from_w(void *dst, const void *src) -{ - u_HTML_ComboNeedsPaint_t *d = (u_HTML_ComboNeedsPaint_t *)dst; - const w_HTML_ComboNeedsPaint_t *s = (const w_HTML_ComboNeedsPaint_t *)src; - - d->unBrowserHandle = s->unBrowserHandle; - d->pBGRA = s->pBGRA; - d->unWide = s->unWide; - d->unTall = s->unTall; -} #ifdef __x86_64__ w64_HTML_ComboNeedsPaint_t::operator u64_HTML_ComboNeedsPaint_t() const { u64_HTML_ComboNeedsPaint_t ret; - HTML_ComboNeedsPaint_t_u_from_w((void *)&ret, (const void *)this); + ret.unBrowserHandle = this->unBrowserHandle; + ret.pBGRA = this->pBGRA; + ret.unWide = this->unWide; + ret.unTall = this->unTall; return ret; } #endif - -static void HTML_ComboNeedsPaint_t_w_from_u(void *dst, const void *src) -{ - w_HTML_ComboNeedsPaint_t *d = (w_HTML_ComboNeedsPaint_t *)dst; - const u_HTML_ComboNeedsPaint_t *s = (const u_HTML_ComboNeedsPaint_t *)src; - - d->unBrowserHandle = s->unBrowserHandle; - d->pBGRA = s->pBGRA; - d->unWide = s->unWide; - d->unTall = s->unTall; -} #ifdef __x86_64__ u64_HTML_ComboNeedsPaint_t::operator w64_HTML_ComboNeedsPaint_t() const { w64_HTML_ComboNeedsPaint_t ret; - HTML_ComboNeedsPaint_t_w_from_u((void *)&ret, (const void *)this); + ret.unBrowserHandle = this->unBrowserHandle; + ret.pBGRA = this->pBGRA; + ret.unWide = this->unWide; + ret.unTall = this->unTall; return ret; } #endif +static void HTML_ComboNeedsPaint_t_utow(void *dst, const void *src) +{ + *(w_HTML_ComboNeedsPaint_t *)dst = *(const u_HTML_ComboNeedsPaint_t *)src; +} + 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 ); @@ -11191,40 +11251,25 @@ 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 ); -static void HTML_FileOpenDialog_t_u_from_w(void *dst, const void *src) -{ - u_HTML_FileOpenDialog_t *d = (u_HTML_FileOpenDialog_t *)dst; - const w_HTML_FileOpenDialog_t *s = (const w_HTML_FileOpenDialog_t *)src; - - d->unBrowserHandle = s->unBrowserHandle; - d->pchTitle = s->pchTitle; - d->pchInitialFile = s->pchInitialFile; -} #ifdef __x86_64__ w64_HTML_FileOpenDialog_t::operator u64_HTML_FileOpenDialog_t() const { u64_HTML_FileOpenDialog_t ret; - HTML_FileOpenDialog_t_u_from_w((void *)&ret, (const void *)this); + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchTitle = this->pchTitle; + ret.pchInitialFile = this->pchInitialFile; return ret; } #endif - -static void HTML_FileOpenDialog_t_w_from_u(void *dst, const void *src) -{ - w_HTML_FileOpenDialog_t *d = (w_HTML_FileOpenDialog_t *)dst; - const u_HTML_FileOpenDialog_t *s = (const u_HTML_FileOpenDialog_t *)src; - - d->unBrowserHandle = s->unBrowserHandle; - d->pchTitle = s->pchTitle; - steamclient_unix_path_to_dos_path(1, s->pchInitialFile, g_tmppath, TEMP_PATH_BUFFER_LENGTH, 1); - d->pchInitialFile = g_tmppath; -} #ifdef __x86_64__ u64_HTML_FileOpenDialog_t::operator w64_HTML_FileOpenDialog_t() const { w64_HTML_FileOpenDialog_t ret; - HTML_FileOpenDialog_t_w_from_u((void *)&ret, (const void *)this); + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchTitle = this->pchTitle; + steamclient_unix_path_to_dos_path(1, this->pchInitialFile, g_tmppath, TEMP_PATH_BUFFER_LENGTH, 1); + ret.pchInitialFile = g_tmppath; return ret; } #endif @@ -11233,21 +11278,30 @@ u64_HTML_FileOpenDialog_t::operator w64_HTML_FileOpenDialog_t() const w32_HTML_FileOpenDialog_t::operator u32_HTML_FileOpenDialog_t() const { u32_HTML_FileOpenDialog_t ret; - HTML_FileOpenDialog_t_u_from_w((void *)&ret, (const void *)this); + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchTitle = this->pchTitle; + ret.pchInitialFile = this->pchInitialFile; return ret; } #endif - #ifdef __i386__ u32_HTML_FileOpenDialog_t::operator w32_HTML_FileOpenDialog_t() const { w32_HTML_FileOpenDialog_t ret; - HTML_FileOpenDialog_t_w_from_u((void *)&ret, (const void *)this); + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchTitle = this->pchTitle; + steamclient_unix_path_to_dos_path(1, this->pchInitialFile, g_tmppath, TEMP_PATH_BUFFER_LENGTH, 1); + ret.pchInitialFile = g_tmppath; return ret; } #endif +static void HTML_FileOpenDialog_t_utow(void *dst, const void *src) +{ + *(w_HTML_FileOpenDialog_t *)dst = *(const u_HTML_FileOpenDialog_t *)src; +} + 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 ); @@ -11280,40 +11334,25 @@ 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 ); -static void HTML_FinishedRequest_t_u_from_w(void *dst, const void *src) -{ - u_HTML_FinishedRequest_t *d = (u_HTML_FinishedRequest_t *)dst; - const w_HTML_FinishedRequest_t *s = (const w_HTML_FinishedRequest_t *)src; - - d->unBrowserHandle = s->unBrowserHandle; - d->pchURL = s->pchURL; - d->pchPageTitle = s->pchPageTitle; -} #ifdef __x86_64__ w64_HTML_FinishedRequest_t::operator u64_HTML_FinishedRequest_t() const { u64_HTML_FinishedRequest_t ret; - HTML_FinishedRequest_t_u_from_w((void *)&ret, (const void *)this); + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchURL = this->pchURL; + ret.pchPageTitle = this->pchPageTitle; return ret; } #endif - -static void HTML_FinishedRequest_t_w_from_u(void *dst, const void *src) -{ - w_HTML_FinishedRequest_t *d = (w_HTML_FinishedRequest_t *)dst; - const u_HTML_FinishedRequest_t *s = (const u_HTML_FinishedRequest_t *)src; - - d->unBrowserHandle = s->unBrowserHandle; - steamclient_unix_path_to_dos_path(1, s->pchURL, g_tmppath, TEMP_PATH_BUFFER_LENGTH, 1); - d->pchURL = g_tmppath; - d->pchPageTitle = s->pchPageTitle; -} #ifdef __x86_64__ u64_HTML_FinishedRequest_t::operator w64_HTML_FinishedRequest_t() const { w64_HTML_FinishedRequest_t ret; - HTML_FinishedRequest_t_w_from_u((void *)&ret, (const void *)this); + ret.unBrowserHandle = this->unBrowserHandle; + steamclient_unix_path_to_dos_path(1, this->pchURL, g_tmppath, TEMP_PATH_BUFFER_LENGTH, 1); + ret.pchURL = g_tmppath; + ret.pchPageTitle = this->pchPageTitle; return ret; } #endif @@ -11322,21 +11361,30 @@ u64_HTML_FinishedRequest_t::operator w64_HTML_FinishedRequest_t() const w32_HTML_FinishedRequest_t::operator u32_HTML_FinishedRequest_t() const { u32_HTML_FinishedRequest_t ret; - HTML_FinishedRequest_t_u_from_w((void *)&ret, (const void *)this); + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchURL = this->pchURL; + ret.pchPageTitle = this->pchPageTitle; return ret; } #endif - #ifdef __i386__ u32_HTML_FinishedRequest_t::operator w32_HTML_FinishedRequest_t() const { w32_HTML_FinishedRequest_t ret; - HTML_FinishedRequest_t_w_from_u((void *)&ret, (const void *)this); + ret.unBrowserHandle = this->unBrowserHandle; + steamclient_unix_path_to_dos_path(1, this->pchURL, g_tmppath, TEMP_PATH_BUFFER_LENGTH, 1); + ret.pchURL = g_tmppath; + ret.pchPageTitle = this->pchPageTitle; return ret; } #endif +static void HTML_FinishedRequest_t_utow(void *dst, const void *src) +{ + *(w_HTML_FinishedRequest_t *)dst = *(const u_HTML_FinishedRequest_t *)src; +} + 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 ); @@ -11361,41 +11409,31 @@ 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 ); -static void HTML_JSAlert_t_u_from_w(void *dst, const void *src) -{ - u_HTML_JSAlert_t *d = (u_HTML_JSAlert_t *)dst; - const w_HTML_JSAlert_t *s = (const w_HTML_JSAlert_t *)src; - - d->unBrowserHandle = s->unBrowserHandle; - d->pchMessage = s->pchMessage; -} #ifdef __x86_64__ w64_HTML_JSAlert_t::operator u64_HTML_JSAlert_t() const { u64_HTML_JSAlert_t ret; - HTML_JSAlert_t_u_from_w((void *)&ret, (const void *)this); + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchMessage = this->pchMessage; return ret; } #endif - -static void HTML_JSAlert_t_w_from_u(void *dst, const void *src) -{ - w_HTML_JSAlert_t *d = (w_HTML_JSAlert_t *)dst; - const u_HTML_JSAlert_t *s = (const u_HTML_JSAlert_t *)src; - - d->unBrowserHandle = s->unBrowserHandle; - d->pchMessage = s->pchMessage; -} #ifdef __x86_64__ u64_HTML_JSAlert_t::operator w64_HTML_JSAlert_t() const { w64_HTML_JSAlert_t ret; - HTML_JSAlert_t_w_from_u((void *)&ret, (const void *)this); + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchMessage = this->pchMessage; return ret; } #endif +static void HTML_JSAlert_t_utow(void *dst, const void *src) +{ + *(w_HTML_JSAlert_t *)dst = *(const u_HTML_JSAlert_t *)src; +} + 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 ); @@ -11420,41 +11458,31 @@ 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 ); -static void HTML_JSConfirm_t_u_from_w(void *dst, const void *src) -{ - u_HTML_JSConfirm_t *d = (u_HTML_JSConfirm_t *)dst; - const w_HTML_JSConfirm_t *s = (const w_HTML_JSConfirm_t *)src; - - d->unBrowserHandle = s->unBrowserHandle; - d->pchMessage = s->pchMessage; -} #ifdef __x86_64__ w64_HTML_JSConfirm_t::operator u64_HTML_JSConfirm_t() const { u64_HTML_JSConfirm_t ret; - HTML_JSConfirm_t_u_from_w((void *)&ret, (const void *)this); + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchMessage = this->pchMessage; return ret; } #endif - -static void HTML_JSConfirm_t_w_from_u(void *dst, const void *src) -{ - w_HTML_JSConfirm_t *d = (w_HTML_JSConfirm_t *)dst; - const u_HTML_JSConfirm_t *s = (const u_HTML_JSConfirm_t *)src; - - d->unBrowserHandle = s->unBrowserHandle; - d->pchMessage = s->pchMessage; -} #ifdef __x86_64__ u64_HTML_JSConfirm_t::operator w64_HTML_JSConfirm_t() const { w64_HTML_JSConfirm_t ret; - HTML_JSConfirm_t_w_from_u((void *)&ret, (const void *)this); + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchMessage = this->pchMessage; return ret; } #endif +static void HTML_JSConfirm_t_utow(void *dst, const void *src) +{ + *(w_HTML_JSConfirm_t *)dst = *(const u_HTML_JSConfirm_t *)src; +} + 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 ); @@ -11511,46 +11539,31 @@ 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 ); -static void HTML_LinkAtPosition_t_u_from_w(void *dst, const void *src) -{ - u_HTML_LinkAtPosition_t *d = (u_HTML_LinkAtPosition_t *)dst; - const w_HTML_LinkAtPosition_t *s = (const w_HTML_LinkAtPosition_t *)src; - - d->unBrowserHandle = s->unBrowserHandle; - d->x = s->x; - d->y = s->y; - d->pchURL = s->pchURL; - d->bInput = s->bInput; - d->bLiveLink = s->bLiveLink; -} #ifdef __x86_64__ w64_HTML_LinkAtPosition_t::operator u64_HTML_LinkAtPosition_t() const { u64_HTML_LinkAtPosition_t ret; - HTML_LinkAtPosition_t_u_from_w((void *)&ret, (const void *)this); + 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; } #endif - -static void HTML_LinkAtPosition_t_w_from_u(void *dst, const void *src) -{ - w_HTML_LinkAtPosition_t *d = (w_HTML_LinkAtPosition_t *)dst; - const u_HTML_LinkAtPosition_t *s = (const u_HTML_LinkAtPosition_t *)src; - - d->unBrowserHandle = s->unBrowserHandle; - d->x = s->x; - d->y = s->y; - steamclient_unix_path_to_dos_path(1, s->pchURL, g_tmppath, TEMP_PATH_BUFFER_LENGTH, 1); - d->pchURL = g_tmppath; - d->bInput = s->bInput; - d->bLiveLink = s->bLiveLink; -} #ifdef __x86_64__ u64_HTML_LinkAtPosition_t::operator w64_HTML_LinkAtPosition_t() const { w64_HTML_LinkAtPosition_t ret; - HTML_LinkAtPosition_t_w_from_u((void *)&ret, (const void *)this); + ret.unBrowserHandle = this->unBrowserHandle; + ret.x = this->x; + ret.y = this->y; + steamclient_unix_path_to_dos_path(1, this->pchURL, g_tmppath, TEMP_PATH_BUFFER_LENGTH, 1); + ret.pchURL = g_tmppath; + ret.bInput = this->bInput; + ret.bLiveLink = this->bLiveLink; return ret; } #endif @@ -11559,21 +11572,36 @@ u64_HTML_LinkAtPosition_t::operator w64_HTML_LinkAtPosition_t() const w32_HTML_LinkAtPosition_t::operator u32_HTML_LinkAtPosition_t() const { u32_HTML_LinkAtPosition_t ret; - HTML_LinkAtPosition_t_u_from_w((void *)&ret, (const void *)this); + 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; } #endif - #ifdef __i386__ u32_HTML_LinkAtPosition_t::operator w32_HTML_LinkAtPosition_t() const { w32_HTML_LinkAtPosition_t ret; - HTML_LinkAtPosition_t_w_from_u((void *)&ret, (const void *)this); + ret.unBrowserHandle = this->unBrowserHandle; + ret.x = this->x; + ret.y = this->y; + steamclient_unix_path_to_dos_path(1, this->pchURL, g_tmppath, TEMP_PATH_BUFFER_LENGTH, 1); + ret.pchURL = g_tmppath; + ret.bInput = this->bInput; + ret.bLiveLink = this->bLiveLink; return ret; } #endif +static void HTML_LinkAtPosition_t_utow(void *dst, const void *src) +{ + *(w_HTML_LinkAtPosition_t *)dst = *(const u_HTML_LinkAtPosition_t *)src; +} + 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 ); @@ -11678,61 +11706,51 @@ 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 ); -static void HTML_NeedsPaint_t_u_from_w(void *dst, const void *src) -{ - u_HTML_NeedsPaint_t *d = (u_HTML_NeedsPaint_t *)dst; - const w_HTML_NeedsPaint_t *s = (const w_HTML_NeedsPaint_t *)src; - - d->unBrowserHandle = s->unBrowserHandle; - d->pBGRA = s->pBGRA; - d->unWide = s->unWide; - d->unTall = s->unTall; - d->unUpdateX = s->unUpdateX; - d->unUpdateY = s->unUpdateY; - d->unUpdateWide = s->unUpdateWide; - d->unUpdateTall = s->unUpdateTall; - d->unScrollX = s->unScrollX; - d->unScrollY = s->unScrollY; - d->flPageScale = s->flPageScale; - d->unPageSerial = s->unPageSerial; -} #ifdef __x86_64__ w64_HTML_NeedsPaint_t::operator u64_HTML_NeedsPaint_t() const { u64_HTML_NeedsPaint_t ret; - HTML_NeedsPaint_t_u_from_w((void *)&ret, (const void *)this); + 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 - -static void HTML_NeedsPaint_t_w_from_u(void *dst, const void *src) -{ - w_HTML_NeedsPaint_t *d = (w_HTML_NeedsPaint_t *)dst; - const u_HTML_NeedsPaint_t *s = (const u_HTML_NeedsPaint_t *)src; - - d->unBrowserHandle = s->unBrowserHandle; - d->pBGRA = s->pBGRA; - d->unWide = s->unWide; - d->unTall = s->unTall; - d->unUpdateX = s->unUpdateX; - d->unUpdateY = s->unUpdateY; - d->unUpdateWide = s->unUpdateWide; - d->unUpdateTall = s->unUpdateTall; - d->unScrollX = s->unScrollX; - d->unScrollY = s->unScrollY; - d->flPageScale = s->flPageScale; - d->unPageSerial = s->unPageSerial; -} #ifdef __x86_64__ u64_HTML_NeedsPaint_t::operator w64_HTML_NeedsPaint_t() const { w64_HTML_NeedsPaint_t ret; - HTML_NeedsPaint_t_w_from_u((void *)&ret, (const void *)this); + 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 +static void HTML_NeedsPaint_t_utow(void *dst, const void *src) +{ + *(w_HTML_NeedsPaint_t *)dst = *(const u_HTML_NeedsPaint_t *)src; +} + 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 ); @@ -11853,48 +11871,33 @@ 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 ); -static void HTML_NewWindow_t_132x_u_from_w(void *dst, const void *src) -{ - u_HTML_NewWindow_t_132x *d = (u_HTML_NewWindow_t_132x *)dst; - const w_HTML_NewWindow_t_132x *s = (const w_HTML_NewWindow_t_132x *)src; - - d->unBrowserHandle = s->unBrowserHandle; - d->pchURL = s->pchURL; - d->unX = s->unX; - d->unY = s->unY; - d->unWide = s->unWide; - d->unTall = s->unTall; - d->unNewWindow_BrowserHandle_IGNORE = s->unNewWindow_BrowserHandle_IGNORE; -} #ifdef __x86_64__ w64_HTML_NewWindow_t_132x::operator u64_HTML_NewWindow_t_132x() const { u64_HTML_NewWindow_t_132x ret; - HTML_NewWindow_t_132x_u_from_w((void *)&ret, (const void *)this); + 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; } #endif - -static void HTML_NewWindow_t_132x_w_from_u(void *dst, const void *src) -{ - w_HTML_NewWindow_t_132x *d = (w_HTML_NewWindow_t_132x *)dst; - const u_HTML_NewWindow_t_132x *s = (const u_HTML_NewWindow_t_132x *)src; - - d->unBrowserHandle = s->unBrowserHandle; - steamclient_unix_path_to_dos_path(1, s->pchURL, g_tmppath, TEMP_PATH_BUFFER_LENGTH, 1); - d->pchURL = g_tmppath; - d->unX = s->unX; - d->unY = s->unY; - d->unWide = s->unWide; - d->unTall = s->unTall; - d->unNewWindow_BrowserHandle_IGNORE = s->unNewWindow_BrowserHandle_IGNORE; -} #ifdef __x86_64__ u64_HTML_NewWindow_t_132x::operator w64_HTML_NewWindow_t_132x() const { w64_HTML_NewWindow_t_132x ret; - HTML_NewWindow_t_132x_w_from_u((void *)&ret, (const void *)this); + ret.unBrowserHandle = this->unBrowserHandle; + steamclient_unix_path_to_dos_path(1, this->pchURL, g_tmppath, TEMP_PATH_BUFFER_LENGTH, 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 @@ -11903,61 +11906,63 @@ u64_HTML_NewWindow_t_132x::operator w64_HTML_NewWindow_t_132x() const w32_HTML_NewWindow_t_132x::operator u32_HTML_NewWindow_t_132x() const { u32_HTML_NewWindow_t_132x ret; - HTML_NewWindow_t_132x_u_from_w((void *)&ret, (const void *)this); + 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; } #endif - #ifdef __i386__ u32_HTML_NewWindow_t_132x::operator w32_HTML_NewWindow_t_132x() const { w32_HTML_NewWindow_t_132x ret; - HTML_NewWindow_t_132x_w_from_u((void *)&ret, (const void *)this); + ret.unBrowserHandle = this->unBrowserHandle; + steamclient_unix_path_to_dos_path(1, this->pchURL, g_tmppath, TEMP_PATH_BUFFER_LENGTH, 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 -static void HTML_NewWindow_t_130x_u_from_w(void *dst, const void *src) +static void HTML_NewWindow_t_132x_utow(void *dst, const void *src) { - u_HTML_NewWindow_t_130x *d = (u_HTML_NewWindow_t_130x *)dst; - const w_HTML_NewWindow_t_130x *s = (const w_HTML_NewWindow_t_130x *)src; - - d->unBrowserHandle = s->unBrowserHandle; - d->pchURL = s->pchURL; - d->unX = s->unX; - d->unY = s->unY; - d->unWide = s->unWide; - d->unTall = s->unTall; + *(w_HTML_NewWindow_t_132x *)dst = *(const u_HTML_NewWindow_t_132x *)src; } + #ifdef __x86_64__ w64_HTML_NewWindow_t_130x::operator u64_HTML_NewWindow_t_130x() const { u64_HTML_NewWindow_t_130x ret; - HTML_NewWindow_t_130x_u_from_w((void *)&ret, (const void *)this); + 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; } #endif - -static void HTML_NewWindow_t_130x_w_from_u(void *dst, const void *src) -{ - w_HTML_NewWindow_t_130x *d = (w_HTML_NewWindow_t_130x *)dst; - const u_HTML_NewWindow_t_130x *s = (const u_HTML_NewWindow_t_130x *)src; - - d->unBrowserHandle = s->unBrowserHandle; - steamclient_unix_path_to_dos_path(1, s->pchURL, g_tmppath, TEMP_PATH_BUFFER_LENGTH, 1); - d->pchURL = g_tmppath; - d->unX = s->unX; - d->unY = s->unY; - d->unWide = s->unWide; - d->unTall = s->unTall; -} #ifdef __x86_64__ u64_HTML_NewWindow_t_130x::operator w64_HTML_NewWindow_t_130x() const { w64_HTML_NewWindow_t_130x ret; - HTML_NewWindow_t_130x_w_from_u((void *)&ret, (const void *)this); + ret.unBrowserHandle = this->unBrowserHandle; + steamclient_unix_path_to_dos_path(1, this->pchURL, g_tmppath, TEMP_PATH_BUFFER_LENGTH, 1); + ret.pchURL = g_tmppath; + ret.unX = this->unX; + ret.unY = this->unY; + ret.unWide = this->unWide; + ret.unTall = this->unTall; return ret; } #endif @@ -11966,21 +11971,36 @@ u64_HTML_NewWindow_t_130x::operator w64_HTML_NewWindow_t_130x() const w32_HTML_NewWindow_t_130x::operator u32_HTML_NewWindow_t_130x() const { u32_HTML_NewWindow_t_130x ret; - HTML_NewWindow_t_130x_u_from_w((void *)&ret, (const void *)this); + 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; } #endif - #ifdef __i386__ u32_HTML_NewWindow_t_130x::operator w32_HTML_NewWindow_t_130x() const { w32_HTML_NewWindow_t_130x ret; - HTML_NewWindow_t_130x_w_from_u((void *)&ret, (const void *)this); + ret.unBrowserHandle = this->unBrowserHandle; + steamclient_unix_path_to_dos_path(1, this->pchURL, g_tmppath, TEMP_PATH_BUFFER_LENGTH, 1); + ret.pchURL = g_tmppath; + ret.unX = this->unX; + ret.unY = this->unY; + ret.unWide = this->unWide; + ret.unTall = this->unTall; return ret; } #endif +static void HTML_NewWindow_t_130x_utow(void *dst, const void *src) +{ + *(w_HTML_NewWindow_t_130x *)dst = *(const u_HTML_NewWindow_t_130x *)src; +} + 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 ); @@ -12005,38 +12025,23 @@ 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 ); -static void HTML_OpenLinkInNewTab_t_u_from_w(void *dst, const void *src) -{ - u_HTML_OpenLinkInNewTab_t *d = (u_HTML_OpenLinkInNewTab_t *)dst; - const w_HTML_OpenLinkInNewTab_t *s = (const w_HTML_OpenLinkInNewTab_t *)src; - - d->unBrowserHandle = s->unBrowserHandle; - d->pchURL = s->pchURL; -} #ifdef __x86_64__ w64_HTML_OpenLinkInNewTab_t::operator u64_HTML_OpenLinkInNewTab_t() const { u64_HTML_OpenLinkInNewTab_t ret; - HTML_OpenLinkInNewTab_t_u_from_w((void *)&ret, (const void *)this); + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchURL = this->pchURL; return ret; } #endif - -static void HTML_OpenLinkInNewTab_t_w_from_u(void *dst, const void *src) -{ - w_HTML_OpenLinkInNewTab_t *d = (w_HTML_OpenLinkInNewTab_t *)dst; - const u_HTML_OpenLinkInNewTab_t *s = (const u_HTML_OpenLinkInNewTab_t *)src; - - d->unBrowserHandle = s->unBrowserHandle; - steamclient_unix_path_to_dos_path(1, s->pchURL, g_tmppath, TEMP_PATH_BUFFER_LENGTH, 1); - d->pchURL = g_tmppath; -} #ifdef __x86_64__ u64_HTML_OpenLinkInNewTab_t::operator w64_HTML_OpenLinkInNewTab_t() const { w64_HTML_OpenLinkInNewTab_t ret; - HTML_OpenLinkInNewTab_t_w_from_u((void *)&ret, (const void *)this); + ret.unBrowserHandle = this->unBrowserHandle; + steamclient_unix_path_to_dos_path(1, this->pchURL, g_tmppath, TEMP_PATH_BUFFER_LENGTH, 1); + ret.pchURL = g_tmppath; return ret; } #endif @@ -12045,21 +12050,28 @@ u64_HTML_OpenLinkInNewTab_t::operator w64_HTML_OpenLinkInNewTab_t() const w32_HTML_OpenLinkInNewTab_t::operator u32_HTML_OpenLinkInNewTab_t() const { u32_HTML_OpenLinkInNewTab_t ret; - HTML_OpenLinkInNewTab_t_u_from_w((void *)&ret, (const void *)this); + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchURL = this->pchURL; return ret; } #endif - #ifdef __i386__ u32_HTML_OpenLinkInNewTab_t::operator w32_HTML_OpenLinkInNewTab_t() const { w32_HTML_OpenLinkInNewTab_t ret; - HTML_OpenLinkInNewTab_t_w_from_u((void *)&ret, (const void *)this); + ret.unBrowserHandle = this->unBrowserHandle; + steamclient_unix_path_to_dos_path(1, this->pchURL, g_tmppath, TEMP_PATH_BUFFER_LENGTH, 1); + ret.pchURL = g_tmppath; return ret; } #endif +static void HTML_OpenLinkInNewTab_t_utow(void *dst, const void *src) +{ + *(w_HTML_OpenLinkInNewTab_t *)dst = *(const u_HTML_OpenLinkInNewTab_t *)src; +} + 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 ); @@ -12084,41 +12096,31 @@ 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 ); -static void HTML_ShowToolTip_t_u_from_w(void *dst, const void *src) -{ - u_HTML_ShowToolTip_t *d = (u_HTML_ShowToolTip_t *)dst; - const w_HTML_ShowToolTip_t *s = (const w_HTML_ShowToolTip_t *)src; - - d->unBrowserHandle = s->unBrowserHandle; - d->pchMsg = s->pchMsg; -} #ifdef __x86_64__ w64_HTML_ShowToolTip_t::operator u64_HTML_ShowToolTip_t() const { u64_HTML_ShowToolTip_t ret; - HTML_ShowToolTip_t_u_from_w((void *)&ret, (const void *)this); + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchMsg = this->pchMsg; return ret; } #endif - -static void HTML_ShowToolTip_t_w_from_u(void *dst, const void *src) -{ - w_HTML_ShowToolTip_t *d = (w_HTML_ShowToolTip_t *)dst; - const u_HTML_ShowToolTip_t *s = (const u_HTML_ShowToolTip_t *)src; - - d->unBrowserHandle = s->unBrowserHandle; - d->pchMsg = s->pchMsg; -} #ifdef __x86_64__ u64_HTML_ShowToolTip_t::operator w64_HTML_ShowToolTip_t() const { w64_HTML_ShowToolTip_t ret; - HTML_ShowToolTip_t_w_from_u((void *)&ret, (const void *)this); + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchMsg = this->pchMsg; return ret; } #endif +static void HTML_ShowToolTip_t_utow(void *dst, const void *src) +{ + *(w_HTML_ShowToolTip_t *)dst = *(const u_HTML_ShowToolTip_t *)src; +} + 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 ); @@ -12167,44 +12169,29 @@ 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 ); -static void HTML_StartRequest_t_u_from_w(void *dst, const void *src) -{ - u_HTML_StartRequest_t *d = (u_HTML_StartRequest_t *)dst; - const w_HTML_StartRequest_t *s = (const w_HTML_StartRequest_t *)src; - - d->unBrowserHandle = s->unBrowserHandle; - d->pchURL = s->pchURL; - d->pchTarget = s->pchTarget; - d->pchPostData = s->pchPostData; - d->bIsRedirect = s->bIsRedirect; -} #ifdef __x86_64__ w64_HTML_StartRequest_t::operator u64_HTML_StartRequest_t() const { u64_HTML_StartRequest_t ret; - HTML_StartRequest_t_u_from_w((void *)&ret, (const void *)this); + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchURL = this->pchURL; + ret.pchTarget = this->pchTarget; + ret.pchPostData = this->pchPostData; + ret.bIsRedirect = this->bIsRedirect; return ret; } #endif - -static void HTML_StartRequest_t_w_from_u(void *dst, const void *src) -{ - w_HTML_StartRequest_t *d = (w_HTML_StartRequest_t *)dst; - const u_HTML_StartRequest_t *s = (const u_HTML_StartRequest_t *)src; - - d->unBrowserHandle = s->unBrowserHandle; - steamclient_unix_path_to_dos_path(1, s->pchURL, g_tmppath, TEMP_PATH_BUFFER_LENGTH, 1); - d->pchURL = g_tmppath; - d->pchTarget = s->pchTarget; - d->pchPostData = s->pchPostData; - d->bIsRedirect = s->bIsRedirect; -} #ifdef __x86_64__ u64_HTML_StartRequest_t::operator w64_HTML_StartRequest_t() const { w64_HTML_StartRequest_t ret; - HTML_StartRequest_t_w_from_u((void *)&ret, (const void *)this); + ret.unBrowserHandle = this->unBrowserHandle; + steamclient_unix_path_to_dos_path(1, this->pchURL, g_tmppath, TEMP_PATH_BUFFER_LENGTH, 1); + ret.pchURL = g_tmppath; + ret.pchTarget = this->pchTarget; + ret.pchPostData = this->pchPostData; + ret.bIsRedirect = this->bIsRedirect; return ret; } #endif @@ -12213,21 +12200,34 @@ u64_HTML_StartRequest_t::operator w64_HTML_StartRequest_t() const w32_HTML_StartRequest_t::operator u32_HTML_StartRequest_t() const { u32_HTML_StartRequest_t ret; - HTML_StartRequest_t_u_from_w((void *)&ret, (const void *)this); + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchURL = this->pchURL; + ret.pchTarget = this->pchTarget; + ret.pchPostData = this->pchPostData; + ret.bIsRedirect = this->bIsRedirect; return ret; } #endif - #ifdef __i386__ u32_HTML_StartRequest_t::operator w32_HTML_StartRequest_t() const { w32_HTML_StartRequest_t ret; - HTML_StartRequest_t_w_from_u((void *)&ret, (const void *)this); + ret.unBrowserHandle = this->unBrowserHandle; + steamclient_unix_path_to_dos_path(1, this->pchURL, g_tmppath, TEMP_PATH_BUFFER_LENGTH, 1); + ret.pchURL = g_tmppath; + ret.pchTarget = this->pchTarget; + ret.pchPostData = this->pchPostData; + ret.bIsRedirect = this->bIsRedirect; return ret; } #endif +static void HTML_StartRequest_t_utow(void *dst, const void *src) +{ + *(w_HTML_StartRequest_t *)dst = *(const u_HTML_StartRequest_t *)src; +} + 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 ); @@ -12252,41 +12252,31 @@ 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 ); -static void HTML_StatusText_t_u_from_w(void *dst, const void *src) -{ - u_HTML_StatusText_t *d = (u_HTML_StatusText_t *)dst; - const w_HTML_StatusText_t *s = (const w_HTML_StatusText_t *)src; - - d->unBrowserHandle = s->unBrowserHandle; - d->pchMsg = s->pchMsg; -} #ifdef __x86_64__ w64_HTML_StatusText_t::operator u64_HTML_StatusText_t() const { u64_HTML_StatusText_t ret; - HTML_StatusText_t_u_from_w((void *)&ret, (const void *)this); + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchMsg = this->pchMsg; return ret; } #endif - -static void HTML_StatusText_t_w_from_u(void *dst, const void *src) -{ - w_HTML_StatusText_t *d = (w_HTML_StatusText_t *)dst; - const u_HTML_StatusText_t *s = (const u_HTML_StatusText_t *)src; - - d->unBrowserHandle = s->unBrowserHandle; - d->pchMsg = s->pchMsg; -} #ifdef __x86_64__ u64_HTML_StatusText_t::operator w64_HTML_StatusText_t() const { w64_HTML_StatusText_t ret; - HTML_StatusText_t_w_from_u((void *)&ret, (const void *)this); + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchMsg = this->pchMsg; return ret; } #endif +static void HTML_StatusText_t_utow(void *dst, const void *src) +{ + *(w_HTML_StatusText_t *)dst = *(const u_HTML_StatusText_t *)src; +} + 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 ); @@ -12343,46 +12333,31 @@ 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 ); -static void HTML_URLChanged_t_u_from_w(void *dst, const void *src) -{ - u_HTML_URLChanged_t *d = (u_HTML_URLChanged_t *)dst; - const w_HTML_URLChanged_t *s = (const w_HTML_URLChanged_t *)src; - - d->unBrowserHandle = s->unBrowserHandle; - d->pchURL = s->pchURL; - d->pchPostData = s->pchPostData; - d->bIsRedirect = s->bIsRedirect; - d->pchPageTitle = s->pchPageTitle; - d->bNewNavigation = s->bNewNavigation; -} #ifdef __x86_64__ w64_HTML_URLChanged_t::operator u64_HTML_URLChanged_t() const { u64_HTML_URLChanged_t ret; - HTML_URLChanged_t_u_from_w((void *)&ret, (const void *)this); + 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; } #endif - -static void HTML_URLChanged_t_w_from_u(void *dst, const void *src) -{ - w_HTML_URLChanged_t *d = (w_HTML_URLChanged_t *)dst; - const u_HTML_URLChanged_t *s = (const u_HTML_URLChanged_t *)src; - - d->unBrowserHandle = s->unBrowserHandle; - steamclient_unix_path_to_dos_path(1, s->pchURL, g_tmppath, TEMP_PATH_BUFFER_LENGTH, 1); - d->pchURL = g_tmppath; - d->pchPostData = s->pchPostData; - d->bIsRedirect = s->bIsRedirect; - d->pchPageTitle = s->pchPageTitle; - d->bNewNavigation = s->bNewNavigation; -} #ifdef __x86_64__ u64_HTML_URLChanged_t::operator w64_HTML_URLChanged_t() const { w64_HTML_URLChanged_t ret; - HTML_URLChanged_t_w_from_u((void *)&ret, (const void *)this); + ret.unBrowserHandle = this->unBrowserHandle; + steamclient_unix_path_to_dos_path(1, this->pchURL, g_tmppath, TEMP_PATH_BUFFER_LENGTH, 1); + ret.pchURL = g_tmppath; + ret.pchPostData = this->pchPostData; + ret.bIsRedirect = this->bIsRedirect; + ret.pchPageTitle = this->pchPageTitle; + ret.bNewNavigation = this->bNewNavigation; return ret; } #endif @@ -12391,21 +12366,36 @@ u64_HTML_URLChanged_t::operator w64_HTML_URLChanged_t() const w32_HTML_URLChanged_t::operator u32_HTML_URLChanged_t() const { u32_HTML_URLChanged_t ret; - HTML_URLChanged_t_u_from_w((void *)&ret, (const void *)this); + 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; } #endif - #ifdef __i386__ u32_HTML_URLChanged_t::operator w32_HTML_URLChanged_t() const { w32_HTML_URLChanged_t ret; - HTML_URLChanged_t_w_from_u((void *)&ret, (const void *)this); + ret.unBrowserHandle = this->unBrowserHandle; + steamclient_unix_path_to_dos_path(1, this->pchURL, g_tmppath, TEMP_PATH_BUFFER_LENGTH, 1); + ret.pchURL = g_tmppath; + ret.pchPostData = this->pchPostData; + ret.bIsRedirect = this->bIsRedirect; + ret.pchPageTitle = this->pchPageTitle; + ret.bNewNavigation = this->bNewNavigation; return ret; } #endif +static void HTML_URLChanged_t_utow(void *dst, const void *src) +{ + *(w_HTML_URLChanged_t *)dst = *(const u_HTML_URLChanged_t *)src; +} + 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 ); @@ -12430,41 +12420,31 @@ 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 ); -static void HTML_UpdateToolTip_t_u_from_w(void *dst, const void *src) -{ - u_HTML_UpdateToolTip_t *d = (u_HTML_UpdateToolTip_t *)dst; - const w_HTML_UpdateToolTip_t *s = (const w_HTML_UpdateToolTip_t *)src; - - d->unBrowserHandle = s->unBrowserHandle; - d->pchMsg = s->pchMsg; -} #ifdef __x86_64__ w64_HTML_UpdateToolTip_t::operator u64_HTML_UpdateToolTip_t() const { u64_HTML_UpdateToolTip_t ret; - HTML_UpdateToolTip_t_u_from_w((void *)&ret, (const void *)this); + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchMsg = this->pchMsg; return ret; } #endif - -static void HTML_UpdateToolTip_t_w_from_u(void *dst, const void *src) -{ - w_HTML_UpdateToolTip_t *d = (w_HTML_UpdateToolTip_t *)dst; - const u_HTML_UpdateToolTip_t *s = (const u_HTML_UpdateToolTip_t *)src; - - d->unBrowserHandle = s->unBrowserHandle; - d->pchMsg = s->pchMsg; -} #ifdef __x86_64__ u64_HTML_UpdateToolTip_t::operator w64_HTML_UpdateToolTip_t() const { w64_HTML_UpdateToolTip_t ret; - HTML_UpdateToolTip_t_w_from_u((void *)&ret, (const void *)this); + ret.unBrowserHandle = this->unBrowserHandle; + ret.pchMsg = this->pchMsg; return ret; } #endif +static void HTML_UpdateToolTip_t_utow(void *dst, const void *src) +{ + *(w_HTML_UpdateToolTip_t *)dst = *(const u_HTML_UpdateToolTip_t *)src; +} + 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 ); @@ -12593,43 +12573,28 @@ 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 ); -static void HTTPRequestCompleted_t_132x_u_from_w(void *dst, const void *src) -{ - u_HTTPRequestCompleted_t_132x *d = (u_HTTPRequestCompleted_t_132x *)dst; - const w_HTTPRequestCompleted_t_132x *s = (const w_HTTPRequestCompleted_t_132x *)src; - - d->m_hRequest = s->m_hRequest; - d->m_ulContextValue = s->m_ulContextValue; - d->m_bRequestSuccessful = s->m_bRequestSuccessful; - d->m_eStatusCode = s->m_eStatusCode; - d->m_unBodySize = s->m_unBodySize; -} #ifdef __x86_64__ w64_HTTPRequestCompleted_t_132x::operator u64_HTTPRequestCompleted_t_132x() const { u64_HTTPRequestCompleted_t_132x ret; - HTTPRequestCompleted_t_132x_u_from_w((void *)&ret, (const void *)this); + 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 - -static void HTTPRequestCompleted_t_132x_w_from_u(void *dst, const void *src) -{ - w_HTTPRequestCompleted_t_132x *d = (w_HTTPRequestCompleted_t_132x *)dst; - const u_HTTPRequestCompleted_t_132x *s = (const u_HTTPRequestCompleted_t_132x *)src; - - d->m_hRequest = s->m_hRequest; - d->m_ulContextValue = s->m_ulContextValue; - d->m_bRequestSuccessful = s->m_bRequestSuccessful; - d->m_eStatusCode = s->m_eStatusCode; - d->m_unBodySize = s->m_unBodySize; -} #ifdef __x86_64__ u64_HTTPRequestCompleted_t_132x::operator w64_HTTPRequestCompleted_t_132x() const { w64_HTTPRequestCompleted_t_132x ret; - HTTPRequestCompleted_t_132x_w_from_u((void *)&ret, (const void *)this); + 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 @@ -12638,56 +12603,53 @@ u64_HTTPRequestCompleted_t_132x::operator w64_HTTPRequestCompleted_t_132x() cons w32_HTTPRequestCompleted_t_132x::operator u32_HTTPRequestCompleted_t_132x() const { u32_HTTPRequestCompleted_t_132x ret; - HTTPRequestCompleted_t_132x_u_from_w((void *)&ret, (const void *)this); + 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__ u32_HTTPRequestCompleted_t_132x::operator w32_HTTPRequestCompleted_t_132x() const { w32_HTTPRequestCompleted_t_132x ret; - HTTPRequestCompleted_t_132x_w_from_u((void *)&ret, (const void *)this); + 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 -static void HTTPRequestCompleted_t_123_u_from_w(void *dst, const void *src) +static void HTTPRequestCompleted_t_132x_utow(void *dst, const void *src) { - u_HTTPRequestCompleted_t_123 *d = (u_HTTPRequestCompleted_t_123 *)dst; - const w_HTTPRequestCompleted_t_123 *s = (const w_HTTPRequestCompleted_t_123 *)src; - - d->m_hRequest = s->m_hRequest; - d->m_ulContextValue = s->m_ulContextValue; - d->m_bRequestSuccessful = s->m_bRequestSuccessful; - d->m_eStatusCode = s->m_eStatusCode; + *(w_HTTPRequestCompleted_t_132x *)dst = *(const u_HTTPRequestCompleted_t_132x *)src; } + #ifdef __x86_64__ w64_HTTPRequestCompleted_t_123::operator u64_HTTPRequestCompleted_t_123() const { u64_HTTPRequestCompleted_t_123 ret; - HTTPRequestCompleted_t_123_u_from_w((void *)&ret, (const void *)this); + 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 - -static void HTTPRequestCompleted_t_123_w_from_u(void *dst, const void *src) -{ - w_HTTPRequestCompleted_t_123 *d = (w_HTTPRequestCompleted_t_123 *)dst; - const u_HTTPRequestCompleted_t_123 *s = (const u_HTTPRequestCompleted_t_123 *)src; - - d->m_hRequest = s->m_hRequest; - d->m_ulContextValue = s->m_ulContextValue; - d->m_bRequestSuccessful = s->m_bRequestSuccessful; - d->m_eStatusCode = s->m_eStatusCode; -} #ifdef __x86_64__ u64_HTTPRequestCompleted_t_123::operator w64_HTTPRequestCompleted_t_123() const { w64_HTTPRequestCompleted_t_123 ret; - HTTPRequestCompleted_t_123_w_from_u((void *)&ret, (const void *)this); + 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 @@ -12696,60 +12658,60 @@ u64_HTTPRequestCompleted_t_123::operator w64_HTTPRequestCompleted_t_123() const w32_HTTPRequestCompleted_t_123::operator u32_HTTPRequestCompleted_t_123() const { u32_HTTPRequestCompleted_t_123 ret; - HTTPRequestCompleted_t_123_u_from_w((void *)&ret, (const void *)this); + 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__ u32_HTTPRequestCompleted_t_123::operator w32_HTTPRequestCompleted_t_123() const { w32_HTTPRequestCompleted_t_123 ret; - HTTPRequestCompleted_t_123_w_from_u((void *)&ret, (const void *)this); + 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 -static void HTTPRequestCompleted_t_115_u_from_w(void *dst, const void *src) +static void HTTPRequestCompleted_t_123_utow(void *dst, const void *src) { - u_HTTPRequestCompleted_t_115 *d = (u_HTTPRequestCompleted_t_115 *)dst; - const w_HTTPRequestCompleted_t_115 *s = (const w_HTTPRequestCompleted_t_115 *)src; - - d->m_hRequest = s->m_hRequest; - d->m_ulContextValue = s->m_ulContextValue; - d->m_bRequestSuccessful = s->m_bRequestSuccessful; - d->m_eStatusCode = s->m_eStatusCode; + *(w_HTTPRequestCompleted_t_123 *)dst = *(const u_HTTPRequestCompleted_t_123 *)src; } + #ifdef __i386__ w32_HTTPRequestCompleted_t_115::operator u32_HTTPRequestCompleted_t_115() const { u32_HTTPRequestCompleted_t_115 ret; - HTTPRequestCompleted_t_115_u_from_w((void *)&ret, (const void *)this); + 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 - -static void HTTPRequestCompleted_t_115_w_from_u(void *dst, const void *src) -{ - w_HTTPRequestCompleted_t_115 *d = (w_HTTPRequestCompleted_t_115 *)dst; - const u_HTTPRequestCompleted_t_115 *s = (const u_HTTPRequestCompleted_t_115 *)src; - - d->m_hRequest = s->m_hRequest; - d->m_ulContextValue = s->m_ulContextValue; - d->m_bRequestSuccessful = s->m_bRequestSuccessful; - d->m_eStatusCode = s->m_eStatusCode; -} #ifdef __i386__ u32_HTTPRequestCompleted_t_115::operator w32_HTTPRequestCompleted_t_115() const { w32_HTTPRequestCompleted_t_115 ret; - HTTPRequestCompleted_t_115_w_from_u((void *)&ret, (const void *)this); + 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 +static void HTTPRequestCompleted_t_115_utow(void *dst, const void *src) +{ + *(w_HTTPRequestCompleted_t_115 *)dst = *(const u_HTTPRequestCompleted_t_115 *)src; +} + 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 ); @@ -12830,41 +12792,26 @@ 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 ); -static void HTTPRequestDataReceived_t_123_u_from_w(void *dst, const void *src) -{ - u_HTTPRequestDataReceived_t_123 *d = (u_HTTPRequestDataReceived_t_123 *)dst; - const w_HTTPRequestDataReceived_t_123 *s = (const w_HTTPRequestDataReceived_t_123 *)src; - - d->m_hRequest = s->m_hRequest; - d->m_ulContextValue = s->m_ulContextValue; - d->m_cOffset = s->m_cOffset; - d->m_cBytesReceived = s->m_cBytesReceived; -} #ifdef __x86_64__ w64_HTTPRequestDataReceived_t_123::operator u64_HTTPRequestDataReceived_t_123() const { u64_HTTPRequestDataReceived_t_123 ret; - HTTPRequestDataReceived_t_123_u_from_w((void *)&ret, (const void *)this); + 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 - -static void HTTPRequestDataReceived_t_123_w_from_u(void *dst, const void *src) -{ - w_HTTPRequestDataReceived_t_123 *d = (w_HTTPRequestDataReceived_t_123 *)dst; - const u_HTTPRequestDataReceived_t_123 *s = (const u_HTTPRequestDataReceived_t_123 *)src; - - d->m_hRequest = s->m_hRequest; - d->m_ulContextValue = s->m_ulContextValue; - d->m_cOffset = s->m_cOffset; - d->m_cBytesReceived = s->m_cBytesReceived; -} #ifdef __x86_64__ u64_HTTPRequestDataReceived_t_123::operator w64_HTTPRequestDataReceived_t_123() const { w64_HTTPRequestDataReceived_t_123 ret; - HTTPRequestDataReceived_t_123_w_from_u((void *)&ret, (const void *)this); + 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 @@ -12873,60 +12820,60 @@ u64_HTTPRequestDataReceived_t_123::operator w64_HTTPRequestDataReceived_t_123() w32_HTTPRequestDataReceived_t_123::operator u32_HTTPRequestDataReceived_t_123() const { u32_HTTPRequestDataReceived_t_123 ret; - HTTPRequestDataReceived_t_123_u_from_w((void *)&ret, (const void *)this); + 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__ u32_HTTPRequestDataReceived_t_123::operator w32_HTTPRequestDataReceived_t_123() const { w32_HTTPRequestDataReceived_t_123 ret; - HTTPRequestDataReceived_t_123_w_from_u((void *)&ret, (const void *)this); + 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 -static void HTTPRequestDataReceived_t_121x_u_from_w(void *dst, const void *src) +static void HTTPRequestDataReceived_t_123_utow(void *dst, const void *src) { - u_HTTPRequestDataReceived_t_121x *d = (u_HTTPRequestDataReceived_t_121x *)dst; - const w_HTTPRequestDataReceived_t_121x *s = (const w_HTTPRequestDataReceived_t_121x *)src; - - d->m_hRequest = s->m_hRequest; - d->m_ulContextValue = s->m_ulContextValue; - d->m_cOffset = s->m_cOffset; - d->m_cBytesReceived = s->m_cBytesReceived; + *(w_HTTPRequestDataReceived_t_123 *)dst = *(const u_HTTPRequestDataReceived_t_123 *)src; } + #ifdef __i386__ w32_HTTPRequestDataReceived_t_121x::operator u32_HTTPRequestDataReceived_t_121x() const { u32_HTTPRequestDataReceived_t_121x ret; - HTTPRequestDataReceived_t_121x_u_from_w((void *)&ret, (const void *)this); + 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 - -static void HTTPRequestDataReceived_t_121x_w_from_u(void *dst, const void *src) -{ - w_HTTPRequestDataReceived_t_121x *d = (w_HTTPRequestDataReceived_t_121x *)dst; - const u_HTTPRequestDataReceived_t_121x *s = (const u_HTTPRequestDataReceived_t_121x *)src; - - d->m_hRequest = s->m_hRequest; - d->m_ulContextValue = s->m_ulContextValue; - d->m_cOffset = s->m_cOffset; - d->m_cBytesReceived = s->m_cBytesReceived; -} #ifdef __i386__ u32_HTTPRequestDataReceived_t_121x::operator w32_HTTPRequestDataReceived_t_121x() const { w32_HTTPRequestDataReceived_t_121x ret; - HTTPRequestDataReceived_t_121x_w_from_u((void *)&ret, (const void *)this); + 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 +static void HTTPRequestDataReceived_t_121x_utow(void *dst, const void *src) +{ + *(w_HTTPRequestDataReceived_t_121x *)dst = *(const u_HTTPRequestDataReceived_t_121x *)src; +} + 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 ); @@ -12975,37 +12922,22 @@ 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 ); -static void HTTPRequestHeadersReceived_t_123_u_from_w(void *dst, const void *src) -{ - u_HTTPRequestHeadersReceived_t_123 *d = (u_HTTPRequestHeadersReceived_t_123 *)dst; - const w_HTTPRequestHeadersReceived_t_123 *s = (const w_HTTPRequestHeadersReceived_t_123 *)src; - - d->m_hRequest = s->m_hRequest; - d->m_ulContextValue = s->m_ulContextValue; -} #ifdef __x86_64__ w64_HTTPRequestHeadersReceived_t_123::operator u64_HTTPRequestHeadersReceived_t_123() const { u64_HTTPRequestHeadersReceived_t_123 ret; - HTTPRequestHeadersReceived_t_123_u_from_w((void *)&ret, (const void *)this); + ret.m_hRequest = this->m_hRequest; + ret.m_ulContextValue = this->m_ulContextValue; return ret; } #endif - -static void HTTPRequestHeadersReceived_t_123_w_from_u(void *dst, const void *src) -{ - w_HTTPRequestHeadersReceived_t_123 *d = (w_HTTPRequestHeadersReceived_t_123 *)dst; - const u_HTTPRequestHeadersReceived_t_123 *s = (const u_HTTPRequestHeadersReceived_t_123 *)src; - - d->m_hRequest = s->m_hRequest; - d->m_ulContextValue = s->m_ulContextValue; -} #ifdef __x86_64__ u64_HTTPRequestHeadersReceived_t_123::operator w64_HTTPRequestHeadersReceived_t_123() const { w64_HTTPRequestHeadersReceived_t_123 ret; - HTTPRequestHeadersReceived_t_123_w_from_u((void *)&ret, (const void *)this); + ret.m_hRequest = this->m_hRequest; + ret.m_ulContextValue = this->m_ulContextValue; return ret; } #endif @@ -13014,56 +12946,52 @@ u64_HTTPRequestHeadersReceived_t_123::operator w64_HTTPRequestHeadersReceived_t_ w32_HTTPRequestHeadersReceived_t_123::operator u32_HTTPRequestHeadersReceived_t_123() const { u32_HTTPRequestHeadersReceived_t_123 ret; - HTTPRequestHeadersReceived_t_123_u_from_w((void *)&ret, (const void *)this); + ret.m_hRequest = this->m_hRequest; + ret.m_ulContextValue = this->m_ulContextValue; return ret; } #endif - #ifdef __i386__ u32_HTTPRequestHeadersReceived_t_123::operator w32_HTTPRequestHeadersReceived_t_123() const { w32_HTTPRequestHeadersReceived_t_123 ret; - HTTPRequestHeadersReceived_t_123_w_from_u((void *)&ret, (const void *)this); + ret.m_hRequest = this->m_hRequest; + ret.m_ulContextValue = this->m_ulContextValue; return ret; } #endif -static void HTTPRequestHeadersReceived_t_121x_u_from_w(void *dst, const void *src) +static void HTTPRequestHeadersReceived_t_123_utow(void *dst, const void *src) { - u_HTTPRequestHeadersReceived_t_121x *d = (u_HTTPRequestHeadersReceived_t_121x *)dst; - const w_HTTPRequestHeadersReceived_t_121x *s = (const w_HTTPRequestHeadersReceived_t_121x *)src; - - d->m_hRequest = s->m_hRequest; - d->m_ulContextValue = s->m_ulContextValue; + *(w_HTTPRequestHeadersReceived_t_123 *)dst = *(const u_HTTPRequestHeadersReceived_t_123 *)src; } + #ifdef __i386__ w32_HTTPRequestHeadersReceived_t_121x::operator u32_HTTPRequestHeadersReceived_t_121x() const { u32_HTTPRequestHeadersReceived_t_121x ret; - HTTPRequestHeadersReceived_t_121x_u_from_w((void *)&ret, (const void *)this); + ret.m_hRequest = this->m_hRequest; + ret.m_ulContextValue = this->m_ulContextValue; return ret; } #endif - -static void HTTPRequestHeadersReceived_t_121x_w_from_u(void *dst, const void *src) -{ - w_HTTPRequestHeadersReceived_t_121x *d = (w_HTTPRequestHeadersReceived_t_121x *)dst; - const u_HTTPRequestHeadersReceived_t_121x *s = (const u_HTTPRequestHeadersReceived_t_121x *)src; - - d->m_hRequest = s->m_hRequest; - d->m_ulContextValue = s->m_ulContextValue; -} #ifdef __i386__ u32_HTTPRequestHeadersReceived_t_121x::operator w32_HTTPRequestHeadersReceived_t_121x() const { w32_HTTPRequestHeadersReceived_t_121x ret; - HTTPRequestHeadersReceived_t_121x_w_from_u((void *)&ret, (const void *)this); + ret.m_hRequest = this->m_hRequest; + ret.m_ulContextValue = this->m_ulContextValue; return ret; } #endif +static void HTTPRequestHeadersReceived_t_121x_utow(void *dst, const void *src) +{ + *(w_HTTPRequestHeadersReceived_t_121x *)dst = *(const u_HTTPRequestHeadersReceived_t_121x *)src; +} + C_ASSERT( sizeof(w64_ItemInstalled_t_160) >= 32 ); C_ASSERT( offsetof(w64_ItemInstalled_t_160, m_unAppID) == 0 ); C_ASSERT( sizeof(w64_ItemInstalled_t_160().m_unAppID) >= 4 ); @@ -13128,41 +13056,26 @@ C_ASSERT( sizeof(u32_ItemInstalled_t_130().m_unAppID) >= 4 ); C_ASSERT( offsetof(u32_ItemInstalled_t_130, m_nPublishedFileId) == 4 ); C_ASSERT( sizeof(u32_ItemInstalled_t_130().m_nPublishedFileId) >= 8 ); -static void ItemInstalled_t_160_u_from_w(void *dst, const void *src) -{ - u_ItemInstalled_t_160 *d = (u_ItemInstalled_t_160 *)dst; - const w_ItemInstalled_t_160 *s = (const w_ItemInstalled_t_160 *)src; - - d->m_unAppID = s->m_unAppID; - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_hLegacyContent = s->m_hLegacyContent; - d->m_unManifestID = s->m_unManifestID; -} #ifdef __x86_64__ w64_ItemInstalled_t_160::operator u64_ItemInstalled_t_160() const { u64_ItemInstalled_t_160 ret; - ItemInstalled_t_160_u_from_w((void *)&ret, (const void *)this); + ret.m_unAppID = this->m_unAppID; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_hLegacyContent = this->m_hLegacyContent; + ret.m_unManifestID = this->m_unManifestID; return ret; } #endif - -static void ItemInstalled_t_160_w_from_u(void *dst, const void *src) -{ - w_ItemInstalled_t_160 *d = (w_ItemInstalled_t_160 *)dst; - const u_ItemInstalled_t_160 *s = (const u_ItemInstalled_t_160 *)src; - - d->m_unAppID = s->m_unAppID; - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_hLegacyContent = s->m_hLegacyContent; - d->m_unManifestID = s->m_unManifestID; -} #ifdef __x86_64__ u64_ItemInstalled_t_160::operator w64_ItemInstalled_t_160() const { w64_ItemInstalled_t_160 ret; - ItemInstalled_t_160_w_from_u((void *)&ret, (const void *)this); + ret.m_unAppID = this->m_unAppID; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_hLegacyContent = this->m_hLegacyContent; + ret.m_unManifestID = this->m_unManifestID; return ret; } #endif @@ -13171,52 +13084,47 @@ u64_ItemInstalled_t_160::operator w64_ItemInstalled_t_160() const w32_ItemInstalled_t_160::operator u32_ItemInstalled_t_160() const { u32_ItemInstalled_t_160 ret; - ItemInstalled_t_160_u_from_w((void *)&ret, (const void *)this); + ret.m_unAppID = this->m_unAppID; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_hLegacyContent = this->m_hLegacyContent; + ret.m_unManifestID = this->m_unManifestID; return ret; } #endif - #ifdef __i386__ u32_ItemInstalled_t_160::operator w32_ItemInstalled_t_160() const { w32_ItemInstalled_t_160 ret; - ItemInstalled_t_160_w_from_u((void *)&ret, (const void *)this); + ret.m_unAppID = this->m_unAppID; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_hLegacyContent = this->m_hLegacyContent; + ret.m_unManifestID = this->m_unManifestID; return ret; } #endif -static void ItemInstalled_t_130_u_from_w(void *dst, const void *src) +static void ItemInstalled_t_160_utow(void *dst, const void *src) { - u_ItemInstalled_t_130 *d = (u_ItemInstalled_t_130 *)dst; - const w_ItemInstalled_t_130 *s = (const w_ItemInstalled_t_130 *)src; - - d->m_unAppID = s->m_unAppID; - d->m_nPublishedFileId = s->m_nPublishedFileId; + *(w_ItemInstalled_t_160 *)dst = *(const u_ItemInstalled_t_160 *)src; } + #ifdef __x86_64__ w64_ItemInstalled_t_130::operator u64_ItemInstalled_t_130() const { u64_ItemInstalled_t_130 ret; - ItemInstalled_t_130_u_from_w((void *)&ret, (const void *)this); + ret.m_unAppID = this->m_unAppID; + ret.m_nPublishedFileId = this->m_nPublishedFileId; return ret; } #endif - -static void ItemInstalled_t_130_w_from_u(void *dst, const void *src) -{ - w_ItemInstalled_t_130 *d = (w_ItemInstalled_t_130 *)dst; - const u_ItemInstalled_t_130 *s = (const u_ItemInstalled_t_130 *)src; - - d->m_unAppID = s->m_unAppID; - d->m_nPublishedFileId = s->m_nPublishedFileId; -} #ifdef __x86_64__ u64_ItemInstalled_t_130::operator w64_ItemInstalled_t_130() const { w64_ItemInstalled_t_130 ret; - ItemInstalled_t_130_w_from_u((void *)&ret, (const void *)this); + ret.m_unAppID = this->m_unAppID; + ret.m_nPublishedFileId = this->m_nPublishedFileId; return ret; } #endif @@ -13225,21 +13133,27 @@ u64_ItemInstalled_t_130::operator w64_ItemInstalled_t_130() const w32_ItemInstalled_t_130::operator u32_ItemInstalled_t_130() const { u32_ItemInstalled_t_130 ret; - ItemInstalled_t_130_u_from_w((void *)&ret, (const void *)this); + ret.m_unAppID = this->m_unAppID; + ret.m_nPublishedFileId = this->m_nPublishedFileId; return ret; } #endif - #ifdef __i386__ u32_ItemInstalled_t_130::operator w32_ItemInstalled_t_130() const { w32_ItemInstalled_t_130 ret; - ItemInstalled_t_130_w_from_u((void *)&ret, (const void *)this); + ret.m_unAppID = this->m_unAppID; + ret.m_nPublishedFileId = this->m_nPublishedFileId; return ret; } #endif +static void ItemInstalled_t_130_utow(void *dst, const void *src) +{ + *(w_ItemInstalled_t_130 *)dst = *(const u_ItemInstalled_t_130 *)src; +} + 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 ); @@ -13280,41 +13194,26 @@ 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 ); -static void JoinPartyCallback_t_u_from_w(void *dst, const void *src) -{ - u_JoinPartyCallback_t *d = (u_JoinPartyCallback_t *)dst; - const w_JoinPartyCallback_t *s = (const w_JoinPartyCallback_t *)src; - - d->m_eResult = s->m_eResult; - d->m_ulBeaconID = s->m_ulBeaconID; - d->m_SteamIDBeaconOwner = s->m_SteamIDBeaconOwner; - d->m_rgchConnectString = s->m_rgchConnectString; -} #ifdef __x86_64__ w64_JoinPartyCallback_t::operator u64_JoinPartyCallback_t() const { u64_JoinPartyCallback_t ret; - JoinPartyCallback_t_u_from_w((void *)&ret, (const void *)this); + 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 - -static void JoinPartyCallback_t_w_from_u(void *dst, const void *src) -{ - w_JoinPartyCallback_t *d = (w_JoinPartyCallback_t *)dst; - const u_JoinPartyCallback_t *s = (const u_JoinPartyCallback_t *)src; - - d->m_eResult = s->m_eResult; - d->m_ulBeaconID = s->m_ulBeaconID; - d->m_SteamIDBeaconOwner = s->m_SteamIDBeaconOwner; - d->m_rgchConnectString = s->m_rgchConnectString; -} #ifdef __x86_64__ u64_JoinPartyCallback_t::operator w64_JoinPartyCallback_t() const { w64_JoinPartyCallback_t ret; - JoinPartyCallback_t_w_from_u((void *)&ret, (const void *)this); + 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 @@ -13323,21 +13222,31 @@ u64_JoinPartyCallback_t::operator w64_JoinPartyCallback_t() const w32_JoinPartyCallback_t::operator u32_JoinPartyCallback_t() const { u32_JoinPartyCallback_t ret; - JoinPartyCallback_t_u_from_w((void *)&ret, (const void *)this); + 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__ u32_JoinPartyCallback_t::operator w32_JoinPartyCallback_t() const { w32_JoinPartyCallback_t ret; - JoinPartyCallback_t_w_from_u((void *)&ret, (const void *)this); + 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 +static void JoinPartyCallback_t_utow(void *dst, const void *src) +{ + *(w_JoinPartyCallback_t *)dst = *(const u_JoinPartyCallback_t *)src; +} + 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 ); @@ -13474,43 +13383,28 @@ 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 ); -static void LeaderboardEntry_t_123_u_from_w(void *dst, const void *src) -{ - u_LeaderboardEntry_t_123 *d = (u_LeaderboardEntry_t_123 *)dst; - const w_LeaderboardEntry_t_123 *s = (const w_LeaderboardEntry_t_123 *)src; - - d->m_steamIDUser = s->m_steamIDUser; - d->m_nGlobalRank = s->m_nGlobalRank; - d->m_nScore = s->m_nScore; - d->m_cDetails = s->m_cDetails; - d->m_hUGC = s->m_hUGC; -} #ifdef __x86_64__ w64_LeaderboardEntry_t_123::operator u64_LeaderboardEntry_t_123() const { u64_LeaderboardEntry_t_123 ret; - LeaderboardEntry_t_123_u_from_w((void *)&ret, (const void *)this); + 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 - -static void LeaderboardEntry_t_123_w_from_u(void *dst, const void *src) -{ - w_LeaderboardEntry_t_123 *d = (w_LeaderboardEntry_t_123 *)dst; - const u_LeaderboardEntry_t_123 *s = (const u_LeaderboardEntry_t_123 *)src; - - d->m_steamIDUser = s->m_steamIDUser; - d->m_nGlobalRank = s->m_nGlobalRank; - d->m_nScore = s->m_nScore; - d->m_cDetails = s->m_cDetails; - d->m_hUGC = s->m_hUGC; -} #ifdef __x86_64__ u64_LeaderboardEntry_t_123::operator w64_LeaderboardEntry_t_123() const { w64_LeaderboardEntry_t_123 ret; - LeaderboardEntry_t_123_w_from_u((void *)&ret, (const void *)this); + 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 @@ -13519,62 +13413,69 @@ u64_LeaderboardEntry_t_123::operator w64_LeaderboardEntry_t_123() const w32_LeaderboardEntry_t_123::operator u32_LeaderboardEntry_t_123() const { u32_LeaderboardEntry_t_123 ret; - LeaderboardEntry_t_123_u_from_w((void *)&ret, (const void *)this); + 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__ u32_LeaderboardEntry_t_123::operator w32_LeaderboardEntry_t_123() const { w32_LeaderboardEntry_t_123 ret; - LeaderboardEntry_t_123_w_from_u((void *)&ret, (const void *)this); + 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 -static void LeaderboardEntry_t_111x_u_from_w(void *dst, const void *src) +static void LeaderboardEntry_t_123_utow(void *dst, const void *src) { - u_LeaderboardEntry_t_111x *d = (u_LeaderboardEntry_t_111x *)dst; - const w_LeaderboardEntry_t_111x *s = (const w_LeaderboardEntry_t_111x *)src; - - d->m_steamIDUser = s->m_steamIDUser; - d->m_nGlobalRank = s->m_nGlobalRank; - d->m_nScore = s->m_nScore; - d->m_cDetails = s->m_cDetails; - d->m_hUGC = s->m_hUGC; + *(w_LeaderboardEntry_t_123 *)dst = *(const u_LeaderboardEntry_t_123 *)src; } + #ifdef __i386__ w32_LeaderboardEntry_t_111x::operator u32_LeaderboardEntry_t_111x() const { u32_LeaderboardEntry_t_111x ret; - LeaderboardEntry_t_111x_u_from_w((void *)&ret, (const void *)this); + 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 - -static void LeaderboardEntry_t_111x_w_from_u(void *dst, const void *src) -{ - w_LeaderboardEntry_t_111x *d = (w_LeaderboardEntry_t_111x *)dst; - const u_LeaderboardEntry_t_111x *s = (const u_LeaderboardEntry_t_111x *)src; - - d->m_steamIDUser = s->m_steamIDUser; - d->m_nGlobalRank = s->m_nGlobalRank; - d->m_nScore = s->m_nScore; - d->m_cDetails = s->m_cDetails; - d->m_hUGC = s->m_hUGC; -} #ifdef __i386__ u32_LeaderboardEntry_t_111x::operator w32_LeaderboardEntry_t_111x() const { w32_LeaderboardEntry_t_111x ret; - LeaderboardEntry_t_111x_w_from_u((void *)&ret, (const void *)this); + 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 +static void LeaderboardEntry_t_111x_utow(void *dst, const void *src) +{ + *(w_LeaderboardEntry_t_111x *)dst = *(const u_LeaderboardEntry_t_111x *)src; +} + +static void LeaderboardEntry_t_104_utow(void *dst, const void *src) +{ + *(w_LeaderboardEntry_t_104 *)dst = *(const u_LeaderboardEntry_t_104 *)src; +} + 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 ); @@ -13687,45 +13588,30 @@ 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 ); -static void LeaderboardScoreUploaded_t_123_u_from_w(void *dst, const void *src) -{ - u_LeaderboardScoreUploaded_t_123 *d = (u_LeaderboardScoreUploaded_t_123 *)dst; - const w_LeaderboardScoreUploaded_t_123 *s = (const w_LeaderboardScoreUploaded_t_123 *)src; - - d->m_bSuccess = s->m_bSuccess; - d->m_hSteamLeaderboard = s->m_hSteamLeaderboard; - d->m_nScore = s->m_nScore; - d->m_bScoreChanged = s->m_bScoreChanged; - d->m_nGlobalRankNew = s->m_nGlobalRankNew; - d->m_nGlobalRankPrevious = s->m_nGlobalRankPrevious; -} #ifdef __x86_64__ w64_LeaderboardScoreUploaded_t_123::operator u64_LeaderboardScoreUploaded_t_123() const { u64_LeaderboardScoreUploaded_t_123 ret; - LeaderboardScoreUploaded_t_123_u_from_w((void *)&ret, (const void *)this); + 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 - -static void LeaderboardScoreUploaded_t_123_w_from_u(void *dst, const void *src) -{ - w_LeaderboardScoreUploaded_t_123 *d = (w_LeaderboardScoreUploaded_t_123 *)dst; - const u_LeaderboardScoreUploaded_t_123 *s = (const u_LeaderboardScoreUploaded_t_123 *)src; - - d->m_bSuccess = s->m_bSuccess; - d->m_hSteamLeaderboard = s->m_hSteamLeaderboard; - d->m_nScore = s->m_nScore; - d->m_bScoreChanged = s->m_bScoreChanged; - d->m_nGlobalRankNew = s->m_nGlobalRankNew; - d->m_nGlobalRankPrevious = s->m_nGlobalRankPrevious; -} #ifdef __x86_64__ u64_LeaderboardScoreUploaded_t_123::operator w64_LeaderboardScoreUploaded_t_123() const { w64_LeaderboardScoreUploaded_t_123 ret; - LeaderboardScoreUploaded_t_123_w_from_u((void *)&ret, (const void *)this); + 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 @@ -13734,64 +13620,68 @@ u64_LeaderboardScoreUploaded_t_123::operator w64_LeaderboardScoreUploaded_t_123( w32_LeaderboardScoreUploaded_t_123::operator u32_LeaderboardScoreUploaded_t_123() const { u32_LeaderboardScoreUploaded_t_123 ret; - LeaderboardScoreUploaded_t_123_u_from_w((void *)&ret, (const void *)this); + 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__ u32_LeaderboardScoreUploaded_t_123::operator w32_LeaderboardScoreUploaded_t_123() const { w32_LeaderboardScoreUploaded_t_123 ret; - LeaderboardScoreUploaded_t_123_w_from_u((void *)&ret, (const void *)this); + 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 -static void LeaderboardScoreUploaded_t_104_u_from_w(void *dst, const void *src) +static void LeaderboardScoreUploaded_t_123_utow(void *dst, const void *src) { - u_LeaderboardScoreUploaded_t_104 *d = (u_LeaderboardScoreUploaded_t_104 *)dst; - const w_LeaderboardScoreUploaded_t_104 *s = (const w_LeaderboardScoreUploaded_t_104 *)src; - - d->m_bSuccess = s->m_bSuccess; - d->m_hSteamLeaderboard = s->m_hSteamLeaderboard; - d->m_nScore = s->m_nScore; - d->m_bScoreChanged = s->m_bScoreChanged; - d->m_nGlobalRankNew = s->m_nGlobalRankNew; - d->m_nGlobalRankPrevious = s->m_nGlobalRankPrevious; + *(w_LeaderboardScoreUploaded_t_123 *)dst = *(const u_LeaderboardScoreUploaded_t_123 *)src; } + #ifdef __i386__ w32_LeaderboardScoreUploaded_t_104::operator u32_LeaderboardScoreUploaded_t_104() const { u32_LeaderboardScoreUploaded_t_104 ret; - LeaderboardScoreUploaded_t_104_u_from_w((void *)&ret, (const void *)this); + 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 - -static void LeaderboardScoreUploaded_t_104_w_from_u(void *dst, const void *src) -{ - w_LeaderboardScoreUploaded_t_104 *d = (w_LeaderboardScoreUploaded_t_104 *)dst; - const u_LeaderboardScoreUploaded_t_104 *s = (const u_LeaderboardScoreUploaded_t_104 *)src; - - d->m_bSuccess = s->m_bSuccess; - d->m_hSteamLeaderboard = s->m_hSteamLeaderboard; - d->m_nScore = s->m_nScore; - d->m_bScoreChanged = s->m_bScoreChanged; - d->m_nGlobalRankNew = s->m_nGlobalRankNew; - d->m_nGlobalRankPrevious = s->m_nGlobalRankPrevious; -} #ifdef __i386__ u32_LeaderboardScoreUploaded_t_104::operator w32_LeaderboardScoreUploaded_t_104() const { w32_LeaderboardScoreUploaded_t_104 ret; - LeaderboardScoreUploaded_t_104_w_from_u((void *)&ret, (const void *)this); + 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 +static void LeaderboardScoreUploaded_t_104_utow(void *dst, const void *src) +{ + *(w_LeaderboardScoreUploaded_t_104 *)dst = *(const u_LeaderboardScoreUploaded_t_104 *)src; +} + 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 ); @@ -13840,37 +13730,22 @@ 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 ); -static void LeaderboardUGCSet_t_123_u_from_w(void *dst, const void *src) -{ - u_LeaderboardUGCSet_t_123 *d = (u_LeaderboardUGCSet_t_123 *)dst; - const w_LeaderboardUGCSet_t_123 *s = (const w_LeaderboardUGCSet_t_123 *)src; - - d->m_eResult = s->m_eResult; - d->m_hSteamLeaderboard = s->m_hSteamLeaderboard; -} #ifdef __x86_64__ w64_LeaderboardUGCSet_t_123::operator u64_LeaderboardUGCSet_t_123() const { u64_LeaderboardUGCSet_t_123 ret; - LeaderboardUGCSet_t_123_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_hSteamLeaderboard = this->m_hSteamLeaderboard; return ret; } #endif - -static void LeaderboardUGCSet_t_123_w_from_u(void *dst, const void *src) -{ - w_LeaderboardUGCSet_t_123 *d = (w_LeaderboardUGCSet_t_123 *)dst; - const u_LeaderboardUGCSet_t_123 *s = (const u_LeaderboardUGCSet_t_123 *)src; - - d->m_eResult = s->m_eResult; - d->m_hSteamLeaderboard = s->m_hSteamLeaderboard; -} #ifdef __x86_64__ u64_LeaderboardUGCSet_t_123::operator w64_LeaderboardUGCSet_t_123() const { w64_LeaderboardUGCSet_t_123 ret; - LeaderboardUGCSet_t_123_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_hSteamLeaderboard = this->m_hSteamLeaderboard; return ret; } #endif @@ -13879,56 +13754,52 @@ u64_LeaderboardUGCSet_t_123::operator w64_LeaderboardUGCSet_t_123() const w32_LeaderboardUGCSet_t_123::operator u32_LeaderboardUGCSet_t_123() const { u32_LeaderboardUGCSet_t_123 ret; - LeaderboardUGCSet_t_123_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_hSteamLeaderboard = this->m_hSteamLeaderboard; return ret; } #endif - #ifdef __i386__ u32_LeaderboardUGCSet_t_123::operator w32_LeaderboardUGCSet_t_123() const { w32_LeaderboardUGCSet_t_123 ret; - LeaderboardUGCSet_t_123_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_hSteamLeaderboard = this->m_hSteamLeaderboard; return ret; } #endif -static void LeaderboardUGCSet_t_111x_u_from_w(void *dst, const void *src) +static void LeaderboardUGCSet_t_123_utow(void *dst, const void *src) { - u_LeaderboardUGCSet_t_111x *d = (u_LeaderboardUGCSet_t_111x *)dst; - const w_LeaderboardUGCSet_t_111x *s = (const w_LeaderboardUGCSet_t_111x *)src; - - d->m_eResult = s->m_eResult; - d->m_hSteamLeaderboard = s->m_hSteamLeaderboard; + *(w_LeaderboardUGCSet_t_123 *)dst = *(const u_LeaderboardUGCSet_t_123 *)src; } + #ifdef __i386__ w32_LeaderboardUGCSet_t_111x::operator u32_LeaderboardUGCSet_t_111x() const { u32_LeaderboardUGCSet_t_111x ret; - LeaderboardUGCSet_t_111x_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_hSteamLeaderboard = this->m_hSteamLeaderboard; return ret; } #endif - -static void LeaderboardUGCSet_t_111x_w_from_u(void *dst, const void *src) -{ - w_LeaderboardUGCSet_t_111x *d = (w_LeaderboardUGCSet_t_111x *)dst; - const u_LeaderboardUGCSet_t_111x *s = (const u_LeaderboardUGCSet_t_111x *)src; - - d->m_eResult = s->m_eResult; - d->m_hSteamLeaderboard = s->m_hSteamLeaderboard; -} #ifdef __i386__ u32_LeaderboardUGCSet_t_111x::operator w32_LeaderboardUGCSet_t_111x() const { w32_LeaderboardUGCSet_t_111x ret; - LeaderboardUGCSet_t_111x_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_hSteamLeaderboard = this->m_hSteamLeaderboard; return ret; } #endif +static void LeaderboardUGCSet_t_111x_utow(void *dst, const void *src) +{ + *(w_LeaderboardUGCSet_t_111x *)dst = *(const u_LeaderboardUGCSet_t_111x *)src; +} + 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 ); @@ -13977,37 +13848,22 @@ 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 ); -static void LobbyCreated_t_123_u_from_w(void *dst, const void *src) -{ - u_LobbyCreated_t_123 *d = (u_LobbyCreated_t_123 *)dst; - const w_LobbyCreated_t_123 *s = (const w_LobbyCreated_t_123 *)src; - - d->m_eResult = s->m_eResult; - d->m_ulSteamIDLobby = s->m_ulSteamIDLobby; -} #ifdef __x86_64__ w64_LobbyCreated_t_123::operator u64_LobbyCreated_t_123() const { u64_LobbyCreated_t_123 ret; - LobbyCreated_t_123_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_ulSteamIDLobby = this->m_ulSteamIDLobby; return ret; } #endif - -static void LobbyCreated_t_123_w_from_u(void *dst, const void *src) -{ - w_LobbyCreated_t_123 *d = (w_LobbyCreated_t_123 *)dst; - const u_LobbyCreated_t_123 *s = (const u_LobbyCreated_t_123 *)src; - - d->m_eResult = s->m_eResult; - d->m_ulSteamIDLobby = s->m_ulSteamIDLobby; -} #ifdef __x86_64__ u64_LobbyCreated_t_123::operator w64_LobbyCreated_t_123() const { w64_LobbyCreated_t_123 ret; - LobbyCreated_t_123_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_ulSteamIDLobby = this->m_ulSteamIDLobby; return ret; } #endif @@ -14016,56 +13872,52 @@ u64_LobbyCreated_t_123::operator w64_LobbyCreated_t_123() const w32_LobbyCreated_t_123::operator u32_LobbyCreated_t_123() const { u32_LobbyCreated_t_123 ret; - LobbyCreated_t_123_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_ulSteamIDLobby = this->m_ulSteamIDLobby; return ret; } #endif - #ifdef __i386__ u32_LobbyCreated_t_123::operator w32_LobbyCreated_t_123() const { w32_LobbyCreated_t_123 ret; - LobbyCreated_t_123_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_ulSteamIDLobby = this->m_ulSteamIDLobby; return ret; } #endif -static void LobbyCreated_t_099u_u_from_w(void *dst, const void *src) +static void LobbyCreated_t_123_utow(void *dst, const void *src) { - u_LobbyCreated_t_099u *d = (u_LobbyCreated_t_099u *)dst; - const w_LobbyCreated_t_099u *s = (const w_LobbyCreated_t_099u *)src; - - d->m_eResult = s->m_eResult; - d->m_ulSteamIDLobby = s->m_ulSteamIDLobby; + *(w_LobbyCreated_t_123 *)dst = *(const u_LobbyCreated_t_123 *)src; } + #ifdef __i386__ w32_LobbyCreated_t_099u::operator u32_LobbyCreated_t_099u() const { u32_LobbyCreated_t_099u ret; - LobbyCreated_t_099u_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_ulSteamIDLobby = this->m_ulSteamIDLobby; return ret; } #endif - -static void LobbyCreated_t_099u_w_from_u(void *dst, const void *src) -{ - w_LobbyCreated_t_099u *d = (w_LobbyCreated_t_099u *)dst; - const u_LobbyCreated_t_099u *s = (const u_LobbyCreated_t_099u *)src; - - d->m_eResult = s->m_eResult; - d->m_ulSteamIDLobby = s->m_ulSteamIDLobby; -} #ifdef __i386__ u32_LobbyCreated_t_099u::operator w32_LobbyCreated_t_099u() const { w32_LobbyCreated_t_099u ret; - LobbyCreated_t_099u_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_ulSteamIDLobby = this->m_ulSteamIDLobby; return ret; } #endif +static void LobbyCreated_t_099u_utow(void *dst, const void *src) +{ + *(w_LobbyCreated_t_099u *)dst = *(const u_LobbyCreated_t_099u *)src; +} + 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 ); @@ -14130,39 +13982,24 @@ 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 ); -static void MicroTxnAuthorizationResponse_t_123_u_from_w(void *dst, const void *src) -{ - u_MicroTxnAuthorizationResponse_t_123 *d = (u_MicroTxnAuthorizationResponse_t_123 *)dst; - const w_MicroTxnAuthorizationResponse_t_123 *s = (const w_MicroTxnAuthorizationResponse_t_123 *)src; - - d->m_unAppID = s->m_unAppID; - d->m_ulOrderID = s->m_ulOrderID; - d->m_bAuthorized = s->m_bAuthorized; -} #ifdef __x86_64__ w64_MicroTxnAuthorizationResponse_t_123::operator u64_MicroTxnAuthorizationResponse_t_123() const { u64_MicroTxnAuthorizationResponse_t_123 ret; - MicroTxnAuthorizationResponse_t_123_u_from_w((void *)&ret, (const void *)this); + ret.m_unAppID = this->m_unAppID; + ret.m_ulOrderID = this->m_ulOrderID; + ret.m_bAuthorized = this->m_bAuthorized; return ret; } #endif - -static void MicroTxnAuthorizationResponse_t_123_w_from_u(void *dst, const void *src) -{ - w_MicroTxnAuthorizationResponse_t_123 *d = (w_MicroTxnAuthorizationResponse_t_123 *)dst; - const u_MicroTxnAuthorizationResponse_t_123 *s = (const u_MicroTxnAuthorizationResponse_t_123 *)src; - - d->m_unAppID = s->m_unAppID; - d->m_ulOrderID = s->m_ulOrderID; - d->m_bAuthorized = s->m_bAuthorized; -} #ifdef __x86_64__ u64_MicroTxnAuthorizationResponse_t_123::operator w64_MicroTxnAuthorizationResponse_t_123() const { w64_MicroTxnAuthorizationResponse_t_123 ret; - MicroTxnAuthorizationResponse_t_123_w_from_u((void *)&ret, (const void *)this); + ret.m_unAppID = this->m_unAppID; + ret.m_ulOrderID = this->m_ulOrderID; + ret.m_bAuthorized = this->m_bAuthorized; return ret; } #endif @@ -14171,58 +14008,56 @@ u64_MicroTxnAuthorizationResponse_t_123::operator w64_MicroTxnAuthorizationRespo w32_MicroTxnAuthorizationResponse_t_123::operator u32_MicroTxnAuthorizationResponse_t_123() const { u32_MicroTxnAuthorizationResponse_t_123 ret; - MicroTxnAuthorizationResponse_t_123_u_from_w((void *)&ret, (const void *)this); + ret.m_unAppID = this->m_unAppID; + ret.m_ulOrderID = this->m_ulOrderID; + ret.m_bAuthorized = this->m_bAuthorized; return ret; } #endif - #ifdef __i386__ u32_MicroTxnAuthorizationResponse_t_123::operator w32_MicroTxnAuthorizationResponse_t_123() const { w32_MicroTxnAuthorizationResponse_t_123 ret; - MicroTxnAuthorizationResponse_t_123_w_from_u((void *)&ret, (const void *)this); + ret.m_unAppID = this->m_unAppID; + ret.m_ulOrderID = this->m_ulOrderID; + ret.m_bAuthorized = this->m_bAuthorized; return ret; } #endif -static void MicroTxnAuthorizationResponse_t_109_u_from_w(void *dst, const void *src) +static void MicroTxnAuthorizationResponse_t_123_utow(void *dst, const void *src) { - u_MicroTxnAuthorizationResponse_t_109 *d = (u_MicroTxnAuthorizationResponse_t_109 *)dst; - const w_MicroTxnAuthorizationResponse_t_109 *s = (const w_MicroTxnAuthorizationResponse_t_109 *)src; - - d->m_unAppID = s->m_unAppID; - d->m_ulOrderID = s->m_ulOrderID; - d->m_bAuthorized = s->m_bAuthorized; + *(w_MicroTxnAuthorizationResponse_t_123 *)dst = *(const u_MicroTxnAuthorizationResponse_t_123 *)src; } + #ifdef __i386__ w32_MicroTxnAuthorizationResponse_t_109::operator u32_MicroTxnAuthorizationResponse_t_109() const { u32_MicroTxnAuthorizationResponse_t_109 ret; - MicroTxnAuthorizationResponse_t_109_u_from_w((void *)&ret, (const void *)this); + ret.m_unAppID = this->m_unAppID; + ret.m_ulOrderID = this->m_ulOrderID; + ret.m_bAuthorized = this->m_bAuthorized; return ret; } #endif - -static void MicroTxnAuthorizationResponse_t_109_w_from_u(void *dst, const void *src) -{ - w_MicroTxnAuthorizationResponse_t_109 *d = (w_MicroTxnAuthorizationResponse_t_109 *)dst; - const u_MicroTxnAuthorizationResponse_t_109 *s = (const u_MicroTxnAuthorizationResponse_t_109 *)src; - - d->m_unAppID = s->m_unAppID; - d->m_ulOrderID = s->m_ulOrderID; - d->m_bAuthorized = s->m_bAuthorized; -} #ifdef __i386__ u32_MicroTxnAuthorizationResponse_t_109::operator w32_MicroTxnAuthorizationResponse_t_109() const { w32_MicroTxnAuthorizationResponse_t_109 ret; - MicroTxnAuthorizationResponse_t_109_w_from_u((void *)&ret, (const void *)this); + ret.m_unAppID = this->m_unAppID; + ret.m_ulOrderID = this->m_ulOrderID; + ret.m_bAuthorized = this->m_bAuthorized; return ret; } #endif +static void MicroTxnAuthorizationResponse_t_109_utow(void *dst, const void *src) +{ + *(w_MicroTxnAuthorizationResponse_t_109 *)dst = *(const u_MicroTxnAuthorizationResponse_t_109 *)src; +} + 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 ); @@ -14287,39 +14122,24 @@ 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 ); -static void PS3TrophiesInstalled_t_123_u_from_w(void *dst, const void *src) -{ - u_PS3TrophiesInstalled_t_123 *d = (u_PS3TrophiesInstalled_t_123 *)dst; - const w_PS3TrophiesInstalled_t_123 *s = (const w_PS3TrophiesInstalled_t_123 *)src; - - d->m_nGameID = s->m_nGameID; - d->m_eResult = s->m_eResult; - d->m_ulRequiredDiskSpace = s->m_ulRequiredDiskSpace; -} #ifdef __x86_64__ w64_PS3TrophiesInstalled_t_123::operator u64_PS3TrophiesInstalled_t_123() const { u64_PS3TrophiesInstalled_t_123 ret; - PS3TrophiesInstalled_t_123_u_from_w((void *)&ret, (const void *)this); + ret.m_nGameID = this->m_nGameID; + ret.m_eResult = this->m_eResult; + ret.m_ulRequiredDiskSpace = this->m_ulRequiredDiskSpace; return ret; } #endif - -static void PS3TrophiesInstalled_t_123_w_from_u(void *dst, const void *src) -{ - w_PS3TrophiesInstalled_t_123 *d = (w_PS3TrophiesInstalled_t_123 *)dst; - const u_PS3TrophiesInstalled_t_123 *s = (const u_PS3TrophiesInstalled_t_123 *)src; - - d->m_nGameID = s->m_nGameID; - d->m_eResult = s->m_eResult; - d->m_ulRequiredDiskSpace = s->m_ulRequiredDiskSpace; -} #ifdef __x86_64__ u64_PS3TrophiesInstalled_t_123::operator w64_PS3TrophiesInstalled_t_123() const { w64_PS3TrophiesInstalled_t_123 ret; - PS3TrophiesInstalled_t_123_w_from_u((void *)&ret, (const void *)this); + ret.m_nGameID = this->m_nGameID; + ret.m_eResult = this->m_eResult; + ret.m_ulRequiredDiskSpace = this->m_ulRequiredDiskSpace; return ret; } #endif @@ -14328,58 +14148,56 @@ u64_PS3TrophiesInstalled_t_123::operator w64_PS3TrophiesInstalled_t_123() const w32_PS3TrophiesInstalled_t_123::operator u32_PS3TrophiesInstalled_t_123() const { u32_PS3TrophiesInstalled_t_123 ret; - PS3TrophiesInstalled_t_123_u_from_w((void *)&ret, (const void *)this); + ret.m_nGameID = this->m_nGameID; + ret.m_eResult = this->m_eResult; + ret.m_ulRequiredDiskSpace = this->m_ulRequiredDiskSpace; return ret; } #endif - #ifdef __i386__ u32_PS3TrophiesInstalled_t_123::operator w32_PS3TrophiesInstalled_t_123() const { w32_PS3TrophiesInstalled_t_123 ret; - PS3TrophiesInstalled_t_123_w_from_u((void *)&ret, (const void *)this); + ret.m_nGameID = this->m_nGameID; + ret.m_eResult = this->m_eResult; + ret.m_ulRequiredDiskSpace = this->m_ulRequiredDiskSpace; return ret; } #endif -static void PS3TrophiesInstalled_t_112x_u_from_w(void *dst, const void *src) +static void PS3TrophiesInstalled_t_123_utow(void *dst, const void *src) { - u_PS3TrophiesInstalled_t_112x *d = (u_PS3TrophiesInstalled_t_112x *)dst; - const w_PS3TrophiesInstalled_t_112x *s = (const w_PS3TrophiesInstalled_t_112x *)src; - - d->m_nGameID = s->m_nGameID; - d->m_eResult = s->m_eResult; - d->m_ulRequiredDiskSpace = s->m_ulRequiredDiskSpace; + *(w_PS3TrophiesInstalled_t_123 *)dst = *(const u_PS3TrophiesInstalled_t_123 *)src; } + #ifdef __i386__ w32_PS3TrophiesInstalled_t_112x::operator u32_PS3TrophiesInstalled_t_112x() const { u32_PS3TrophiesInstalled_t_112x ret; - PS3TrophiesInstalled_t_112x_u_from_w((void *)&ret, (const void *)this); + ret.m_nGameID = this->m_nGameID; + ret.m_eResult = this->m_eResult; + ret.m_ulRequiredDiskSpace = this->m_ulRequiredDiskSpace; return ret; } #endif - -static void PS3TrophiesInstalled_t_112x_w_from_u(void *dst, const void *src) -{ - w_PS3TrophiesInstalled_t_112x *d = (w_PS3TrophiesInstalled_t_112x *)dst; - const u_PS3TrophiesInstalled_t_112x *s = (const u_PS3TrophiesInstalled_t_112x *)src; - - d->m_nGameID = s->m_nGameID; - d->m_eResult = s->m_eResult; - d->m_ulRequiredDiskSpace = s->m_ulRequiredDiskSpace; -} #ifdef __i386__ u32_PS3TrophiesInstalled_t_112x::operator w32_PS3TrophiesInstalled_t_112x() const { w32_PS3TrophiesInstalled_t_112x ret; - PS3TrophiesInstalled_t_112x_w_from_u((void *)&ret, (const void *)this); + ret.m_nGameID = this->m_nGameID; + ret.m_eResult = this->m_eResult; + ret.m_ulRequiredDiskSpace = this->m_ulRequiredDiskSpace; return ret; } #endif +static void PS3TrophiesInstalled_t_112x_utow(void *dst, const void *src) +{ + *(w_PS3TrophiesInstalled_t_112x *)dst = *(const u_PS3TrophiesInstalled_t_112x *)src; +} + 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 ); @@ -14476,43 +14294,28 @@ 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 ); -static void RemoteStorageAppSyncProgress_t_123_u_from_w(void *dst, const void *src) -{ - u_RemoteStorageAppSyncProgress_t_123 *d = (u_RemoteStorageAppSyncProgress_t_123 *)dst; - const w_RemoteStorageAppSyncProgress_t_123 *s = (const w_RemoteStorageAppSyncProgress_t_123 *)src; - - d->m_rgchCurrentFile = s->m_rgchCurrentFile; - d->m_nAppID = s->m_nAppID; - d->m_uBytesTransferredThisChunk = s->m_uBytesTransferredThisChunk; - d->m_dAppPercentComplete = s->m_dAppPercentComplete; - d->m_bUploading = s->m_bUploading; -} #ifdef __x86_64__ w64_RemoteStorageAppSyncProgress_t_123::operator u64_RemoteStorageAppSyncProgress_t_123() const { u64_RemoteStorageAppSyncProgress_t_123 ret; - RemoteStorageAppSyncProgress_t_123_u_from_w((void *)&ret, (const void *)this); + 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 - -static void RemoteStorageAppSyncProgress_t_123_w_from_u(void *dst, const void *src) -{ - w_RemoteStorageAppSyncProgress_t_123 *d = (w_RemoteStorageAppSyncProgress_t_123 *)dst; - const u_RemoteStorageAppSyncProgress_t_123 *s = (const u_RemoteStorageAppSyncProgress_t_123 *)src; - - d->m_rgchCurrentFile = s->m_rgchCurrentFile; - d->m_nAppID = s->m_nAppID; - d->m_uBytesTransferredThisChunk = s->m_uBytesTransferredThisChunk; - d->m_dAppPercentComplete = s->m_dAppPercentComplete; - d->m_bUploading = s->m_bUploading; -} #ifdef __x86_64__ u64_RemoteStorageAppSyncProgress_t_123::operator w64_RemoteStorageAppSyncProgress_t_123() const { w64_RemoteStorageAppSyncProgress_t_123 ret; - RemoteStorageAppSyncProgress_t_123_w_from_u((void *)&ret, (const void *)this); + 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 @@ -14521,62 +14324,64 @@ u64_RemoteStorageAppSyncProgress_t_123::operator w64_RemoteStorageAppSyncProgres w32_RemoteStorageAppSyncProgress_t_123::operator u32_RemoteStorageAppSyncProgress_t_123() const { u32_RemoteStorageAppSyncProgress_t_123 ret; - RemoteStorageAppSyncProgress_t_123_u_from_w((void *)&ret, (const void *)this); + 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__ u32_RemoteStorageAppSyncProgress_t_123::operator w32_RemoteStorageAppSyncProgress_t_123() const { w32_RemoteStorageAppSyncProgress_t_123 ret; - RemoteStorageAppSyncProgress_t_123_w_from_u((void *)&ret, (const void *)this); + 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 -static void RemoteStorageAppSyncProgress_t_111x_u_from_w(void *dst, const void *src) +static void RemoteStorageAppSyncProgress_t_123_utow(void *dst, const void *src) { - u_RemoteStorageAppSyncProgress_t_111x *d = (u_RemoteStorageAppSyncProgress_t_111x *)dst; - const w_RemoteStorageAppSyncProgress_t_111x *s = (const w_RemoteStorageAppSyncProgress_t_111x *)src; - - d->m_rgchCurrentFile = s->m_rgchCurrentFile; - d->m_nAppID = s->m_nAppID; - d->m_uBytesTransferredThisChunk = s->m_uBytesTransferredThisChunk; - d->m_dAppPercentComplete = s->m_dAppPercentComplete; - d->m_bUploading = s->m_bUploading; + *(w_RemoteStorageAppSyncProgress_t_123 *)dst = *(const u_RemoteStorageAppSyncProgress_t_123 *)src; } + #ifdef __i386__ w32_RemoteStorageAppSyncProgress_t_111x::operator u32_RemoteStorageAppSyncProgress_t_111x() const { u32_RemoteStorageAppSyncProgress_t_111x ret; - RemoteStorageAppSyncProgress_t_111x_u_from_w((void *)&ret, (const void *)this); + 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 - -static void RemoteStorageAppSyncProgress_t_111x_w_from_u(void *dst, const void *src) -{ - w_RemoteStorageAppSyncProgress_t_111x *d = (w_RemoteStorageAppSyncProgress_t_111x *)dst; - const u_RemoteStorageAppSyncProgress_t_111x *s = (const u_RemoteStorageAppSyncProgress_t_111x *)src; - - d->m_rgchCurrentFile = s->m_rgchCurrentFile; - d->m_nAppID = s->m_nAppID; - d->m_uBytesTransferredThisChunk = s->m_uBytesTransferredThisChunk; - d->m_dAppPercentComplete = s->m_dAppPercentComplete; - d->m_bUploading = s->m_bUploading; -} #ifdef __i386__ u32_RemoteStorageAppSyncProgress_t_111x::operator w32_RemoteStorageAppSyncProgress_t_111x() const { w32_RemoteStorageAppSyncProgress_t_111x ret; - RemoteStorageAppSyncProgress_t_111x_w_from_u((void *)&ret, (const void *)this); + 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 +static void RemoteStorageAppSyncProgress_t_111x_utow(void *dst, const void *src) +{ + *(w_RemoteStorageAppSyncProgress_t_111x *)dst = *(const u_RemoteStorageAppSyncProgress_t_111x *)src; +} + 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 ); @@ -14625,37 +14430,22 @@ 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 ); -static void RemoteStorageDeletePublishedFileResult_t_123_u_from_w(void *dst, const void *src) -{ - u_RemoteStorageDeletePublishedFileResult_t_123 *d = (u_RemoteStorageDeletePublishedFileResult_t_123 *)dst; - const w_RemoteStorageDeletePublishedFileResult_t_123 *s = (const w_RemoteStorageDeletePublishedFileResult_t_123 *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; -} #ifdef __x86_64__ w64_RemoteStorageDeletePublishedFileResult_t_123::operator u64_RemoteStorageDeletePublishedFileResult_t_123() const { u64_RemoteStorageDeletePublishedFileResult_t_123 ret; - RemoteStorageDeletePublishedFileResult_t_123_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; return ret; } #endif - -static void RemoteStorageDeletePublishedFileResult_t_123_w_from_u(void *dst, const void *src) -{ - w_RemoteStorageDeletePublishedFileResult_t_123 *d = (w_RemoteStorageDeletePublishedFileResult_t_123 *)dst; - const u_RemoteStorageDeletePublishedFileResult_t_123 *s = (const u_RemoteStorageDeletePublishedFileResult_t_123 *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; -} #ifdef __x86_64__ u64_RemoteStorageDeletePublishedFileResult_t_123::operator w64_RemoteStorageDeletePublishedFileResult_t_123() const { w64_RemoteStorageDeletePublishedFileResult_t_123 ret; - RemoteStorageDeletePublishedFileResult_t_123_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; return ret; } #endif @@ -14664,56 +14454,52 @@ u64_RemoteStorageDeletePublishedFileResult_t_123::operator w64_RemoteStorageDele w32_RemoteStorageDeletePublishedFileResult_t_123::operator u32_RemoteStorageDeletePublishedFileResult_t_123() const { u32_RemoteStorageDeletePublishedFileResult_t_123 ret; - RemoteStorageDeletePublishedFileResult_t_123_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; return ret; } #endif - #ifdef __i386__ u32_RemoteStorageDeletePublishedFileResult_t_123::operator w32_RemoteStorageDeletePublishedFileResult_t_123() const { w32_RemoteStorageDeletePublishedFileResult_t_123 ret; - RemoteStorageDeletePublishedFileResult_t_123_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; return ret; } #endif -static void RemoteStorageDeletePublishedFileResult_t_116x_u_from_w(void *dst, const void *src) +static void RemoteStorageDeletePublishedFileResult_t_123_utow(void *dst, const void *src) { - u_RemoteStorageDeletePublishedFileResult_t_116x *d = (u_RemoteStorageDeletePublishedFileResult_t_116x *)dst; - const w_RemoteStorageDeletePublishedFileResult_t_116x *s = (const w_RemoteStorageDeletePublishedFileResult_t_116x *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; + *(w_RemoteStorageDeletePublishedFileResult_t_123 *)dst = *(const u_RemoteStorageDeletePublishedFileResult_t_123 *)src; } + #ifdef __i386__ w32_RemoteStorageDeletePublishedFileResult_t_116x::operator u32_RemoteStorageDeletePublishedFileResult_t_116x() const { u32_RemoteStorageDeletePublishedFileResult_t_116x ret; - RemoteStorageDeletePublishedFileResult_t_116x_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; return ret; } #endif - -static void RemoteStorageDeletePublishedFileResult_t_116x_w_from_u(void *dst, const void *src) -{ - w_RemoteStorageDeletePublishedFileResult_t_116x *d = (w_RemoteStorageDeletePublishedFileResult_t_116x *)dst; - const u_RemoteStorageDeletePublishedFileResult_t_116x *s = (const u_RemoteStorageDeletePublishedFileResult_t_116x *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; -} #ifdef __i386__ u32_RemoteStorageDeletePublishedFileResult_t_116x::operator w32_RemoteStorageDeletePublishedFileResult_t_116x() const { w32_RemoteStorageDeletePublishedFileResult_t_116x ret; - RemoteStorageDeletePublishedFileResult_t_116x_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; return ret; } #endif +static void RemoteStorageDeletePublishedFileResult_t_116x_utow(void *dst, const void *src) +{ + *(w_RemoteStorageDeletePublishedFileResult_t_116x *)dst = *(const u_RemoteStorageDeletePublishedFileResult_t_116x *)src; +} + 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 ); @@ -14882,45 +14668,30 @@ 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 ); -static void RemoteStorageDownloadUGCResult_t_123_u_from_w(void *dst, const void *src) -{ - u_RemoteStorageDownloadUGCResult_t_123 *d = (u_RemoteStorageDownloadUGCResult_t_123 *)dst; - const w_RemoteStorageDownloadUGCResult_t_123 *s = (const w_RemoteStorageDownloadUGCResult_t_123 *)src; - - d->m_eResult = s->m_eResult; - d->m_hFile = s->m_hFile; - d->m_nAppID = s->m_nAppID; - d->m_nSizeInBytes = s->m_nSizeInBytes; - d->m_pchFileName = s->m_pchFileName; - d->m_ulSteamIDOwner = s->m_ulSteamIDOwner; -} #ifdef __x86_64__ w64_RemoteStorageDownloadUGCResult_t_123::operator u64_RemoteStorageDownloadUGCResult_t_123() const { u64_RemoteStorageDownloadUGCResult_t_123 ret; - RemoteStorageDownloadUGCResult_t_123_u_from_w((void *)&ret, (const void *)this); + 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 - -static void RemoteStorageDownloadUGCResult_t_123_w_from_u(void *dst, const void *src) -{ - w_RemoteStorageDownloadUGCResult_t_123 *d = (w_RemoteStorageDownloadUGCResult_t_123 *)dst; - const u_RemoteStorageDownloadUGCResult_t_123 *s = (const u_RemoteStorageDownloadUGCResult_t_123 *)src; - - d->m_eResult = s->m_eResult; - d->m_hFile = s->m_hFile; - d->m_nAppID = s->m_nAppID; - d->m_nSizeInBytes = s->m_nSizeInBytes; - d->m_pchFileName = s->m_pchFileName; - d->m_ulSteamIDOwner = s->m_ulSteamIDOwner; -} #ifdef __x86_64__ u64_RemoteStorageDownloadUGCResult_t_123::operator w64_RemoteStorageDownloadUGCResult_t_123() const { w64_RemoteStorageDownloadUGCResult_t_123 ret; - RemoteStorageDownloadUGCResult_t_123_w_from_u((void *)&ret, (const void *)this); + 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 @@ -14929,107 +14700,101 @@ u64_RemoteStorageDownloadUGCResult_t_123::operator w64_RemoteStorageDownloadUGCR w32_RemoteStorageDownloadUGCResult_t_123::operator u32_RemoteStorageDownloadUGCResult_t_123() const { u32_RemoteStorageDownloadUGCResult_t_123 ret; - RemoteStorageDownloadUGCResult_t_123_u_from_w((void *)&ret, (const void *)this); + 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__ u32_RemoteStorageDownloadUGCResult_t_123::operator w32_RemoteStorageDownloadUGCResult_t_123() const { w32_RemoteStorageDownloadUGCResult_t_123 ret; - RemoteStorageDownloadUGCResult_t_123_w_from_u((void *)&ret, (const void *)this); + 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 -static void RemoteStorageDownloadUGCResult_t_116x_u_from_w(void *dst, const void *src) +static void RemoteStorageDownloadUGCResult_t_123_utow(void *dst, const void *src) { - u_RemoteStorageDownloadUGCResult_t_116x *d = (u_RemoteStorageDownloadUGCResult_t_116x *)dst; - const w_RemoteStorageDownloadUGCResult_t_116x *s = (const w_RemoteStorageDownloadUGCResult_t_116x *)src; - - d->m_eResult = s->m_eResult; - d->m_hFile = s->m_hFile; - d->m_nAppID = s->m_nAppID; - d->m_nSizeInBytes = s->m_nSizeInBytes; - d->m_pchFileName = s->m_pchFileName; - d->m_ulSteamIDOwner = s->m_ulSteamIDOwner; + *(w_RemoteStorageDownloadUGCResult_t_123 *)dst = *(const u_RemoteStorageDownloadUGCResult_t_123 *)src; } + #ifdef __i386__ w32_RemoteStorageDownloadUGCResult_t_116x::operator u32_RemoteStorageDownloadUGCResult_t_116x() const { u32_RemoteStorageDownloadUGCResult_t_116x ret; - RemoteStorageDownloadUGCResult_t_116x_u_from_w((void *)&ret, (const void *)this); + 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 - -static void RemoteStorageDownloadUGCResult_t_116x_w_from_u(void *dst, const void *src) -{ - w_RemoteStorageDownloadUGCResult_t_116x *d = (w_RemoteStorageDownloadUGCResult_t_116x *)dst; - const u_RemoteStorageDownloadUGCResult_t_116x *s = (const u_RemoteStorageDownloadUGCResult_t_116x *)src; - - d->m_eResult = s->m_eResult; - d->m_hFile = s->m_hFile; - d->m_nAppID = s->m_nAppID; - d->m_nSizeInBytes = s->m_nSizeInBytes; - d->m_pchFileName = s->m_pchFileName; - d->m_ulSteamIDOwner = s->m_ulSteamIDOwner; -} #ifdef __i386__ u32_RemoteStorageDownloadUGCResult_t_116x::operator w32_RemoteStorageDownloadUGCResult_t_116x() const { w32_RemoteStorageDownloadUGCResult_t_116x ret; - RemoteStorageDownloadUGCResult_t_116x_w_from_u((void *)&ret, (const void *)this); + 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 -static void RemoteStorageDownloadUGCResult_t_111x_u_from_w(void *dst, const void *src) +static void RemoteStorageDownloadUGCResult_t_116x_utow(void *dst, const void *src) { - u_RemoteStorageDownloadUGCResult_t_111x *d = (u_RemoteStorageDownloadUGCResult_t_111x *)dst; - const w_RemoteStorageDownloadUGCResult_t_111x *s = (const w_RemoteStorageDownloadUGCResult_t_111x *)src; - - d->m_eResult = s->m_eResult; - d->m_hFile = s->m_hFile; - d->m_nAppID = s->m_nAppID; - d->m_nSizeInBytes = s->m_nSizeInBytes; - d->m_pchFileName = s->m_pchFileName; - d->m_ulSteamIDOwner = s->m_ulSteamIDOwner; + *(w_RemoteStorageDownloadUGCResult_t_116x *)dst = *(const u_RemoteStorageDownloadUGCResult_t_116x *)src; } + #ifdef __i386__ w32_RemoteStorageDownloadUGCResult_t_111x::operator u32_RemoteStorageDownloadUGCResult_t_111x() const { u32_RemoteStorageDownloadUGCResult_t_111x ret; - RemoteStorageDownloadUGCResult_t_111x_u_from_w((void *)&ret, (const void *)this); + 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 - -static void RemoteStorageDownloadUGCResult_t_111x_w_from_u(void *dst, const void *src) -{ - w_RemoteStorageDownloadUGCResult_t_111x *d = (w_RemoteStorageDownloadUGCResult_t_111x *)dst; - const u_RemoteStorageDownloadUGCResult_t_111x *s = (const u_RemoteStorageDownloadUGCResult_t_111x *)src; - - d->m_eResult = s->m_eResult; - d->m_hFile = s->m_hFile; - d->m_nAppID = s->m_nAppID; - d->m_nSizeInBytes = s->m_nSizeInBytes; - d->m_pchFileName = s->m_pchFileName; - d->m_ulSteamIDOwner = s->m_ulSteamIDOwner; -} #ifdef __i386__ u32_RemoteStorageDownloadUGCResult_t_111x::operator w32_RemoteStorageDownloadUGCResult_t_111x() const { w32_RemoteStorageDownloadUGCResult_t_111x ret; - RemoteStorageDownloadUGCResult_t_111x_w_from_u((void *)&ret, (const void *)this); + 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 +static void RemoteStorageDownloadUGCResult_t_111x_utow(void *dst, const void *src) +{ + *(w_RemoteStorageDownloadUGCResult_t_111x *)dst = *(const u_RemoteStorageDownloadUGCResult_t_111x *)src; +} + 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 ); @@ -15110,41 +14875,26 @@ 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 ); -static void RemoteStorageEnumerateUserPublishedFilesResult_t_123_u_from_w(void *dst, const void *src) -{ - u_RemoteStorageEnumerateUserPublishedFilesResult_t_123 *d = (u_RemoteStorageEnumerateUserPublishedFilesResult_t_123 *)dst; - const w_RemoteStorageEnumerateUserPublishedFilesResult_t_123 *s = (const w_RemoteStorageEnumerateUserPublishedFilesResult_t_123 *)src; - - d->m_eResult = s->m_eResult; - d->m_nResultsReturned = s->m_nResultsReturned; - d->m_nTotalResultCount = s->m_nTotalResultCount; - d->m_rgPublishedFileId = s->m_rgPublishedFileId; -} #ifdef __x86_64__ w64_RemoteStorageEnumerateUserPublishedFilesResult_t_123::operator u64_RemoteStorageEnumerateUserPublishedFilesResult_t_123() const { u64_RemoteStorageEnumerateUserPublishedFilesResult_t_123 ret; - RemoteStorageEnumerateUserPublishedFilesResult_t_123_u_from_w((void *)&ret, (const void *)this); + 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 - -static void RemoteStorageEnumerateUserPublishedFilesResult_t_123_w_from_u(void *dst, const void *src) -{ - w_RemoteStorageEnumerateUserPublishedFilesResult_t_123 *d = (w_RemoteStorageEnumerateUserPublishedFilesResult_t_123 *)dst; - const u_RemoteStorageEnumerateUserPublishedFilesResult_t_123 *s = (const u_RemoteStorageEnumerateUserPublishedFilesResult_t_123 *)src; - - d->m_eResult = s->m_eResult; - d->m_nResultsReturned = s->m_nResultsReturned; - d->m_nTotalResultCount = s->m_nTotalResultCount; - d->m_rgPublishedFileId = s->m_rgPublishedFileId; -} #ifdef __x86_64__ u64_RemoteStorageEnumerateUserPublishedFilesResult_t_123::operator w64_RemoteStorageEnumerateUserPublishedFilesResult_t_123() const { w64_RemoteStorageEnumerateUserPublishedFilesResult_t_123 ret; - RemoteStorageEnumerateUserPublishedFilesResult_t_123_w_from_u((void *)&ret, (const void *)this); + 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 @@ -15153,60 +14903,60 @@ u64_RemoteStorageEnumerateUserPublishedFilesResult_t_123::operator w64_RemoteSto w32_RemoteStorageEnumerateUserPublishedFilesResult_t_123::operator u32_RemoteStorageEnumerateUserPublishedFilesResult_t_123() const { u32_RemoteStorageEnumerateUserPublishedFilesResult_t_123 ret; - RemoteStorageEnumerateUserPublishedFilesResult_t_123_u_from_w((void *)&ret, (const void *)this); + 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__ u32_RemoteStorageEnumerateUserPublishedFilesResult_t_123::operator w32_RemoteStorageEnumerateUserPublishedFilesResult_t_123() const { w32_RemoteStorageEnumerateUserPublishedFilesResult_t_123 ret; - RemoteStorageEnumerateUserPublishedFilesResult_t_123_w_from_u((void *)&ret, (const void *)this); + 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 -static void RemoteStorageEnumerateUserPublishedFilesResult_t_116x_u_from_w(void *dst, const void *src) +static void RemoteStorageEnumerateUserPublishedFilesResult_t_123_utow(void *dst, const void *src) { - u_RemoteStorageEnumerateUserPublishedFilesResult_t_116x *d = (u_RemoteStorageEnumerateUserPublishedFilesResult_t_116x *)dst; - const w_RemoteStorageEnumerateUserPublishedFilesResult_t_116x *s = (const w_RemoteStorageEnumerateUserPublishedFilesResult_t_116x *)src; - - d->m_eResult = s->m_eResult; - d->m_nResultsReturned = s->m_nResultsReturned; - d->m_nTotalResultCount = s->m_nTotalResultCount; - d->m_rgPublishedFileId = s->m_rgPublishedFileId; + *(w_RemoteStorageEnumerateUserPublishedFilesResult_t_123 *)dst = *(const u_RemoteStorageEnumerateUserPublishedFilesResult_t_123 *)src; } + #ifdef __i386__ w32_RemoteStorageEnumerateUserPublishedFilesResult_t_116x::operator u32_RemoteStorageEnumerateUserPublishedFilesResult_t_116x() const { u32_RemoteStorageEnumerateUserPublishedFilesResult_t_116x ret; - RemoteStorageEnumerateUserPublishedFilesResult_t_116x_u_from_w((void *)&ret, (const void *)this); + 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 - -static void RemoteStorageEnumerateUserPublishedFilesResult_t_116x_w_from_u(void *dst, const void *src) -{ - w_RemoteStorageEnumerateUserPublishedFilesResult_t_116x *d = (w_RemoteStorageEnumerateUserPublishedFilesResult_t_116x *)dst; - const u_RemoteStorageEnumerateUserPublishedFilesResult_t_116x *s = (const u_RemoteStorageEnumerateUserPublishedFilesResult_t_116x *)src; - - d->m_eResult = s->m_eResult; - d->m_nResultsReturned = s->m_nResultsReturned; - d->m_nTotalResultCount = s->m_nTotalResultCount; - d->m_rgPublishedFileId = s->m_rgPublishedFileId; -} #ifdef __i386__ u32_RemoteStorageEnumerateUserPublishedFilesResult_t_116x::operator w32_RemoteStorageEnumerateUserPublishedFilesResult_t_116x() const { w32_RemoteStorageEnumerateUserPublishedFilesResult_t_116x ret; - RemoteStorageEnumerateUserPublishedFilesResult_t_116x_w_from_u((void *)&ret, (const void *)this); + 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 +static void RemoteStorageEnumerateUserPublishedFilesResult_t_116x_utow(void *dst, const void *src) +{ + *(w_RemoteStorageEnumerateUserPublishedFilesResult_t_116x *)dst = *(const u_RemoteStorageEnumerateUserPublishedFilesResult_t_116x *)src; +} + 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 ); @@ -15287,41 +15037,26 @@ 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 ); -static void RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123_u_from_w(void *dst, const void *src) -{ - u_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123 *d = (u_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123 *)dst; - const w_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123 *s = (const w_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123 *)src; - - d->m_eResult = s->m_eResult; - d->m_nResultsReturned = s->m_nResultsReturned; - d->m_nTotalResultCount = s->m_nTotalResultCount; - d->m_rgPublishedFileId = s->m_rgPublishedFileId; -} #ifdef __x86_64__ w64_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123::operator u64_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123() const { u64_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123 ret; - RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123_u_from_w((void *)&ret, (const void *)this); + 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 - -static void RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123_w_from_u(void *dst, const void *src) -{ - w_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123 *d = (w_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123 *)dst; - const u_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123 *s = (const u_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123 *)src; - - d->m_eResult = s->m_eResult; - d->m_nResultsReturned = s->m_nResultsReturned; - d->m_nTotalResultCount = s->m_nTotalResultCount; - d->m_rgPublishedFileId = s->m_rgPublishedFileId; -} #ifdef __x86_64__ u64_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123::operator w64_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123() const { w64_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123 ret; - RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123_w_from_u((void *)&ret, (const void *)this); + 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 @@ -15330,60 +15065,60 @@ u64_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123::operator w64_Remo w32_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123::operator u32_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123() const { u32_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123 ret; - RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123_u_from_w((void *)&ret, (const void *)this); + 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__ u32_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123::operator w32_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123() const { w32_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123 ret; - RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123_w_from_u((void *)&ret, (const void *)this); + 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 -static void RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_119_u_from_w(void *dst, const void *src) +static void RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123_utow(void *dst, const void *src) { - u_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_119 *d = (u_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_119 *)dst; - const w_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_119 *s = (const w_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_119 *)src; - - d->m_eResult = s->m_eResult; - d->m_nResultsReturned = s->m_nResultsReturned; - d->m_nTotalResultCount = s->m_nTotalResultCount; - d->m_rgPublishedFileId = s->m_rgPublishedFileId; + *(w_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123 *)dst = *(const u_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123 *)src; } + #ifdef __i386__ w32_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_119::operator u32_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_119() const { u32_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_119 ret; - RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_119_u_from_w((void *)&ret, (const void *)this); + 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 - -static void RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_119_w_from_u(void *dst, const void *src) -{ - w_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_119 *d = (w_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_119 *)dst; - const u_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_119 *s = (const u_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_119 *)src; - - d->m_eResult = s->m_eResult; - d->m_nResultsReturned = s->m_nResultsReturned; - d->m_nTotalResultCount = s->m_nTotalResultCount; - d->m_rgPublishedFileId = s->m_rgPublishedFileId; -} #ifdef __i386__ u32_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_119::operator w32_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_119() const { w32_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_119 ret; - RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_119_w_from_u((void *)&ret, (const void *)this); + 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 +static void RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_119_utow(void *dst, const void *src) +{ + *(w_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_119 *)dst = *(const u_RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_119 *)src; +} + 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 ); @@ -15480,43 +15215,28 @@ 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 ); -static void RemoteStorageEnumerateUserSubscribedFilesResult_t_123_u_from_w(void *dst, const void *src) -{ - u_RemoteStorageEnumerateUserSubscribedFilesResult_t_123 *d = (u_RemoteStorageEnumerateUserSubscribedFilesResult_t_123 *)dst; - const w_RemoteStorageEnumerateUserSubscribedFilesResult_t_123 *s = (const w_RemoteStorageEnumerateUserSubscribedFilesResult_t_123 *)src; - - d->m_eResult = s->m_eResult; - d->m_nResultsReturned = s->m_nResultsReturned; - d->m_nTotalResultCount = s->m_nTotalResultCount; - d->m_rgPublishedFileId = s->m_rgPublishedFileId; - d->m_rgRTimeSubscribed = s->m_rgRTimeSubscribed; -} #ifdef __x86_64__ w64_RemoteStorageEnumerateUserSubscribedFilesResult_t_123::operator u64_RemoteStorageEnumerateUserSubscribedFilesResult_t_123() const { u64_RemoteStorageEnumerateUserSubscribedFilesResult_t_123 ret; - RemoteStorageEnumerateUserSubscribedFilesResult_t_123_u_from_w((void *)&ret, (const void *)this); + 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 - -static void RemoteStorageEnumerateUserSubscribedFilesResult_t_123_w_from_u(void *dst, const void *src) -{ - w_RemoteStorageEnumerateUserSubscribedFilesResult_t_123 *d = (w_RemoteStorageEnumerateUserSubscribedFilesResult_t_123 *)dst; - const u_RemoteStorageEnumerateUserSubscribedFilesResult_t_123 *s = (const u_RemoteStorageEnumerateUserSubscribedFilesResult_t_123 *)src; - - d->m_eResult = s->m_eResult; - d->m_nResultsReturned = s->m_nResultsReturned; - d->m_nTotalResultCount = s->m_nTotalResultCount; - d->m_rgPublishedFileId = s->m_rgPublishedFileId; - d->m_rgRTimeSubscribed = s->m_rgRTimeSubscribed; -} #ifdef __x86_64__ u64_RemoteStorageEnumerateUserSubscribedFilesResult_t_123::operator w64_RemoteStorageEnumerateUserSubscribedFilesResult_t_123() const { w64_RemoteStorageEnumerateUserSubscribedFilesResult_t_123 ret; - RemoteStorageEnumerateUserSubscribedFilesResult_t_123_w_from_u((void *)&ret, (const void *)this); + 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 @@ -15525,62 +15245,64 @@ u64_RemoteStorageEnumerateUserSubscribedFilesResult_t_123::operator w64_RemoteSt w32_RemoteStorageEnumerateUserSubscribedFilesResult_t_123::operator u32_RemoteStorageEnumerateUserSubscribedFilesResult_t_123() const { u32_RemoteStorageEnumerateUserSubscribedFilesResult_t_123 ret; - RemoteStorageEnumerateUserSubscribedFilesResult_t_123_u_from_w((void *)&ret, (const void *)this); + 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__ u32_RemoteStorageEnumerateUserSubscribedFilesResult_t_123::operator w32_RemoteStorageEnumerateUserSubscribedFilesResult_t_123() const { w32_RemoteStorageEnumerateUserSubscribedFilesResult_t_123 ret; - RemoteStorageEnumerateUserSubscribedFilesResult_t_123_w_from_u((void *)&ret, (const void *)this); + 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 -static void RemoteStorageEnumerateUserSubscribedFilesResult_t_116x_u_from_w(void *dst, const void *src) +static void RemoteStorageEnumerateUserSubscribedFilesResult_t_123_utow(void *dst, const void *src) { - u_RemoteStorageEnumerateUserSubscribedFilesResult_t_116x *d = (u_RemoteStorageEnumerateUserSubscribedFilesResult_t_116x *)dst; - const w_RemoteStorageEnumerateUserSubscribedFilesResult_t_116x *s = (const w_RemoteStorageEnumerateUserSubscribedFilesResult_t_116x *)src; - - d->m_eResult = s->m_eResult; - d->m_nResultsReturned = s->m_nResultsReturned; - d->m_nTotalResultCount = s->m_nTotalResultCount; - d->m_rgPublishedFileId = s->m_rgPublishedFileId; - d->m_rgRTimeSubscribed = s->m_rgRTimeSubscribed; + *(w_RemoteStorageEnumerateUserSubscribedFilesResult_t_123 *)dst = *(const u_RemoteStorageEnumerateUserSubscribedFilesResult_t_123 *)src; } + #ifdef __i386__ w32_RemoteStorageEnumerateUserSubscribedFilesResult_t_116x::operator u32_RemoteStorageEnumerateUserSubscribedFilesResult_t_116x() const { u32_RemoteStorageEnumerateUserSubscribedFilesResult_t_116x ret; - RemoteStorageEnumerateUserSubscribedFilesResult_t_116x_u_from_w((void *)&ret, (const void *)this); + 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 - -static void RemoteStorageEnumerateUserSubscribedFilesResult_t_116x_w_from_u(void *dst, const void *src) -{ - w_RemoteStorageEnumerateUserSubscribedFilesResult_t_116x *d = (w_RemoteStorageEnumerateUserSubscribedFilesResult_t_116x *)dst; - const u_RemoteStorageEnumerateUserSubscribedFilesResult_t_116x *s = (const u_RemoteStorageEnumerateUserSubscribedFilesResult_t_116x *)src; - - d->m_eResult = s->m_eResult; - d->m_nResultsReturned = s->m_nResultsReturned; - d->m_nTotalResultCount = s->m_nTotalResultCount; - d->m_rgPublishedFileId = s->m_rgPublishedFileId; - d->m_rgRTimeSubscribed = s->m_rgRTimeSubscribed; -} #ifdef __i386__ u32_RemoteStorageEnumerateUserSubscribedFilesResult_t_116x::operator w32_RemoteStorageEnumerateUserSubscribedFilesResult_t_116x() const { w32_RemoteStorageEnumerateUserSubscribedFilesResult_t_116x ret; - RemoteStorageEnumerateUserSubscribedFilesResult_t_116x_w_from_u((void *)&ret, (const void *)this); + 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 +static void RemoteStorageEnumerateUserSubscribedFilesResult_t_116x_utow(void *dst, const void *src) +{ + *(w_RemoteStorageEnumerateUserSubscribedFilesResult_t_116x *)dst = *(const u_RemoteStorageEnumerateUserSubscribedFilesResult_t_116x *)src; +} + 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 ); @@ -15741,47 +15463,32 @@ 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 ); -static void RemoteStorageEnumerateWorkshopFilesResult_t_125_u_from_w(void *dst, const void *src) -{ - u_RemoteStorageEnumerateWorkshopFilesResult_t_125 *d = (u_RemoteStorageEnumerateWorkshopFilesResult_t_125 *)dst; - const w_RemoteStorageEnumerateWorkshopFilesResult_t_125 *s = (const w_RemoteStorageEnumerateWorkshopFilesResult_t_125 *)src; - - d->m_eResult = s->m_eResult; - d->m_nResultsReturned = s->m_nResultsReturned; - d->m_nTotalResultCount = s->m_nTotalResultCount; - d->m_rgPublishedFileId = s->m_rgPublishedFileId; - d->m_rgScore = s->m_rgScore; - d->m_nAppId = s->m_nAppId; - d->m_unStartIndex = s->m_unStartIndex; -} #ifdef __x86_64__ w64_RemoteStorageEnumerateWorkshopFilesResult_t_125::operator u64_RemoteStorageEnumerateWorkshopFilesResult_t_125() const { u64_RemoteStorageEnumerateWorkshopFilesResult_t_125 ret; - RemoteStorageEnumerateWorkshopFilesResult_t_125_u_from_w((void *)&ret, (const void *)this); + 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 - -static void RemoteStorageEnumerateWorkshopFilesResult_t_125_w_from_u(void *dst, const void *src) -{ - w_RemoteStorageEnumerateWorkshopFilesResult_t_125 *d = (w_RemoteStorageEnumerateWorkshopFilesResult_t_125 *)dst; - const u_RemoteStorageEnumerateWorkshopFilesResult_t_125 *s = (const u_RemoteStorageEnumerateWorkshopFilesResult_t_125 *)src; - - d->m_eResult = s->m_eResult; - d->m_nResultsReturned = s->m_nResultsReturned; - d->m_nTotalResultCount = s->m_nTotalResultCount; - d->m_rgPublishedFileId = s->m_rgPublishedFileId; - d->m_rgScore = s->m_rgScore; - d->m_nAppId = s->m_nAppId; - d->m_unStartIndex = s->m_unStartIndex; -} #ifdef __x86_64__ u64_RemoteStorageEnumerateWorkshopFilesResult_t_125::operator w64_RemoteStorageEnumerateWorkshopFilesResult_t_125() const { w64_RemoteStorageEnumerateWorkshopFilesResult_t_125 ret; - RemoteStorageEnumerateWorkshopFilesResult_t_125_w_from_u((void *)&ret, (const void *)this); + 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 @@ -15790,58 +15497,59 @@ u64_RemoteStorageEnumerateWorkshopFilesResult_t_125::operator w64_RemoteStorageE w32_RemoteStorageEnumerateWorkshopFilesResult_t_125::operator u32_RemoteStorageEnumerateWorkshopFilesResult_t_125() const { u32_RemoteStorageEnumerateWorkshopFilesResult_t_125 ret; - RemoteStorageEnumerateWorkshopFilesResult_t_125_u_from_w((void *)&ret, (const void *)this); + 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__ u32_RemoteStorageEnumerateWorkshopFilesResult_t_125::operator w32_RemoteStorageEnumerateWorkshopFilesResult_t_125() const { w32_RemoteStorageEnumerateWorkshopFilesResult_t_125 ret; - RemoteStorageEnumerateWorkshopFilesResult_t_125_w_from_u((void *)&ret, (const void *)this); + 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 -static void RemoteStorageEnumerateWorkshopFilesResult_t_123_u_from_w(void *dst, const void *src) +static void RemoteStorageEnumerateWorkshopFilesResult_t_125_utow(void *dst, const void *src) { - u_RemoteStorageEnumerateWorkshopFilesResult_t_123 *d = (u_RemoteStorageEnumerateWorkshopFilesResult_t_123 *)dst; - const w_RemoteStorageEnumerateWorkshopFilesResult_t_123 *s = (const w_RemoteStorageEnumerateWorkshopFilesResult_t_123 *)src; - - d->m_eResult = s->m_eResult; - d->m_nResultsReturned = s->m_nResultsReturned; - d->m_nTotalResultCount = s->m_nTotalResultCount; - d->m_rgPublishedFileId = s->m_rgPublishedFileId; - d->m_rgScore = s->m_rgScore; + *(w_RemoteStorageEnumerateWorkshopFilesResult_t_125 *)dst = *(const u_RemoteStorageEnumerateWorkshopFilesResult_t_125 *)src; } + #ifdef __x86_64__ w64_RemoteStorageEnumerateWorkshopFilesResult_t_123::operator u64_RemoteStorageEnumerateWorkshopFilesResult_t_123() const { u64_RemoteStorageEnumerateWorkshopFilesResult_t_123 ret; - RemoteStorageEnumerateWorkshopFilesResult_t_123_u_from_w((void *)&ret, (const void *)this); + 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 - -static void RemoteStorageEnumerateWorkshopFilesResult_t_123_w_from_u(void *dst, const void *src) -{ - w_RemoteStorageEnumerateWorkshopFilesResult_t_123 *d = (w_RemoteStorageEnumerateWorkshopFilesResult_t_123 *)dst; - const u_RemoteStorageEnumerateWorkshopFilesResult_t_123 *s = (const u_RemoteStorageEnumerateWorkshopFilesResult_t_123 *)src; - - d->m_eResult = s->m_eResult; - d->m_nResultsReturned = s->m_nResultsReturned; - d->m_nTotalResultCount = s->m_nTotalResultCount; - d->m_rgPublishedFileId = s->m_rgPublishedFileId; - d->m_rgScore = s->m_rgScore; -} #ifdef __x86_64__ u64_RemoteStorageEnumerateWorkshopFilesResult_t_123::operator w64_RemoteStorageEnumerateWorkshopFilesResult_t_123() const { w64_RemoteStorageEnumerateWorkshopFilesResult_t_123 ret; - RemoteStorageEnumerateWorkshopFilesResult_t_123_w_from_u((void *)&ret, (const void *)this); + 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 @@ -15850,62 +15558,64 @@ u64_RemoteStorageEnumerateWorkshopFilesResult_t_123::operator w64_RemoteStorageE w32_RemoteStorageEnumerateWorkshopFilesResult_t_123::operator u32_RemoteStorageEnumerateWorkshopFilesResult_t_123() const { u32_RemoteStorageEnumerateWorkshopFilesResult_t_123 ret; - RemoteStorageEnumerateWorkshopFilesResult_t_123_u_from_w((void *)&ret, (const void *)this); + 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__ u32_RemoteStorageEnumerateWorkshopFilesResult_t_123::operator w32_RemoteStorageEnumerateWorkshopFilesResult_t_123() const { w32_RemoteStorageEnumerateWorkshopFilesResult_t_123 ret; - RemoteStorageEnumerateWorkshopFilesResult_t_123_w_from_u((void *)&ret, (const void *)this); + 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 -static void RemoteStorageEnumerateWorkshopFilesResult_t_119_u_from_w(void *dst, const void *src) +static void RemoteStorageEnumerateWorkshopFilesResult_t_123_utow(void *dst, const void *src) { - u_RemoteStorageEnumerateWorkshopFilesResult_t_119 *d = (u_RemoteStorageEnumerateWorkshopFilesResult_t_119 *)dst; - const w_RemoteStorageEnumerateWorkshopFilesResult_t_119 *s = (const w_RemoteStorageEnumerateWorkshopFilesResult_t_119 *)src; - - d->m_eResult = s->m_eResult; - d->m_nResultsReturned = s->m_nResultsReturned; - d->m_nTotalResultCount = s->m_nTotalResultCount; - d->m_rgPublishedFileId = s->m_rgPublishedFileId; - d->m_rgScore = s->m_rgScore; + *(w_RemoteStorageEnumerateWorkshopFilesResult_t_123 *)dst = *(const u_RemoteStorageEnumerateWorkshopFilesResult_t_123 *)src; } + #ifdef __i386__ w32_RemoteStorageEnumerateWorkshopFilesResult_t_119::operator u32_RemoteStorageEnumerateWorkshopFilesResult_t_119() const { u32_RemoteStorageEnumerateWorkshopFilesResult_t_119 ret; - RemoteStorageEnumerateWorkshopFilesResult_t_119_u_from_w((void *)&ret, (const void *)this); + 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 - -static void RemoteStorageEnumerateWorkshopFilesResult_t_119_w_from_u(void *dst, const void *src) -{ - w_RemoteStorageEnumerateWorkshopFilesResult_t_119 *d = (w_RemoteStorageEnumerateWorkshopFilesResult_t_119 *)dst; - const u_RemoteStorageEnumerateWorkshopFilesResult_t_119 *s = (const u_RemoteStorageEnumerateWorkshopFilesResult_t_119 *)src; - - d->m_eResult = s->m_eResult; - d->m_nResultsReturned = s->m_nResultsReturned; - d->m_nTotalResultCount = s->m_nTotalResultCount; - d->m_rgPublishedFileId = s->m_rgPublishedFileId; - d->m_rgScore = s->m_rgScore; -} #ifdef __i386__ u32_RemoteStorageEnumerateWorkshopFilesResult_t_119::operator w32_RemoteStorageEnumerateWorkshopFilesResult_t_119() const { w32_RemoteStorageEnumerateWorkshopFilesResult_t_119 ret; - RemoteStorageEnumerateWorkshopFilesResult_t_119_w_from_u((void *)&ret, (const void *)this); + 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 +static void RemoteStorageEnumerateWorkshopFilesResult_t_119_utow(void *dst, const void *src) +{ + *(w_RemoteStorageEnumerateWorkshopFilesResult_t_119 *)dst = *(const u_RemoteStorageEnumerateWorkshopFilesResult_t_119 *)src; +} + 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 ); @@ -15986,39 +15696,24 @@ 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 ); -static void RemoteStorageFileShareResult_t_128x_u_from_w(void *dst, const void *src) -{ - u_RemoteStorageFileShareResult_t_128x *d = (u_RemoteStorageFileShareResult_t_128x *)dst; - const w_RemoteStorageFileShareResult_t_128x *s = (const w_RemoteStorageFileShareResult_t_128x *)src; - - d->m_eResult = s->m_eResult; - d->m_hFile = s->m_hFile; - d->m_rgchFilename = s->m_rgchFilename; -} #ifdef __x86_64__ w64_RemoteStorageFileShareResult_t_128x::operator u64_RemoteStorageFileShareResult_t_128x() const { u64_RemoteStorageFileShareResult_t_128x ret; - RemoteStorageFileShareResult_t_128x_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_hFile = this->m_hFile; + ret.m_rgchFilename = this->m_rgchFilename; return ret; } #endif - -static void RemoteStorageFileShareResult_t_128x_w_from_u(void *dst, const void *src) -{ - w_RemoteStorageFileShareResult_t_128x *d = (w_RemoteStorageFileShareResult_t_128x *)dst; - const u_RemoteStorageFileShareResult_t_128x *s = (const u_RemoteStorageFileShareResult_t_128x *)src; - - d->m_eResult = s->m_eResult; - d->m_hFile = s->m_hFile; - d->m_rgchFilename = s->m_rgchFilename; -} #ifdef __x86_64__ u64_RemoteStorageFileShareResult_t_128x::operator w64_RemoteStorageFileShareResult_t_128x() const { w64_RemoteStorageFileShareResult_t_128x ret; - RemoteStorageFileShareResult_t_128x_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_hFile = this->m_hFile; + ret.m_rgchFilename = this->m_rgchFilename; return ret; } #endif @@ -16027,52 +15722,45 @@ u64_RemoteStorageFileShareResult_t_128x::operator w64_RemoteStorageFileShareResu w32_RemoteStorageFileShareResult_t_128x::operator u32_RemoteStorageFileShareResult_t_128x() const { u32_RemoteStorageFileShareResult_t_128x ret; - RemoteStorageFileShareResult_t_128x_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_hFile = this->m_hFile; + ret.m_rgchFilename = this->m_rgchFilename; return ret; } #endif - #ifdef __i386__ u32_RemoteStorageFileShareResult_t_128x::operator w32_RemoteStorageFileShareResult_t_128x() const { w32_RemoteStorageFileShareResult_t_128x ret; - RemoteStorageFileShareResult_t_128x_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_hFile = this->m_hFile; + ret.m_rgchFilename = this->m_rgchFilename; return ret; } #endif -static void RemoteStorageFileShareResult_t_123_u_from_w(void *dst, const void *src) +static void RemoteStorageFileShareResult_t_128x_utow(void *dst, const void *src) { - u_RemoteStorageFileShareResult_t_123 *d = (u_RemoteStorageFileShareResult_t_123 *)dst; - const w_RemoteStorageFileShareResult_t_123 *s = (const w_RemoteStorageFileShareResult_t_123 *)src; - - d->m_eResult = s->m_eResult; - d->m_hFile = s->m_hFile; + *(w_RemoteStorageFileShareResult_t_128x *)dst = *(const u_RemoteStorageFileShareResult_t_128x *)src; } + #ifdef __x86_64__ w64_RemoteStorageFileShareResult_t_123::operator u64_RemoteStorageFileShareResult_t_123() const { u64_RemoteStorageFileShareResult_t_123 ret; - RemoteStorageFileShareResult_t_123_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_hFile = this->m_hFile; return ret; } #endif - -static void RemoteStorageFileShareResult_t_123_w_from_u(void *dst, const void *src) -{ - w_RemoteStorageFileShareResult_t_123 *d = (w_RemoteStorageFileShareResult_t_123 *)dst; - const u_RemoteStorageFileShareResult_t_123 *s = (const u_RemoteStorageFileShareResult_t_123 *)src; - - d->m_eResult = s->m_eResult; - d->m_hFile = s->m_hFile; -} #ifdef __x86_64__ u64_RemoteStorageFileShareResult_t_123::operator w64_RemoteStorageFileShareResult_t_123() const { w64_RemoteStorageFileShareResult_t_123 ret; - RemoteStorageFileShareResult_t_123_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_hFile = this->m_hFile; return ret; } #endif @@ -16081,56 +15769,52 @@ u64_RemoteStorageFileShareResult_t_123::operator w64_RemoteStorageFileShareResul w32_RemoteStorageFileShareResult_t_123::operator u32_RemoteStorageFileShareResult_t_123() const { u32_RemoteStorageFileShareResult_t_123 ret; - RemoteStorageFileShareResult_t_123_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_hFile = this->m_hFile; return ret; } #endif - #ifdef __i386__ u32_RemoteStorageFileShareResult_t_123::operator w32_RemoteStorageFileShareResult_t_123() const { w32_RemoteStorageFileShareResult_t_123 ret; - RemoteStorageFileShareResult_t_123_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_hFile = this->m_hFile; return ret; } #endif -static void RemoteStorageFileShareResult_t_111x_u_from_w(void *dst, const void *src) +static void RemoteStorageFileShareResult_t_123_utow(void *dst, const void *src) { - u_RemoteStorageFileShareResult_t_111x *d = (u_RemoteStorageFileShareResult_t_111x *)dst; - const w_RemoteStorageFileShareResult_t_111x *s = (const w_RemoteStorageFileShareResult_t_111x *)src; - - d->m_eResult = s->m_eResult; - d->m_hFile = s->m_hFile; + *(w_RemoteStorageFileShareResult_t_123 *)dst = *(const u_RemoteStorageFileShareResult_t_123 *)src; } + #ifdef __i386__ w32_RemoteStorageFileShareResult_t_111x::operator u32_RemoteStorageFileShareResult_t_111x() const { u32_RemoteStorageFileShareResult_t_111x ret; - RemoteStorageFileShareResult_t_111x_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_hFile = this->m_hFile; return ret; } #endif - -static void RemoteStorageFileShareResult_t_111x_w_from_u(void *dst, const void *src) -{ - w_RemoteStorageFileShareResult_t_111x *d = (w_RemoteStorageFileShareResult_t_111x *)dst; - const u_RemoteStorageFileShareResult_t_111x *s = (const u_RemoteStorageFileShareResult_t_111x *)src; - - d->m_eResult = s->m_eResult; - d->m_hFile = s->m_hFile; -} #ifdef __i386__ u32_RemoteStorageFileShareResult_t_111x::operator w32_RemoteStorageFileShareResult_t_111x() const { w32_RemoteStorageFileShareResult_t_111x ret; - RemoteStorageFileShareResult_t_111x_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_hFile = this->m_hFile; return ret; } #endif +static void RemoteStorageFileShareResult_t_111x_utow(void *dst, const void *src) +{ + *(w_RemoteStorageFileShareResult_t_111x *)dst = *(const u_RemoteStorageFileShareResult_t_111x *)src; +} + 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 ); @@ -17091,75 +16775,60 @@ 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 ); -static void RemoteStorageGetPublishedFileDetailsResult_t_126_u_from_w(void *dst, const void *src) -{ - u_RemoteStorageGetPublishedFileDetailsResult_t_126 *d = (u_RemoteStorageGetPublishedFileDetailsResult_t_126 *)dst; - const w_RemoteStorageGetPublishedFileDetailsResult_t_126 *s = (const w_RemoteStorageGetPublishedFileDetailsResult_t_126 *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_nCreatorAppID = s->m_nCreatorAppID; - d->m_nConsumerAppID = s->m_nConsumerAppID; - d->m_rgchTitle = s->m_rgchTitle; - d->m_rgchDescription = s->m_rgchDescription; - d->m_hFile = s->m_hFile; - d->m_hPreviewFile = s->m_hPreviewFile; - d->m_ulSteamIDOwner = s->m_ulSteamIDOwner; - d->m_rtimeCreated = s->m_rtimeCreated; - d->m_rtimeUpdated = s->m_rtimeUpdated; - d->m_eVisibility = s->m_eVisibility; - d->m_bBanned = s->m_bBanned; - d->m_rgchTags = s->m_rgchTags; - d->m_bTagsTruncated = s->m_bTagsTruncated; - d->m_pchFileName = s->m_pchFileName; - d->m_nFileSize = s->m_nFileSize; - d->m_nPreviewFileSize = s->m_nPreviewFileSize; - d->m_rgchURL = s->m_rgchURL; - d->m_eFileType = s->m_eFileType; - d->m_bAcceptedForUse = s->m_bAcceptedForUse; -} #ifdef __x86_64__ w64_RemoteStorageGetPublishedFileDetailsResult_t_126::operator u64_RemoteStorageGetPublishedFileDetailsResult_t_126() const { u64_RemoteStorageGetPublishedFileDetailsResult_t_126 ret; - RemoteStorageGetPublishedFileDetailsResult_t_126_u_from_w((void *)&ret, (const void *)this); + 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 - -static void RemoteStorageGetPublishedFileDetailsResult_t_126_w_from_u(void *dst, const void *src) -{ - w_RemoteStorageGetPublishedFileDetailsResult_t_126 *d = (w_RemoteStorageGetPublishedFileDetailsResult_t_126 *)dst; - const u_RemoteStorageGetPublishedFileDetailsResult_t_126 *s = (const u_RemoteStorageGetPublishedFileDetailsResult_t_126 *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_nCreatorAppID = s->m_nCreatorAppID; - d->m_nConsumerAppID = s->m_nConsumerAppID; - d->m_rgchTitle = s->m_rgchTitle; - d->m_rgchDescription = s->m_rgchDescription; - d->m_hFile = s->m_hFile; - d->m_hPreviewFile = s->m_hPreviewFile; - d->m_ulSteamIDOwner = s->m_ulSteamIDOwner; - d->m_rtimeCreated = s->m_rtimeCreated; - d->m_rtimeUpdated = s->m_rtimeUpdated; - d->m_eVisibility = s->m_eVisibility; - d->m_bBanned = s->m_bBanned; - d->m_rgchTags = s->m_rgchTags; - d->m_bTagsTruncated = s->m_bTagsTruncated; - d->m_pchFileName = s->m_pchFileName; - d->m_nFileSize = s->m_nFileSize; - d->m_nPreviewFileSize = s->m_nPreviewFileSize; - d->m_rgchURL = s->m_rgchURL; - d->m_eFileType = s->m_eFileType; - d->m_bAcceptedForUse = s->m_bAcceptedForUse; -} #ifdef __x86_64__ u64_RemoteStorageGetPublishedFileDetailsResult_t_126::operator w64_RemoteStorageGetPublishedFileDetailsResult_t_126() const { w64_RemoteStorageGetPublishedFileDetailsResult_t_126 ret; - RemoteStorageGetPublishedFileDetailsResult_t_126_w_from_u((void *)&ret, (const void *)this); + 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 @@ -17168,88 +16837,117 @@ u64_RemoteStorageGetPublishedFileDetailsResult_t_126::operator w64_RemoteStorage w32_RemoteStorageGetPublishedFileDetailsResult_t_126::operator u32_RemoteStorageGetPublishedFileDetailsResult_t_126() const { u32_RemoteStorageGetPublishedFileDetailsResult_t_126 ret; - RemoteStorageGetPublishedFileDetailsResult_t_126_u_from_w((void *)&ret, (const void *)this); + 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__ u32_RemoteStorageGetPublishedFileDetailsResult_t_126::operator w32_RemoteStorageGetPublishedFileDetailsResult_t_126() const { w32_RemoteStorageGetPublishedFileDetailsResult_t_126 ret; - RemoteStorageGetPublishedFileDetailsResult_t_126_w_from_u((void *)&ret, (const void *)this); + 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 -static void RemoteStorageGetPublishedFileDetailsResult_t_123_u_from_w(void *dst, const void *src) +static void RemoteStorageGetPublishedFileDetailsResult_t_126_utow(void *dst, const void *src) { - u_RemoteStorageGetPublishedFileDetailsResult_t_123 *d = (u_RemoteStorageGetPublishedFileDetailsResult_t_123 *)dst; - const w_RemoteStorageGetPublishedFileDetailsResult_t_123 *s = (const w_RemoteStorageGetPublishedFileDetailsResult_t_123 *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_nCreatorAppID = s->m_nCreatorAppID; - d->m_nConsumerAppID = s->m_nConsumerAppID; - d->m_rgchTitle = s->m_rgchTitle; - d->m_rgchDescription = s->m_rgchDescription; - d->m_hFile = s->m_hFile; - d->m_hPreviewFile = s->m_hPreviewFile; - d->m_ulSteamIDOwner = s->m_ulSteamIDOwner; - d->m_rtimeCreated = s->m_rtimeCreated; - d->m_rtimeUpdated = s->m_rtimeUpdated; - d->m_eVisibility = s->m_eVisibility; - d->m_bBanned = s->m_bBanned; - d->m_rgchTags = s->m_rgchTags; - d->m_bTagsTruncated = s->m_bTagsTruncated; - d->m_pchFileName = s->m_pchFileName; - d->m_nFileSize = s->m_nFileSize; - d->m_nPreviewFileSize = s->m_nPreviewFileSize; - d->m_rgchURL = s->m_rgchURL; - d->m_eFileType = s->m_eFileType; + *(w_RemoteStorageGetPublishedFileDetailsResult_t_126 *)dst = *(const u_RemoteStorageGetPublishedFileDetailsResult_t_126 *)src; } + #ifdef __x86_64__ w64_RemoteStorageGetPublishedFileDetailsResult_t_123::operator u64_RemoteStorageGetPublishedFileDetailsResult_t_123() const { u64_RemoteStorageGetPublishedFileDetailsResult_t_123 ret; - RemoteStorageGetPublishedFileDetailsResult_t_123_u_from_w((void *)&ret, (const void *)this); + 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 - -static void RemoteStorageGetPublishedFileDetailsResult_t_123_w_from_u(void *dst, const void *src) -{ - w_RemoteStorageGetPublishedFileDetailsResult_t_123 *d = (w_RemoteStorageGetPublishedFileDetailsResult_t_123 *)dst; - const u_RemoteStorageGetPublishedFileDetailsResult_t_123 *s = (const u_RemoteStorageGetPublishedFileDetailsResult_t_123 *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_nCreatorAppID = s->m_nCreatorAppID; - d->m_nConsumerAppID = s->m_nConsumerAppID; - d->m_rgchTitle = s->m_rgchTitle; - d->m_rgchDescription = s->m_rgchDescription; - d->m_hFile = s->m_hFile; - d->m_hPreviewFile = s->m_hPreviewFile; - d->m_ulSteamIDOwner = s->m_ulSteamIDOwner; - d->m_rtimeCreated = s->m_rtimeCreated; - d->m_rtimeUpdated = s->m_rtimeUpdated; - d->m_eVisibility = s->m_eVisibility; - d->m_bBanned = s->m_bBanned; - d->m_rgchTags = s->m_rgchTags; - d->m_bTagsTruncated = s->m_bTagsTruncated; - d->m_pchFileName = s->m_pchFileName; - d->m_nFileSize = s->m_nFileSize; - d->m_nPreviewFileSize = s->m_nPreviewFileSize; - d->m_rgchURL = s->m_rgchURL; - d->m_eFileType = s->m_eFileType; -} #ifdef __x86_64__ u64_RemoteStorageGetPublishedFileDetailsResult_t_123::operator w64_RemoteStorageGetPublishedFileDetailsResult_t_123() const { w64_RemoteStorageGetPublishedFileDetailsResult_t_123 ret; - RemoteStorageGetPublishedFileDetailsResult_t_123_w_from_u((void *)&ret, (const void *)this); + 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 @@ -17258,291 +16956,293 @@ u64_RemoteStorageGetPublishedFileDetailsResult_t_123::operator w64_RemoteStorage w32_RemoteStorageGetPublishedFileDetailsResult_t_123::operator u32_RemoteStorageGetPublishedFileDetailsResult_t_123() const { u32_RemoteStorageGetPublishedFileDetailsResult_t_123 ret; - RemoteStorageGetPublishedFileDetailsResult_t_123_u_from_w((void *)&ret, (const void *)this); + 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__ u32_RemoteStorageGetPublishedFileDetailsResult_t_123::operator w32_RemoteStorageGetPublishedFileDetailsResult_t_123() const { w32_RemoteStorageGetPublishedFileDetailsResult_t_123 ret; - RemoteStorageGetPublishedFileDetailsResult_t_123_w_from_u((void *)&ret, (const void *)this); + 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 -static void RemoteStorageGetPublishedFileDetailsResult_t_119x_u_from_w(void *dst, const void *src) +static void RemoteStorageGetPublishedFileDetailsResult_t_123_utow(void *dst, const void *src) { - u_RemoteStorageGetPublishedFileDetailsResult_t_119x *d = (u_RemoteStorageGetPublishedFileDetailsResult_t_119x *)dst; - const w_RemoteStorageGetPublishedFileDetailsResult_t_119x *s = (const w_RemoteStorageGetPublishedFileDetailsResult_t_119x *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_nCreatorAppID = s->m_nCreatorAppID; - d->m_nConsumerAppID = s->m_nConsumerAppID; - d->m_rgchTitle = s->m_rgchTitle; - d->m_rgchDescription = s->m_rgchDescription; - d->m_hFile = s->m_hFile; - d->m_hPreviewFile = s->m_hPreviewFile; - d->m_ulSteamIDOwner = s->m_ulSteamIDOwner; - d->m_rtimeCreated = s->m_rtimeCreated; - d->m_rtimeUpdated = s->m_rtimeUpdated; - d->m_eVisibility = s->m_eVisibility; - d->m_bBanned = s->m_bBanned; - d->m_rgchTags = s->m_rgchTags; - d->m_bTagsTruncated = s->m_bTagsTruncated; - d->m_pchFileName = s->m_pchFileName; - d->m_nFileSize = s->m_nFileSize; - d->m_nPreviewFileSize = s->m_nPreviewFileSize; - d->m_rgchURL = s->m_rgchURL; - d->m_eFileType = s->m_eFileType; + *(w_RemoteStorageGetPublishedFileDetailsResult_t_123 *)dst = *(const u_RemoteStorageGetPublishedFileDetailsResult_t_123 *)src; } + #ifdef __i386__ w32_RemoteStorageGetPublishedFileDetailsResult_t_119x::operator u32_RemoteStorageGetPublishedFileDetailsResult_t_119x() const { u32_RemoteStorageGetPublishedFileDetailsResult_t_119x ret; - RemoteStorageGetPublishedFileDetailsResult_t_119x_u_from_w((void *)&ret, (const void *)this); + 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 - -static void RemoteStorageGetPublishedFileDetailsResult_t_119x_w_from_u(void *dst, const void *src) -{ - w_RemoteStorageGetPublishedFileDetailsResult_t_119x *d = (w_RemoteStorageGetPublishedFileDetailsResult_t_119x *)dst; - const u_RemoteStorageGetPublishedFileDetailsResult_t_119x *s = (const u_RemoteStorageGetPublishedFileDetailsResult_t_119x *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_nCreatorAppID = s->m_nCreatorAppID; - d->m_nConsumerAppID = s->m_nConsumerAppID; - d->m_rgchTitle = s->m_rgchTitle; - d->m_rgchDescription = s->m_rgchDescription; - d->m_hFile = s->m_hFile; - d->m_hPreviewFile = s->m_hPreviewFile; - d->m_ulSteamIDOwner = s->m_ulSteamIDOwner; - d->m_rtimeCreated = s->m_rtimeCreated; - d->m_rtimeUpdated = s->m_rtimeUpdated; - d->m_eVisibility = s->m_eVisibility; - d->m_bBanned = s->m_bBanned; - d->m_rgchTags = s->m_rgchTags; - d->m_bTagsTruncated = s->m_bTagsTruncated; - d->m_pchFileName = s->m_pchFileName; - d->m_nFileSize = s->m_nFileSize; - d->m_nPreviewFileSize = s->m_nPreviewFileSize; - d->m_rgchURL = s->m_rgchURL; - d->m_eFileType = s->m_eFileType; -} #ifdef __i386__ u32_RemoteStorageGetPublishedFileDetailsResult_t_119x::operator w32_RemoteStorageGetPublishedFileDetailsResult_t_119x() const { w32_RemoteStorageGetPublishedFileDetailsResult_t_119x ret; - RemoteStorageGetPublishedFileDetailsResult_t_119x_w_from_u((void *)&ret, (const void *)this); + 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 -static void RemoteStorageGetPublishedFileDetailsResult_t_119_u_from_w(void *dst, const void *src) +static void RemoteStorageGetPublishedFileDetailsResult_t_119x_utow(void *dst, const void *src) { - u_RemoteStorageGetPublishedFileDetailsResult_t_119 *d = (u_RemoteStorageGetPublishedFileDetailsResult_t_119 *)dst; - const w_RemoteStorageGetPublishedFileDetailsResult_t_119 *s = (const w_RemoteStorageGetPublishedFileDetailsResult_t_119 *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_nCreatorAppID = s->m_nCreatorAppID; - d->m_nConsumerAppID = s->m_nConsumerAppID; - d->m_rgchTitle = s->m_rgchTitle; - d->m_rgchDescription = s->m_rgchDescription; - d->m_hFile = s->m_hFile; - d->m_hPreviewFile = s->m_hPreviewFile; - d->m_ulSteamIDOwner = s->m_ulSteamIDOwner; - d->m_rtimeCreated = s->m_rtimeCreated; - d->m_rtimeUpdated = s->m_rtimeUpdated; - d->m_eVisibility = s->m_eVisibility; - d->m_bBanned = s->m_bBanned; - d->m_rgchTags = s->m_rgchTags; - d->m_bTagsTruncated = s->m_bTagsTruncated; - d->m_pchFileName = s->m_pchFileName; - d->m_nFileSize = s->m_nFileSize; - d->m_nPreviewFileSize = s->m_nPreviewFileSize; - d->m_rgchURL = s->m_rgchURL; + *(w_RemoteStorageGetPublishedFileDetailsResult_t_119x *)dst = *(const u_RemoteStorageGetPublishedFileDetailsResult_t_119x *)src; } + #ifdef __i386__ w32_RemoteStorageGetPublishedFileDetailsResult_t_119::operator u32_RemoteStorageGetPublishedFileDetailsResult_t_119() const { u32_RemoteStorageGetPublishedFileDetailsResult_t_119 ret; - RemoteStorageGetPublishedFileDetailsResult_t_119_u_from_w((void *)&ret, (const void *)this); + 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 - -static void RemoteStorageGetPublishedFileDetailsResult_t_119_w_from_u(void *dst, const void *src) -{ - w_RemoteStorageGetPublishedFileDetailsResult_t_119 *d = (w_RemoteStorageGetPublishedFileDetailsResult_t_119 *)dst; - const u_RemoteStorageGetPublishedFileDetailsResult_t_119 *s = (const u_RemoteStorageGetPublishedFileDetailsResult_t_119 *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_nCreatorAppID = s->m_nCreatorAppID; - d->m_nConsumerAppID = s->m_nConsumerAppID; - d->m_rgchTitle = s->m_rgchTitle; - d->m_rgchDescription = s->m_rgchDescription; - d->m_hFile = s->m_hFile; - d->m_hPreviewFile = s->m_hPreviewFile; - d->m_ulSteamIDOwner = s->m_ulSteamIDOwner; - d->m_rtimeCreated = s->m_rtimeCreated; - d->m_rtimeUpdated = s->m_rtimeUpdated; - d->m_eVisibility = s->m_eVisibility; - d->m_bBanned = s->m_bBanned; - d->m_rgchTags = s->m_rgchTags; - d->m_bTagsTruncated = s->m_bTagsTruncated; - d->m_pchFileName = s->m_pchFileName; - d->m_nFileSize = s->m_nFileSize; - d->m_nPreviewFileSize = s->m_nPreviewFileSize; - d->m_rgchURL = s->m_rgchURL; -} #ifdef __i386__ u32_RemoteStorageGetPublishedFileDetailsResult_t_119::operator w32_RemoteStorageGetPublishedFileDetailsResult_t_119() const { w32_RemoteStorageGetPublishedFileDetailsResult_t_119 ret; - RemoteStorageGetPublishedFileDetailsResult_t_119_w_from_u((void *)&ret, (const void *)this); + 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 -static void RemoteStorageGetPublishedFileDetailsResult_t_118_u_from_w(void *dst, const void *src) +static void RemoteStorageGetPublishedFileDetailsResult_t_119_utow(void *dst, const void *src) { - u_RemoteStorageGetPublishedFileDetailsResult_t_118 *d = (u_RemoteStorageGetPublishedFileDetailsResult_t_118 *)dst; - const w_RemoteStorageGetPublishedFileDetailsResult_t_118 *s = (const w_RemoteStorageGetPublishedFileDetailsResult_t_118 *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_nCreatorAppID = s->m_nCreatorAppID; - d->m_nConsumerAppID = s->m_nConsumerAppID; - d->m_rgchTitle = s->m_rgchTitle; - d->m_rgchDescription = s->m_rgchDescription; - d->m_hFile = s->m_hFile; - d->m_hPreviewFile = s->m_hPreviewFile; - d->m_ulSteamIDOwner = s->m_ulSteamIDOwner; - d->m_rtimeCreated = s->m_rtimeCreated; - d->m_rtimeUpdated = s->m_rtimeUpdated; - d->m_eVisibility = s->m_eVisibility; - d->m_bBanned = s->m_bBanned; - d->m_rgchTags = s->m_rgchTags; - d->m_bTagsTruncated = s->m_bTagsTruncated; - d->m_pchFileName = s->m_pchFileName; - d->m_nFileSize = s->m_nFileSize; - d->m_nPreviewFileSize = s->m_nPreviewFileSize; + *(w_RemoteStorageGetPublishedFileDetailsResult_t_119 *)dst = *(const u_RemoteStorageGetPublishedFileDetailsResult_t_119 *)src; } + #ifdef __i386__ w32_RemoteStorageGetPublishedFileDetailsResult_t_118::operator u32_RemoteStorageGetPublishedFileDetailsResult_t_118() const { u32_RemoteStorageGetPublishedFileDetailsResult_t_118 ret; - RemoteStorageGetPublishedFileDetailsResult_t_118_u_from_w((void *)&ret, (const void *)this); + 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 - -static void RemoteStorageGetPublishedFileDetailsResult_t_118_w_from_u(void *dst, const void *src) -{ - w_RemoteStorageGetPublishedFileDetailsResult_t_118 *d = (w_RemoteStorageGetPublishedFileDetailsResult_t_118 *)dst; - const u_RemoteStorageGetPublishedFileDetailsResult_t_118 *s = (const u_RemoteStorageGetPublishedFileDetailsResult_t_118 *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_nCreatorAppID = s->m_nCreatorAppID; - d->m_nConsumerAppID = s->m_nConsumerAppID; - d->m_rgchTitle = s->m_rgchTitle; - d->m_rgchDescription = s->m_rgchDescription; - d->m_hFile = s->m_hFile; - d->m_hPreviewFile = s->m_hPreviewFile; - d->m_ulSteamIDOwner = s->m_ulSteamIDOwner; - d->m_rtimeCreated = s->m_rtimeCreated; - d->m_rtimeUpdated = s->m_rtimeUpdated; - d->m_eVisibility = s->m_eVisibility; - d->m_bBanned = s->m_bBanned; - d->m_rgchTags = s->m_rgchTags; - d->m_bTagsTruncated = s->m_bTagsTruncated; - d->m_pchFileName = s->m_pchFileName; - d->m_nFileSize = s->m_nFileSize; - d->m_nPreviewFileSize = s->m_nPreviewFileSize; -} #ifdef __i386__ u32_RemoteStorageGetPublishedFileDetailsResult_t_118::operator w32_RemoteStorageGetPublishedFileDetailsResult_t_118() const { w32_RemoteStorageGetPublishedFileDetailsResult_t_118 ret; - RemoteStorageGetPublishedFileDetailsResult_t_118_w_from_u((void *)&ret, (const void *)this); + 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 -static void RemoteStorageGetPublishedFileDetailsResult_t_116x_u_from_w(void *dst, const void *src) +static void RemoteStorageGetPublishedFileDetailsResult_t_118_utow(void *dst, const void *src) { - u_RemoteStorageGetPublishedFileDetailsResult_t_116x *d = (u_RemoteStorageGetPublishedFileDetailsResult_t_116x *)dst; - const w_RemoteStorageGetPublishedFileDetailsResult_t_116x *s = (const w_RemoteStorageGetPublishedFileDetailsResult_t_116x *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_nCreatorAppID = s->m_nCreatorAppID; - d->m_nConsumerAppID = s->m_nConsumerAppID; - d->m_rgchTitle = s->m_rgchTitle; - d->m_rgchDescription = s->m_rgchDescription; - d->m_hFile = s->m_hFile; - d->m_hPreviewFile = s->m_hPreviewFile; - d->m_ulSteamIDOwner = s->m_ulSteamIDOwner; - d->m_rtimeCreated = s->m_rtimeCreated; - d->m_rtimeUpdated = s->m_rtimeUpdated; - d->m_eVisibility = s->m_eVisibility; - d->m_bBanned = s->m_bBanned; - d->m_rgchTags = s->m_rgchTags; - d->m_bTagsTruncated = s->m_bTagsTruncated; - d->m_pchFileName = s->m_pchFileName; + *(w_RemoteStorageGetPublishedFileDetailsResult_t_118 *)dst = *(const u_RemoteStorageGetPublishedFileDetailsResult_t_118 *)src; } + #ifdef __i386__ w32_RemoteStorageGetPublishedFileDetailsResult_t_116x::operator u32_RemoteStorageGetPublishedFileDetailsResult_t_116x() const { u32_RemoteStorageGetPublishedFileDetailsResult_t_116x ret; - RemoteStorageGetPublishedFileDetailsResult_t_116x_u_from_w((void *)&ret, (const void *)this); + 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 - -static void RemoteStorageGetPublishedFileDetailsResult_t_116x_w_from_u(void *dst, const void *src) -{ - w_RemoteStorageGetPublishedFileDetailsResult_t_116x *d = (w_RemoteStorageGetPublishedFileDetailsResult_t_116x *)dst; - const u_RemoteStorageGetPublishedFileDetailsResult_t_116x *s = (const u_RemoteStorageGetPublishedFileDetailsResult_t_116x *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_nCreatorAppID = s->m_nCreatorAppID; - d->m_nConsumerAppID = s->m_nConsumerAppID; - d->m_rgchTitle = s->m_rgchTitle; - d->m_rgchDescription = s->m_rgchDescription; - d->m_hFile = s->m_hFile; - d->m_hPreviewFile = s->m_hPreviewFile; - d->m_ulSteamIDOwner = s->m_ulSteamIDOwner; - d->m_rtimeCreated = s->m_rtimeCreated; - d->m_rtimeUpdated = s->m_rtimeUpdated; - d->m_eVisibility = s->m_eVisibility; - d->m_bBanned = s->m_bBanned; - d->m_rgchTags = s->m_rgchTags; - d->m_bTagsTruncated = s->m_bTagsTruncated; - d->m_pchFileName = s->m_pchFileName; -} #ifdef __i386__ u32_RemoteStorageGetPublishedFileDetailsResult_t_116x::operator w32_RemoteStorageGetPublishedFileDetailsResult_t_116x() const { w32_RemoteStorageGetPublishedFileDetailsResult_t_116x ret; - RemoteStorageGetPublishedFileDetailsResult_t_116x_w_from_u((void *)&ret, (const void *)this); + 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 +static void RemoteStorageGetPublishedFileDetailsResult_t_116x_utow(void *dst, const void *src) +{ + *(w_RemoteStorageGetPublishedFileDetailsResult_t_116x *)dst = *(const u_RemoteStorageGetPublishedFileDetailsResult_t_116x *)src; +} + 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 ); @@ -17655,45 +17355,30 @@ 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 ); -static void RemoteStorageGetPublishedItemVoteDetailsResult_t_123_u_from_w(void *dst, const void *src) -{ - u_RemoteStorageGetPublishedItemVoteDetailsResult_t_123 *d = (u_RemoteStorageGetPublishedItemVoteDetailsResult_t_123 *)dst; - const w_RemoteStorageGetPublishedItemVoteDetailsResult_t_123 *s = (const w_RemoteStorageGetPublishedItemVoteDetailsResult_t_123 *)src; - - d->m_eResult = s->m_eResult; - d->m_unPublishedFileId = s->m_unPublishedFileId; - d->m_nVotesFor = s->m_nVotesFor; - d->m_nVotesAgainst = s->m_nVotesAgainst; - d->m_nReports = s->m_nReports; - d->m_fScore = s->m_fScore; -} #ifdef __x86_64__ w64_RemoteStorageGetPublishedItemVoteDetailsResult_t_123::operator u64_RemoteStorageGetPublishedItemVoteDetailsResult_t_123() const { u64_RemoteStorageGetPublishedItemVoteDetailsResult_t_123 ret; - RemoteStorageGetPublishedItemVoteDetailsResult_t_123_u_from_w((void *)&ret, (const void *)this); + 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 - -static void RemoteStorageGetPublishedItemVoteDetailsResult_t_123_w_from_u(void *dst, const void *src) -{ - w_RemoteStorageGetPublishedItemVoteDetailsResult_t_123 *d = (w_RemoteStorageGetPublishedItemVoteDetailsResult_t_123 *)dst; - const u_RemoteStorageGetPublishedItemVoteDetailsResult_t_123 *s = (const u_RemoteStorageGetPublishedItemVoteDetailsResult_t_123 *)src; - - d->m_eResult = s->m_eResult; - d->m_unPublishedFileId = s->m_unPublishedFileId; - d->m_nVotesFor = s->m_nVotesFor; - d->m_nVotesAgainst = s->m_nVotesAgainst; - d->m_nReports = s->m_nReports; - d->m_fScore = s->m_fScore; -} #ifdef __x86_64__ u64_RemoteStorageGetPublishedItemVoteDetailsResult_t_123::operator w64_RemoteStorageGetPublishedItemVoteDetailsResult_t_123() const { w64_RemoteStorageGetPublishedItemVoteDetailsResult_t_123 ret; - RemoteStorageGetPublishedItemVoteDetailsResult_t_123_w_from_u((void *)&ret, (const void *)this); + 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 @@ -17702,64 +17387,68 @@ u64_RemoteStorageGetPublishedItemVoteDetailsResult_t_123::operator w64_RemoteSto w32_RemoteStorageGetPublishedItemVoteDetailsResult_t_123::operator u32_RemoteStorageGetPublishedItemVoteDetailsResult_t_123() const { u32_RemoteStorageGetPublishedItemVoteDetailsResult_t_123 ret; - RemoteStorageGetPublishedItemVoteDetailsResult_t_123_u_from_w((void *)&ret, (const void *)this); + 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__ u32_RemoteStorageGetPublishedItemVoteDetailsResult_t_123::operator w32_RemoteStorageGetPublishedItemVoteDetailsResult_t_123() const { w32_RemoteStorageGetPublishedItemVoteDetailsResult_t_123 ret; - RemoteStorageGetPublishedItemVoteDetailsResult_t_123_w_from_u((void *)&ret, (const void *)this); + 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 -static void RemoteStorageGetPublishedItemVoteDetailsResult_t_119_u_from_w(void *dst, const void *src) +static void RemoteStorageGetPublishedItemVoteDetailsResult_t_123_utow(void *dst, const void *src) { - u_RemoteStorageGetPublishedItemVoteDetailsResult_t_119 *d = (u_RemoteStorageGetPublishedItemVoteDetailsResult_t_119 *)dst; - const w_RemoteStorageGetPublishedItemVoteDetailsResult_t_119 *s = (const w_RemoteStorageGetPublishedItemVoteDetailsResult_t_119 *)src; - - d->m_eResult = s->m_eResult; - d->m_unPublishedFileId = s->m_unPublishedFileId; - d->m_nVotesFor = s->m_nVotesFor; - d->m_nVotesAgainst = s->m_nVotesAgainst; - d->m_nReports = s->m_nReports; - d->m_fScore = s->m_fScore; + *(w_RemoteStorageGetPublishedItemVoteDetailsResult_t_123 *)dst = *(const u_RemoteStorageGetPublishedItemVoteDetailsResult_t_123 *)src; } + #ifdef __i386__ w32_RemoteStorageGetPublishedItemVoteDetailsResult_t_119::operator u32_RemoteStorageGetPublishedItemVoteDetailsResult_t_119() const { u32_RemoteStorageGetPublishedItemVoteDetailsResult_t_119 ret; - RemoteStorageGetPublishedItemVoteDetailsResult_t_119_u_from_w((void *)&ret, (const void *)this); + 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 - -static void RemoteStorageGetPublishedItemVoteDetailsResult_t_119_w_from_u(void *dst, const void *src) -{ - w_RemoteStorageGetPublishedItemVoteDetailsResult_t_119 *d = (w_RemoteStorageGetPublishedItemVoteDetailsResult_t_119 *)dst; - const u_RemoteStorageGetPublishedItemVoteDetailsResult_t_119 *s = (const u_RemoteStorageGetPublishedItemVoteDetailsResult_t_119 *)src; - - d->m_eResult = s->m_eResult; - d->m_unPublishedFileId = s->m_unPublishedFileId; - d->m_nVotesFor = s->m_nVotesFor; - d->m_nVotesAgainst = s->m_nVotesAgainst; - d->m_nReports = s->m_nReports; - d->m_fScore = s->m_fScore; -} #ifdef __i386__ u32_RemoteStorageGetPublishedItemVoteDetailsResult_t_119::operator w32_RemoteStorageGetPublishedItemVoteDetailsResult_t_119() const { w32_RemoteStorageGetPublishedItemVoteDetailsResult_t_119 ret; - RemoteStorageGetPublishedItemVoteDetailsResult_t_119_w_from_u((void *)&ret, (const void *)this); + 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 +static void RemoteStorageGetPublishedItemVoteDetailsResult_t_119_utow(void *dst, const void *src) +{ + *(w_RemoteStorageGetPublishedItemVoteDetailsResult_t_119 *)dst = *(const u_RemoteStorageGetPublishedItemVoteDetailsResult_t_119 *)src; +} + 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 ); @@ -17840,39 +17529,24 @@ 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 ); -static void RemoteStoragePublishFileResult_t_125_u_from_w(void *dst, const void *src) -{ - u_RemoteStoragePublishFileResult_t_125 *d = (u_RemoteStoragePublishFileResult_t_125 *)dst; - const w_RemoteStoragePublishFileResult_t_125 *s = (const w_RemoteStoragePublishFileResult_t_125 *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_bUserNeedsToAcceptWorkshopLegalAgreement = s->m_bUserNeedsToAcceptWorkshopLegalAgreement; -} #ifdef __x86_64__ w64_RemoteStoragePublishFileResult_t_125::operator u64_RemoteStoragePublishFileResult_t_125() const { u64_RemoteStoragePublishFileResult_t_125 ret; - RemoteStoragePublishFileResult_t_125_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_bUserNeedsToAcceptWorkshopLegalAgreement = this->m_bUserNeedsToAcceptWorkshopLegalAgreement; return ret; } #endif - -static void RemoteStoragePublishFileResult_t_125_w_from_u(void *dst, const void *src) -{ - w_RemoteStoragePublishFileResult_t_125 *d = (w_RemoteStoragePublishFileResult_t_125 *)dst; - const u_RemoteStoragePublishFileResult_t_125 *s = (const u_RemoteStoragePublishFileResult_t_125 *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_bUserNeedsToAcceptWorkshopLegalAgreement = s->m_bUserNeedsToAcceptWorkshopLegalAgreement; -} #ifdef __x86_64__ u64_RemoteStoragePublishFileResult_t_125::operator w64_RemoteStoragePublishFileResult_t_125() const { w64_RemoteStoragePublishFileResult_t_125 ret; - RemoteStoragePublishFileResult_t_125_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_bUserNeedsToAcceptWorkshopLegalAgreement = this->m_bUserNeedsToAcceptWorkshopLegalAgreement; return ret; } #endif @@ -17881,52 +17555,45 @@ u64_RemoteStoragePublishFileResult_t_125::operator w64_RemoteStoragePublishFileR w32_RemoteStoragePublishFileResult_t_125::operator u32_RemoteStoragePublishFileResult_t_125() const { u32_RemoteStoragePublishFileResult_t_125 ret; - RemoteStoragePublishFileResult_t_125_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_bUserNeedsToAcceptWorkshopLegalAgreement = this->m_bUserNeedsToAcceptWorkshopLegalAgreement; return ret; } #endif - #ifdef __i386__ u32_RemoteStoragePublishFileResult_t_125::operator w32_RemoteStoragePublishFileResult_t_125() const { w32_RemoteStoragePublishFileResult_t_125 ret; - RemoteStoragePublishFileResult_t_125_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_bUserNeedsToAcceptWorkshopLegalAgreement = this->m_bUserNeedsToAcceptWorkshopLegalAgreement; return ret; } #endif -static void RemoteStoragePublishFileResult_t_123_u_from_w(void *dst, const void *src) +static void RemoteStoragePublishFileResult_t_125_utow(void *dst, const void *src) { - u_RemoteStoragePublishFileResult_t_123 *d = (u_RemoteStoragePublishFileResult_t_123 *)dst; - const w_RemoteStoragePublishFileResult_t_123 *s = (const w_RemoteStoragePublishFileResult_t_123 *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; + *(w_RemoteStoragePublishFileResult_t_125 *)dst = *(const u_RemoteStoragePublishFileResult_t_125 *)src; } + #ifdef __x86_64__ w64_RemoteStoragePublishFileResult_t_123::operator u64_RemoteStoragePublishFileResult_t_123() const { u64_RemoteStoragePublishFileResult_t_123 ret; - RemoteStoragePublishFileResult_t_123_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; return ret; } #endif - -static void RemoteStoragePublishFileResult_t_123_w_from_u(void *dst, const void *src) -{ - w_RemoteStoragePublishFileResult_t_123 *d = (w_RemoteStoragePublishFileResult_t_123 *)dst; - const u_RemoteStoragePublishFileResult_t_123 *s = (const u_RemoteStoragePublishFileResult_t_123 *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; -} #ifdef __x86_64__ u64_RemoteStoragePublishFileResult_t_123::operator w64_RemoteStoragePublishFileResult_t_123() const { w64_RemoteStoragePublishFileResult_t_123 ret; - RemoteStoragePublishFileResult_t_123_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; return ret; } #endif @@ -17935,56 +17602,52 @@ u64_RemoteStoragePublishFileResult_t_123::operator w64_RemoteStoragePublishFileR w32_RemoteStoragePublishFileResult_t_123::operator u32_RemoteStoragePublishFileResult_t_123() const { u32_RemoteStoragePublishFileResult_t_123 ret; - RemoteStoragePublishFileResult_t_123_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; return ret; } #endif - #ifdef __i386__ u32_RemoteStoragePublishFileResult_t_123::operator w32_RemoteStoragePublishFileResult_t_123() const { w32_RemoteStoragePublishFileResult_t_123 ret; - RemoteStoragePublishFileResult_t_123_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; return ret; } #endif -static void RemoteStoragePublishFileResult_t_116x_u_from_w(void *dst, const void *src) +static void RemoteStoragePublishFileResult_t_123_utow(void *dst, const void *src) { - u_RemoteStoragePublishFileResult_t_116x *d = (u_RemoteStoragePublishFileResult_t_116x *)dst; - const w_RemoteStoragePublishFileResult_t_116x *s = (const w_RemoteStoragePublishFileResult_t_116x *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; + *(w_RemoteStoragePublishFileResult_t_123 *)dst = *(const u_RemoteStoragePublishFileResult_t_123 *)src; } + #ifdef __i386__ w32_RemoteStoragePublishFileResult_t_116x::operator u32_RemoteStoragePublishFileResult_t_116x() const { u32_RemoteStoragePublishFileResult_t_116x ret; - RemoteStoragePublishFileResult_t_116x_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; return ret; } #endif - -static void RemoteStoragePublishFileResult_t_116x_w_from_u(void *dst, const void *src) -{ - w_RemoteStoragePublishFileResult_t_116x *d = (w_RemoteStoragePublishFileResult_t_116x *)dst; - const u_RemoteStoragePublishFileResult_t_116x *s = (const u_RemoteStoragePublishFileResult_t_116x *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; -} #ifdef __i386__ u32_RemoteStoragePublishFileResult_t_116x::operator w32_RemoteStoragePublishFileResult_t_116x() const { w32_RemoteStoragePublishFileResult_t_116x ret; - RemoteStoragePublishFileResult_t_116x_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; return ret; } #endif +static void RemoteStoragePublishFileResult_t_116x_utow(void *dst, const void *src) +{ + *(w_RemoteStoragePublishFileResult_t_116x *)dst = *(const u_RemoteStoragePublishFileResult_t_116x *)src; +} + 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 ); @@ -18017,39 +17680,24 @@ 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 ); -static void RemoteStoragePublishedFileUpdated_t_u_from_w(void *dst, const void *src) -{ - u_RemoteStoragePublishedFileUpdated_t *d = (u_RemoteStoragePublishedFileUpdated_t *)dst; - const w_RemoteStoragePublishedFileUpdated_t *s = (const w_RemoteStoragePublishedFileUpdated_t *)src; - - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_nAppID = s->m_nAppID; - d->m_ulUnused = s->m_ulUnused; -} #ifdef __x86_64__ w64_RemoteStoragePublishedFileUpdated_t::operator u64_RemoteStoragePublishedFileUpdated_t() const { u64_RemoteStoragePublishedFileUpdated_t ret; - RemoteStoragePublishedFileUpdated_t_u_from_w((void *)&ret, (const void *)this); + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nAppID = this->m_nAppID; + ret.m_ulUnused = this->m_ulUnused; return ret; } #endif - -static void RemoteStoragePublishedFileUpdated_t_w_from_u(void *dst, const void *src) -{ - w_RemoteStoragePublishedFileUpdated_t *d = (w_RemoteStoragePublishedFileUpdated_t *)dst; - const u_RemoteStoragePublishedFileUpdated_t *s = (const u_RemoteStoragePublishedFileUpdated_t *)src; - - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_nAppID = s->m_nAppID; - d->m_ulUnused = s->m_ulUnused; -} #ifdef __x86_64__ u64_RemoteStoragePublishedFileUpdated_t::operator w64_RemoteStoragePublishedFileUpdated_t() const { w64_RemoteStoragePublishedFileUpdated_t ret; - RemoteStoragePublishedFileUpdated_t_w_from_u((void *)&ret, (const void *)this); + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nAppID = this->m_nAppID; + ret.m_ulUnused = this->m_ulUnused; return ret; } #endif @@ -18058,21 +17706,29 @@ u64_RemoteStoragePublishedFileUpdated_t::operator w64_RemoteStoragePublishedFile w32_RemoteStoragePublishedFileUpdated_t::operator u32_RemoteStoragePublishedFileUpdated_t() const { u32_RemoteStoragePublishedFileUpdated_t ret; - RemoteStoragePublishedFileUpdated_t_u_from_w((void *)&ret, (const void *)this); + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nAppID = this->m_nAppID; + ret.m_ulUnused = this->m_ulUnused; return ret; } #endif - #ifdef __i386__ u32_RemoteStoragePublishedFileUpdated_t::operator w32_RemoteStoragePublishedFileUpdated_t() const { w32_RemoteStoragePublishedFileUpdated_t ret; - RemoteStoragePublishedFileUpdated_t_w_from_u((void *)&ret, (const void *)this); + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nAppID = this->m_nAppID; + ret.m_ulUnused = this->m_ulUnused; return ret; } #endif +static void RemoteStoragePublishedFileUpdated_t_utow(void *dst, const void *src) +{ + *(w_RemoteStoragePublishedFileUpdated_t *)dst = *(const u_RemoteStoragePublishedFileUpdated_t *)src; +} + 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 ); @@ -18137,39 +17793,24 @@ 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 ); -static void RemoteStorageSetUserPublishedFileActionResult_t_123_u_from_w(void *dst, const void *src) -{ - u_RemoteStorageSetUserPublishedFileActionResult_t_123 *d = (u_RemoteStorageSetUserPublishedFileActionResult_t_123 *)dst; - const w_RemoteStorageSetUserPublishedFileActionResult_t_123 *s = (const w_RemoteStorageSetUserPublishedFileActionResult_t_123 *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_eAction = s->m_eAction; -} #ifdef __x86_64__ w64_RemoteStorageSetUserPublishedFileActionResult_t_123::operator u64_RemoteStorageSetUserPublishedFileActionResult_t_123() const { u64_RemoteStorageSetUserPublishedFileActionResult_t_123 ret; - RemoteStorageSetUserPublishedFileActionResult_t_123_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_eAction = this->m_eAction; return ret; } #endif - -static void RemoteStorageSetUserPublishedFileActionResult_t_123_w_from_u(void *dst, const void *src) -{ - w_RemoteStorageSetUserPublishedFileActionResult_t_123 *d = (w_RemoteStorageSetUserPublishedFileActionResult_t_123 *)dst; - const u_RemoteStorageSetUserPublishedFileActionResult_t_123 *s = (const u_RemoteStorageSetUserPublishedFileActionResult_t_123 *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_eAction = s->m_eAction; -} #ifdef __x86_64__ u64_RemoteStorageSetUserPublishedFileActionResult_t_123::operator w64_RemoteStorageSetUserPublishedFileActionResult_t_123() const { w64_RemoteStorageSetUserPublishedFileActionResult_t_123 ret; - RemoteStorageSetUserPublishedFileActionResult_t_123_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_eAction = this->m_eAction; return ret; } #endif @@ -18178,58 +17819,56 @@ u64_RemoteStorageSetUserPublishedFileActionResult_t_123::operator w64_RemoteStor w32_RemoteStorageSetUserPublishedFileActionResult_t_123::operator u32_RemoteStorageSetUserPublishedFileActionResult_t_123() const { u32_RemoteStorageSetUserPublishedFileActionResult_t_123 ret; - RemoteStorageSetUserPublishedFileActionResult_t_123_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_eAction = this->m_eAction; return ret; } #endif - #ifdef __i386__ u32_RemoteStorageSetUserPublishedFileActionResult_t_123::operator w32_RemoteStorageSetUserPublishedFileActionResult_t_123() const { w32_RemoteStorageSetUserPublishedFileActionResult_t_123 ret; - RemoteStorageSetUserPublishedFileActionResult_t_123_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_eAction = this->m_eAction; return ret; } #endif -static void RemoteStorageSetUserPublishedFileActionResult_t_119_u_from_w(void *dst, const void *src) +static void RemoteStorageSetUserPublishedFileActionResult_t_123_utow(void *dst, const void *src) { - u_RemoteStorageSetUserPublishedFileActionResult_t_119 *d = (u_RemoteStorageSetUserPublishedFileActionResult_t_119 *)dst; - const w_RemoteStorageSetUserPublishedFileActionResult_t_119 *s = (const w_RemoteStorageSetUserPublishedFileActionResult_t_119 *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_eAction = s->m_eAction; + *(w_RemoteStorageSetUserPublishedFileActionResult_t_123 *)dst = *(const u_RemoteStorageSetUserPublishedFileActionResult_t_123 *)src; } + #ifdef __i386__ w32_RemoteStorageSetUserPublishedFileActionResult_t_119::operator u32_RemoteStorageSetUserPublishedFileActionResult_t_119() const { u32_RemoteStorageSetUserPublishedFileActionResult_t_119 ret; - RemoteStorageSetUserPublishedFileActionResult_t_119_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_eAction = this->m_eAction; return ret; } #endif - -static void RemoteStorageSetUserPublishedFileActionResult_t_119_w_from_u(void *dst, const void *src) -{ - w_RemoteStorageSetUserPublishedFileActionResult_t_119 *d = (w_RemoteStorageSetUserPublishedFileActionResult_t_119 *)dst; - const u_RemoteStorageSetUserPublishedFileActionResult_t_119 *s = (const u_RemoteStorageSetUserPublishedFileActionResult_t_119 *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_eAction = s->m_eAction; -} #ifdef __i386__ u32_RemoteStorageSetUserPublishedFileActionResult_t_119::operator w32_RemoteStorageSetUserPublishedFileActionResult_t_119() const { w32_RemoteStorageSetUserPublishedFileActionResult_t_119 ret; - RemoteStorageSetUserPublishedFileActionResult_t_119_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_eAction = this->m_eAction; return ret; } #endif +static void RemoteStorageSetUserPublishedFileActionResult_t_119_utow(void *dst, const void *src) +{ + *(w_RemoteStorageSetUserPublishedFileActionResult_t_119 *)dst = *(const u_RemoteStorageSetUserPublishedFileActionResult_t_119 *)src; +} + 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 ); @@ -18270,37 +17909,22 @@ 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 ); -static void RemoteStorageSubscribePublishedFileResult_t_123_u_from_w(void *dst, const void *src) -{ - u_RemoteStorageSubscribePublishedFileResult_t_123 *d = (u_RemoteStorageSubscribePublishedFileResult_t_123 *)dst; - const w_RemoteStorageSubscribePublishedFileResult_t_123 *s = (const w_RemoteStorageSubscribePublishedFileResult_t_123 *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; -} #ifdef __x86_64__ w64_RemoteStorageSubscribePublishedFileResult_t_123::operator u64_RemoteStorageSubscribePublishedFileResult_t_123() const { u64_RemoteStorageSubscribePublishedFileResult_t_123 ret; - RemoteStorageSubscribePublishedFileResult_t_123_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; return ret; } #endif - -static void RemoteStorageSubscribePublishedFileResult_t_123_w_from_u(void *dst, const void *src) -{ - w_RemoteStorageSubscribePublishedFileResult_t_123 *d = (w_RemoteStorageSubscribePublishedFileResult_t_123 *)dst; - const u_RemoteStorageSubscribePublishedFileResult_t_123 *s = (const u_RemoteStorageSubscribePublishedFileResult_t_123 *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; -} #ifdef __x86_64__ u64_RemoteStorageSubscribePublishedFileResult_t_123::operator w64_RemoteStorageSubscribePublishedFileResult_t_123() const { w64_RemoteStorageSubscribePublishedFileResult_t_123 ret; - RemoteStorageSubscribePublishedFileResult_t_123_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; return ret; } #endif @@ -18309,21 +17933,32 @@ u64_RemoteStorageSubscribePublishedFileResult_t_123::operator w64_RemoteStorageS w32_RemoteStorageSubscribePublishedFileResult_t_123::operator u32_RemoteStorageSubscribePublishedFileResult_t_123() const { u32_RemoteStorageSubscribePublishedFileResult_t_123 ret; - RemoteStorageSubscribePublishedFileResult_t_123_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; return ret; } #endif - #ifdef __i386__ u32_RemoteStorageSubscribePublishedFileResult_t_123::operator w32_RemoteStorageSubscribePublishedFileResult_t_123() const { w32_RemoteStorageSubscribePublishedFileResult_t_123 ret; - RemoteStorageSubscribePublishedFileResult_t_123_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; return ret; } #endif +static void RemoteStorageSubscribePublishedFileResult_t_123_utow(void *dst, const void *src) +{ + *(w_RemoteStorageSubscribePublishedFileResult_t_123 *)dst = *(const u_RemoteStorageSubscribePublishedFileResult_t_123 *)src; +} + +static void RemoteStorageSubscribePublishedFileResult_t_116x_utow(void *dst, const void *src) +{ + *(w_RemoteStorageSubscribePublishedFileResult_t_116x *)dst = *(const u_RemoteStorageSubscribePublishedFileResult_t_116x *)src; +} + 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 ); @@ -18364,37 +17999,22 @@ 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 ); -static void RemoteStorageUnsubscribePublishedFileResult_t_123_u_from_w(void *dst, const void *src) -{ - u_RemoteStorageUnsubscribePublishedFileResult_t_123 *d = (u_RemoteStorageUnsubscribePublishedFileResult_t_123 *)dst; - const w_RemoteStorageUnsubscribePublishedFileResult_t_123 *s = (const w_RemoteStorageUnsubscribePublishedFileResult_t_123 *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; -} #ifdef __x86_64__ w64_RemoteStorageUnsubscribePublishedFileResult_t_123::operator u64_RemoteStorageUnsubscribePublishedFileResult_t_123() const { u64_RemoteStorageUnsubscribePublishedFileResult_t_123 ret; - RemoteStorageUnsubscribePublishedFileResult_t_123_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; return ret; } #endif - -static void RemoteStorageUnsubscribePublishedFileResult_t_123_w_from_u(void *dst, const void *src) -{ - w_RemoteStorageUnsubscribePublishedFileResult_t_123 *d = (w_RemoteStorageUnsubscribePublishedFileResult_t_123 *)dst; - const u_RemoteStorageUnsubscribePublishedFileResult_t_123 *s = (const u_RemoteStorageUnsubscribePublishedFileResult_t_123 *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; -} #ifdef __x86_64__ u64_RemoteStorageUnsubscribePublishedFileResult_t_123::operator w64_RemoteStorageUnsubscribePublishedFileResult_t_123() const { w64_RemoteStorageUnsubscribePublishedFileResult_t_123 ret; - RemoteStorageUnsubscribePublishedFileResult_t_123_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; return ret; } #endif @@ -18403,21 +18023,32 @@ u64_RemoteStorageUnsubscribePublishedFileResult_t_123::operator w64_RemoteStorag w32_RemoteStorageUnsubscribePublishedFileResult_t_123::operator u32_RemoteStorageUnsubscribePublishedFileResult_t_123() const { u32_RemoteStorageUnsubscribePublishedFileResult_t_123 ret; - RemoteStorageUnsubscribePublishedFileResult_t_123_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; return ret; } #endif - #ifdef __i386__ u32_RemoteStorageUnsubscribePublishedFileResult_t_123::operator w32_RemoteStorageUnsubscribePublishedFileResult_t_123() const { w32_RemoteStorageUnsubscribePublishedFileResult_t_123 ret; - RemoteStorageUnsubscribePublishedFileResult_t_123_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; return ret; } #endif +static void RemoteStorageUnsubscribePublishedFileResult_t_123_utow(void *dst, const void *src) +{ + *(w_RemoteStorageUnsubscribePublishedFileResult_t_123 *)dst = *(const u_RemoteStorageUnsubscribePublishedFileResult_t_123 *)src; +} + +static void RemoteStorageUnsubscribePublishedFileResult_t_116x_utow(void *dst, const void *src) +{ + *(w_RemoteStorageUnsubscribePublishedFileResult_t_116x *)dst = *(const u_RemoteStorageUnsubscribePublishedFileResult_t_116x *)src; +} + 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 ); @@ -18530,6 +18161,11 @@ C_ASSERT( sizeof(u32_RemoteStorageUpdatePublishedFileRequest_t().m_bUpdateVisibi C_ASSERT( offsetof(u32_RemoteStorageUpdatePublishedFileRequest_t, m_bUpdateTags) == 37 ); C_ASSERT( sizeof(u32_RemoteStorageUpdatePublishedFileRequest_t().m_bUpdateTags) >= 1 ); +static void RemoteStorageUpdatePublishedFileRequest_t_utow(void *dst, const void *src) +{ + *(w_RemoteStorageUpdatePublishedFileRequest_t *)dst = *(const u_RemoteStorageUpdatePublishedFileRequest_t *)src; +} + C_ASSERT( sizeof(w64_RemoteStorageUpdatePublishedFileResult_t_125) >= 24 ); C_ASSERT( offsetof(w64_RemoteStorageUpdatePublishedFileResult_t_125, m_eResult) == 0 ); C_ASSERT( sizeof(w64_RemoteStorageUpdatePublishedFileResult_t_125().m_eResult) >= 4 ); @@ -18610,39 +18246,24 @@ 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 ); -static void RemoteStorageUpdatePublishedFileResult_t_125_u_from_w(void *dst, const void *src) -{ - u_RemoteStorageUpdatePublishedFileResult_t_125 *d = (u_RemoteStorageUpdatePublishedFileResult_t_125 *)dst; - const w_RemoteStorageUpdatePublishedFileResult_t_125 *s = (const w_RemoteStorageUpdatePublishedFileResult_t_125 *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_bUserNeedsToAcceptWorkshopLegalAgreement = s->m_bUserNeedsToAcceptWorkshopLegalAgreement; -} #ifdef __x86_64__ w64_RemoteStorageUpdatePublishedFileResult_t_125::operator u64_RemoteStorageUpdatePublishedFileResult_t_125() const { u64_RemoteStorageUpdatePublishedFileResult_t_125 ret; - RemoteStorageUpdatePublishedFileResult_t_125_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_bUserNeedsToAcceptWorkshopLegalAgreement = this->m_bUserNeedsToAcceptWorkshopLegalAgreement; return ret; } #endif - -static void RemoteStorageUpdatePublishedFileResult_t_125_w_from_u(void *dst, const void *src) -{ - w_RemoteStorageUpdatePublishedFileResult_t_125 *d = (w_RemoteStorageUpdatePublishedFileResult_t_125 *)dst; - const u_RemoteStorageUpdatePublishedFileResult_t_125 *s = (const u_RemoteStorageUpdatePublishedFileResult_t_125 *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_bUserNeedsToAcceptWorkshopLegalAgreement = s->m_bUserNeedsToAcceptWorkshopLegalAgreement; -} #ifdef __x86_64__ u64_RemoteStorageUpdatePublishedFileResult_t_125::operator w64_RemoteStorageUpdatePublishedFileResult_t_125() const { w64_RemoteStorageUpdatePublishedFileResult_t_125 ret; - RemoteStorageUpdatePublishedFileResult_t_125_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_bUserNeedsToAcceptWorkshopLegalAgreement = this->m_bUserNeedsToAcceptWorkshopLegalAgreement; return ret; } #endif @@ -18651,52 +18272,45 @@ u64_RemoteStorageUpdatePublishedFileResult_t_125::operator w64_RemoteStorageUpda w32_RemoteStorageUpdatePublishedFileResult_t_125::operator u32_RemoteStorageUpdatePublishedFileResult_t_125() const { u32_RemoteStorageUpdatePublishedFileResult_t_125 ret; - RemoteStorageUpdatePublishedFileResult_t_125_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_bUserNeedsToAcceptWorkshopLegalAgreement = this->m_bUserNeedsToAcceptWorkshopLegalAgreement; return ret; } #endif - #ifdef __i386__ u32_RemoteStorageUpdatePublishedFileResult_t_125::operator w32_RemoteStorageUpdatePublishedFileResult_t_125() const { w32_RemoteStorageUpdatePublishedFileResult_t_125 ret; - RemoteStorageUpdatePublishedFileResult_t_125_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_bUserNeedsToAcceptWorkshopLegalAgreement = this->m_bUserNeedsToAcceptWorkshopLegalAgreement; return ret; } #endif -static void RemoteStorageUpdatePublishedFileResult_t_123_u_from_w(void *dst, const void *src) +static void RemoteStorageUpdatePublishedFileResult_t_125_utow(void *dst, const void *src) { - u_RemoteStorageUpdatePublishedFileResult_t_123 *d = (u_RemoteStorageUpdatePublishedFileResult_t_123 *)dst; - const w_RemoteStorageUpdatePublishedFileResult_t_123 *s = (const w_RemoteStorageUpdatePublishedFileResult_t_123 *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; + *(w_RemoteStorageUpdatePublishedFileResult_t_125 *)dst = *(const u_RemoteStorageUpdatePublishedFileResult_t_125 *)src; } + #ifdef __x86_64__ w64_RemoteStorageUpdatePublishedFileResult_t_123::operator u64_RemoteStorageUpdatePublishedFileResult_t_123() const { u64_RemoteStorageUpdatePublishedFileResult_t_123 ret; - RemoteStorageUpdatePublishedFileResult_t_123_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; return ret; } #endif - -static void RemoteStorageUpdatePublishedFileResult_t_123_w_from_u(void *dst, const void *src) -{ - w_RemoteStorageUpdatePublishedFileResult_t_123 *d = (w_RemoteStorageUpdatePublishedFileResult_t_123 *)dst; - const u_RemoteStorageUpdatePublishedFileResult_t_123 *s = (const u_RemoteStorageUpdatePublishedFileResult_t_123 *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; -} #ifdef __x86_64__ u64_RemoteStorageUpdatePublishedFileResult_t_123::operator w64_RemoteStorageUpdatePublishedFileResult_t_123() const { w64_RemoteStorageUpdatePublishedFileResult_t_123 ret; - RemoteStorageUpdatePublishedFileResult_t_123_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; return ret; } #endif @@ -18705,56 +18319,52 @@ u64_RemoteStorageUpdatePublishedFileResult_t_123::operator w64_RemoteStorageUpda w32_RemoteStorageUpdatePublishedFileResult_t_123::operator u32_RemoteStorageUpdatePublishedFileResult_t_123() const { u32_RemoteStorageUpdatePublishedFileResult_t_123 ret; - RemoteStorageUpdatePublishedFileResult_t_123_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; return ret; } #endif - #ifdef __i386__ u32_RemoteStorageUpdatePublishedFileResult_t_123::operator w32_RemoteStorageUpdatePublishedFileResult_t_123() const { w32_RemoteStorageUpdatePublishedFileResult_t_123 ret; - RemoteStorageUpdatePublishedFileResult_t_123_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; return ret; } #endif -static void RemoteStorageUpdatePublishedFileResult_t_116x_u_from_w(void *dst, const void *src) +static void RemoteStorageUpdatePublishedFileResult_t_123_utow(void *dst, const void *src) { - u_RemoteStorageUpdatePublishedFileResult_t_116x *d = (u_RemoteStorageUpdatePublishedFileResult_t_116x *)dst; - const w_RemoteStorageUpdatePublishedFileResult_t_116x *s = (const w_RemoteStorageUpdatePublishedFileResult_t_116x *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; + *(w_RemoteStorageUpdatePublishedFileResult_t_123 *)dst = *(const u_RemoteStorageUpdatePublishedFileResult_t_123 *)src; } + #ifdef __i386__ w32_RemoteStorageUpdatePublishedFileResult_t_116x::operator u32_RemoteStorageUpdatePublishedFileResult_t_116x() const { u32_RemoteStorageUpdatePublishedFileResult_t_116x ret; - RemoteStorageUpdatePublishedFileResult_t_116x_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; return ret; } #endif - -static void RemoteStorageUpdatePublishedFileResult_t_116x_w_from_u(void *dst, const void *src) -{ - w_RemoteStorageUpdatePublishedFileResult_t_116x *d = (w_RemoteStorageUpdatePublishedFileResult_t_116x *)dst; - const u_RemoteStorageUpdatePublishedFileResult_t_116x *s = (const u_RemoteStorageUpdatePublishedFileResult_t_116x *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; -} #ifdef __i386__ u32_RemoteStorageUpdatePublishedFileResult_t_116x::operator w32_RemoteStorageUpdatePublishedFileResult_t_116x() const { w32_RemoteStorageUpdatePublishedFileResult_t_116x ret; - RemoteStorageUpdatePublishedFileResult_t_116x_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; return ret; } #endif +static void RemoteStorageUpdatePublishedFileResult_t_116x_utow(void *dst, const void *src) +{ + *(w_RemoteStorageUpdatePublishedFileResult_t_116x *)dst = *(const u_RemoteStorageUpdatePublishedFileResult_t_116x *)src; +} + 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 ); @@ -18803,37 +18413,22 @@ 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 ); -static void RemoteStorageUpdateUserPublishedItemVoteResult_t_123_u_from_w(void *dst, const void *src) -{ - u_RemoteStorageUpdateUserPublishedItemVoteResult_t_123 *d = (u_RemoteStorageUpdateUserPublishedItemVoteResult_t_123 *)dst; - const w_RemoteStorageUpdateUserPublishedItemVoteResult_t_123 *s = (const w_RemoteStorageUpdateUserPublishedItemVoteResult_t_123 *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; -} #ifdef __x86_64__ w64_RemoteStorageUpdateUserPublishedItemVoteResult_t_123::operator u64_RemoteStorageUpdateUserPublishedItemVoteResult_t_123() const { u64_RemoteStorageUpdateUserPublishedItemVoteResult_t_123 ret; - RemoteStorageUpdateUserPublishedItemVoteResult_t_123_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; return ret; } #endif - -static void RemoteStorageUpdateUserPublishedItemVoteResult_t_123_w_from_u(void *dst, const void *src) -{ - w_RemoteStorageUpdateUserPublishedItemVoteResult_t_123 *d = (w_RemoteStorageUpdateUserPublishedItemVoteResult_t_123 *)dst; - const u_RemoteStorageUpdateUserPublishedItemVoteResult_t_123 *s = (const u_RemoteStorageUpdateUserPublishedItemVoteResult_t_123 *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; -} #ifdef __x86_64__ u64_RemoteStorageUpdateUserPublishedItemVoteResult_t_123::operator w64_RemoteStorageUpdateUserPublishedItemVoteResult_t_123() const { w64_RemoteStorageUpdateUserPublishedItemVoteResult_t_123 ret; - RemoteStorageUpdateUserPublishedItemVoteResult_t_123_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; return ret; } #endif @@ -18842,56 +18437,52 @@ u64_RemoteStorageUpdateUserPublishedItemVoteResult_t_123::operator w64_RemoteSto w32_RemoteStorageUpdateUserPublishedItemVoteResult_t_123::operator u32_RemoteStorageUpdateUserPublishedItemVoteResult_t_123() const { u32_RemoteStorageUpdateUserPublishedItemVoteResult_t_123 ret; - RemoteStorageUpdateUserPublishedItemVoteResult_t_123_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; return ret; } #endif - #ifdef __i386__ u32_RemoteStorageUpdateUserPublishedItemVoteResult_t_123::operator w32_RemoteStorageUpdateUserPublishedItemVoteResult_t_123() const { w32_RemoteStorageUpdateUserPublishedItemVoteResult_t_123 ret; - RemoteStorageUpdateUserPublishedItemVoteResult_t_123_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; return ret; } #endif -static void RemoteStorageUpdateUserPublishedItemVoteResult_t_119_u_from_w(void *dst, const void *src) +static void RemoteStorageUpdateUserPublishedItemVoteResult_t_123_utow(void *dst, const void *src) { - u_RemoteStorageUpdateUserPublishedItemVoteResult_t_119 *d = (u_RemoteStorageUpdateUserPublishedItemVoteResult_t_119 *)dst; - const w_RemoteStorageUpdateUserPublishedItemVoteResult_t_119 *s = (const w_RemoteStorageUpdateUserPublishedItemVoteResult_t_119 *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; + *(w_RemoteStorageUpdateUserPublishedItemVoteResult_t_123 *)dst = *(const u_RemoteStorageUpdateUserPublishedItemVoteResult_t_123 *)src; } + #ifdef __i386__ w32_RemoteStorageUpdateUserPublishedItemVoteResult_t_119::operator u32_RemoteStorageUpdateUserPublishedItemVoteResult_t_119() const { u32_RemoteStorageUpdateUserPublishedItemVoteResult_t_119 ret; - RemoteStorageUpdateUserPublishedItemVoteResult_t_119_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; return ret; } #endif - -static void RemoteStorageUpdateUserPublishedItemVoteResult_t_119_w_from_u(void *dst, const void *src) -{ - w_RemoteStorageUpdateUserPublishedItemVoteResult_t_119 *d = (w_RemoteStorageUpdateUserPublishedItemVoteResult_t_119 *)dst; - const u_RemoteStorageUpdateUserPublishedItemVoteResult_t_119 *s = (const u_RemoteStorageUpdateUserPublishedItemVoteResult_t_119 *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; -} #ifdef __i386__ u32_RemoteStorageUpdateUserPublishedItemVoteResult_t_119::operator w32_RemoteStorageUpdateUserPublishedItemVoteResult_t_119() const { w32_RemoteStorageUpdateUserPublishedItemVoteResult_t_119 ret; - RemoteStorageUpdateUserPublishedItemVoteResult_t_119_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; return ret; } #endif +static void RemoteStorageUpdateUserPublishedItemVoteResult_t_119_utow(void *dst, const void *src) +{ + *(w_RemoteStorageUpdateUserPublishedItemVoteResult_t_119 *)dst = *(const u_RemoteStorageUpdateUserPublishedItemVoteResult_t_119 *)src; +} + 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 ); @@ -18956,39 +18547,24 @@ 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 ); -static void RemoteStorageUserVoteDetails_t_123_u_from_w(void *dst, const void *src) -{ - u_RemoteStorageUserVoteDetails_t_123 *d = (u_RemoteStorageUserVoteDetails_t_123 *)dst; - const w_RemoteStorageUserVoteDetails_t_123 *s = (const w_RemoteStorageUserVoteDetails_t_123 *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_eVote = s->m_eVote; -} #ifdef __x86_64__ w64_RemoteStorageUserVoteDetails_t_123::operator u64_RemoteStorageUserVoteDetails_t_123() const { u64_RemoteStorageUserVoteDetails_t_123 ret; - RemoteStorageUserVoteDetails_t_123_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_eVote = this->m_eVote; return ret; } #endif - -static void RemoteStorageUserVoteDetails_t_123_w_from_u(void *dst, const void *src) -{ - w_RemoteStorageUserVoteDetails_t_123 *d = (w_RemoteStorageUserVoteDetails_t_123 *)dst; - const u_RemoteStorageUserVoteDetails_t_123 *s = (const u_RemoteStorageUserVoteDetails_t_123 *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_eVote = s->m_eVote; -} #ifdef __x86_64__ u64_RemoteStorageUserVoteDetails_t_123::operator w64_RemoteStorageUserVoteDetails_t_123() const { w64_RemoteStorageUserVoteDetails_t_123 ret; - RemoteStorageUserVoteDetails_t_123_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_eVote = this->m_eVote; return ret; } #endif @@ -18997,58 +18573,56 @@ u64_RemoteStorageUserVoteDetails_t_123::operator w64_RemoteStorageUserVoteDetail w32_RemoteStorageUserVoteDetails_t_123::operator u32_RemoteStorageUserVoteDetails_t_123() const { u32_RemoteStorageUserVoteDetails_t_123 ret; - RemoteStorageUserVoteDetails_t_123_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_eVote = this->m_eVote; return ret; } #endif - #ifdef __i386__ u32_RemoteStorageUserVoteDetails_t_123::operator w32_RemoteStorageUserVoteDetails_t_123() const { w32_RemoteStorageUserVoteDetails_t_123 ret; - RemoteStorageUserVoteDetails_t_123_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_eVote = this->m_eVote; return ret; } #endif -static void RemoteStorageUserVoteDetails_t_119_u_from_w(void *dst, const void *src) +static void RemoteStorageUserVoteDetails_t_123_utow(void *dst, const void *src) { - u_RemoteStorageUserVoteDetails_t_119 *d = (u_RemoteStorageUserVoteDetails_t_119 *)dst; - const w_RemoteStorageUserVoteDetails_t_119 *s = (const w_RemoteStorageUserVoteDetails_t_119 *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_eVote = s->m_eVote; + *(w_RemoteStorageUserVoteDetails_t_123 *)dst = *(const u_RemoteStorageUserVoteDetails_t_123 *)src; } + #ifdef __i386__ w32_RemoteStorageUserVoteDetails_t_119::operator u32_RemoteStorageUserVoteDetails_t_119() const { u32_RemoteStorageUserVoteDetails_t_119 ret; - RemoteStorageUserVoteDetails_t_119_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_eVote = this->m_eVote; return ret; } #endif - -static void RemoteStorageUserVoteDetails_t_119_w_from_u(void *dst, const void *src) -{ - w_RemoteStorageUserVoteDetails_t_119 *d = (w_RemoteStorageUserVoteDetails_t_119 *)dst; - const u_RemoteStorageUserVoteDetails_t_119 *s = (const u_RemoteStorageUserVoteDetails_t_119 *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_eVote = s->m_eVote; -} #ifdef __i386__ u32_RemoteStorageUserVoteDetails_t_119::operator w32_RemoteStorageUserVoteDetails_t_119() const { w32_RemoteStorageUserVoteDetails_t_119 ret; - RemoteStorageUserVoteDetails_t_119_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_eVote = this->m_eVote; return ret; } #endif +static void RemoteStorageUserVoteDetails_t_119_utow(void *dst, const void *src) +{ + *(w_RemoteStorageUserVoteDetails_t_119 *)dst = *(const u_RemoteStorageUserVoteDetails_t_119 *)src; +} + 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 ); @@ -19081,39 +18655,24 @@ 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 ); -static void RemoveAppDependencyResult_t_u_from_w(void *dst, const void *src) -{ - u_RemoveAppDependencyResult_t *d = (u_RemoveAppDependencyResult_t *)dst; - const w_RemoveAppDependencyResult_t *s = (const w_RemoveAppDependencyResult_t *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_nAppID = s->m_nAppID; -} #ifdef __x86_64__ w64_RemoveAppDependencyResult_t::operator u64_RemoveAppDependencyResult_t() const { u64_RemoveAppDependencyResult_t ret; - RemoveAppDependencyResult_t_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nAppID = this->m_nAppID; return ret; } #endif - -static void RemoveAppDependencyResult_t_w_from_u(void *dst, const void *src) -{ - w_RemoveAppDependencyResult_t *d = (w_RemoveAppDependencyResult_t *)dst; - const u_RemoveAppDependencyResult_t *s = (const u_RemoveAppDependencyResult_t *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_nAppID = s->m_nAppID; -} #ifdef __x86_64__ u64_RemoveAppDependencyResult_t::operator w64_RemoveAppDependencyResult_t() const { w64_RemoveAppDependencyResult_t ret; - RemoveAppDependencyResult_t_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nAppID = this->m_nAppID; return ret; } #endif @@ -19122,21 +18681,29 @@ u64_RemoveAppDependencyResult_t::operator w64_RemoveAppDependencyResult_t() cons w32_RemoveAppDependencyResult_t::operator u32_RemoveAppDependencyResult_t() const { u32_RemoveAppDependencyResult_t ret; - RemoveAppDependencyResult_t_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nAppID = this->m_nAppID; return ret; } #endif - #ifdef __i386__ u32_RemoveAppDependencyResult_t::operator w32_RemoveAppDependencyResult_t() const { w32_RemoveAppDependencyResult_t ret; - RemoveAppDependencyResult_t_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nAppID = this->m_nAppID; return ret; } #endif +static void RemoveAppDependencyResult_t_utow(void *dst, const void *src) +{ + *(w_RemoveAppDependencyResult_t *)dst = *(const u_RemoveAppDependencyResult_t *)src; +} + 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 ); @@ -19169,39 +18736,24 @@ 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 ); -static void RemoveUGCDependencyResult_t_u_from_w(void *dst, const void *src) -{ - u_RemoveUGCDependencyResult_t *d = (u_RemoveUGCDependencyResult_t *)dst; - const w_RemoveUGCDependencyResult_t *s = (const w_RemoveUGCDependencyResult_t *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_nChildPublishedFileId = s->m_nChildPublishedFileId; -} #ifdef __x86_64__ w64_RemoveUGCDependencyResult_t::operator u64_RemoveUGCDependencyResult_t() const { u64_RemoveUGCDependencyResult_t ret; - RemoveUGCDependencyResult_t_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nChildPublishedFileId = this->m_nChildPublishedFileId; return ret; } #endif - -static void RemoveUGCDependencyResult_t_w_from_u(void *dst, const void *src) -{ - w_RemoveUGCDependencyResult_t *d = (w_RemoveUGCDependencyResult_t *)dst; - const u_RemoveUGCDependencyResult_t *s = (const u_RemoveUGCDependencyResult_t *)src; - - d->m_eResult = s->m_eResult; - d->m_nPublishedFileId = s->m_nPublishedFileId; - d->m_nChildPublishedFileId = s->m_nChildPublishedFileId; -} #ifdef __x86_64__ u64_RemoveUGCDependencyResult_t::operator w64_RemoveUGCDependencyResult_t() const { w64_RemoveUGCDependencyResult_t ret; - RemoveUGCDependencyResult_t_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nChildPublishedFileId = this->m_nChildPublishedFileId; return ret; } #endif @@ -19210,21 +18762,29 @@ u64_RemoveUGCDependencyResult_t::operator w64_RemoveUGCDependencyResult_t() cons w32_RemoveUGCDependencyResult_t::operator u32_RemoveUGCDependencyResult_t() const { u32_RemoveUGCDependencyResult_t ret; - RemoveUGCDependencyResult_t_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nChildPublishedFileId = this->m_nChildPublishedFileId; return ret; } #endif - #ifdef __i386__ u32_RemoveUGCDependencyResult_t::operator w32_RemoveUGCDependencyResult_t() const { w32_RemoveUGCDependencyResult_t ret; - RemoveUGCDependencyResult_t_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_nPublishedFileId = this->m_nPublishedFileId; + ret.m_nChildPublishedFileId = this->m_nChildPublishedFileId; return ret; } #endif +static void RemoveUGCDependencyResult_t_utow(void *dst, const void *src) +{ + *(w_RemoveUGCDependencyResult_t *)dst = *(const u_RemoveUGCDependencyResult_t *)src; +} + 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 ); @@ -19257,39 +18817,24 @@ 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 ); -static void RequestPlayersForGameFinalResultCallback_t_u_from_w(void *dst, const void *src) -{ - u_RequestPlayersForGameFinalResultCallback_t *d = (u_RequestPlayersForGameFinalResultCallback_t *)dst; - const w_RequestPlayersForGameFinalResultCallback_t *s = (const w_RequestPlayersForGameFinalResultCallback_t *)src; - - d->m_eResult = s->m_eResult; - d->m_ullSearchID = s->m_ullSearchID; - d->m_ullUniqueGameID = s->m_ullUniqueGameID; -} #ifdef __x86_64__ w64_RequestPlayersForGameFinalResultCallback_t::operator u64_RequestPlayersForGameFinalResultCallback_t() const { u64_RequestPlayersForGameFinalResultCallback_t ret; - RequestPlayersForGameFinalResultCallback_t_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_ullSearchID = this->m_ullSearchID; + ret.m_ullUniqueGameID = this->m_ullUniqueGameID; return ret; } #endif - -static void RequestPlayersForGameFinalResultCallback_t_w_from_u(void *dst, const void *src) -{ - w_RequestPlayersForGameFinalResultCallback_t *d = (w_RequestPlayersForGameFinalResultCallback_t *)dst; - const u_RequestPlayersForGameFinalResultCallback_t *s = (const u_RequestPlayersForGameFinalResultCallback_t *)src; - - d->m_eResult = s->m_eResult; - d->m_ullSearchID = s->m_ullSearchID; - d->m_ullUniqueGameID = s->m_ullUniqueGameID; -} #ifdef __x86_64__ u64_RequestPlayersForGameFinalResultCallback_t::operator w64_RequestPlayersForGameFinalResultCallback_t() const { w64_RequestPlayersForGameFinalResultCallback_t ret; - RequestPlayersForGameFinalResultCallback_t_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_ullSearchID = this->m_ullSearchID; + ret.m_ullUniqueGameID = this->m_ullUniqueGameID; return ret; } #endif @@ -19298,21 +18843,29 @@ u64_RequestPlayersForGameFinalResultCallback_t::operator w64_RequestPlayersForGa w32_RequestPlayersForGameFinalResultCallback_t::operator u32_RequestPlayersForGameFinalResultCallback_t() const { u32_RequestPlayersForGameFinalResultCallback_t ret; - RequestPlayersForGameFinalResultCallback_t_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_ullSearchID = this->m_ullSearchID; + ret.m_ullUniqueGameID = this->m_ullUniqueGameID; return ret; } #endif - #ifdef __i386__ u32_RequestPlayersForGameFinalResultCallback_t::operator w32_RequestPlayersForGameFinalResultCallback_t() const { w32_RequestPlayersForGameFinalResultCallback_t ret; - RequestPlayersForGameFinalResultCallback_t_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_ullSearchID = this->m_ullSearchID; + ret.m_ullUniqueGameID = this->m_ullUniqueGameID; return ret; } #endif +static void RequestPlayersForGameFinalResultCallback_t_utow(void *dst, const void *src) +{ + *(w_RequestPlayersForGameFinalResultCallback_t *)dst = *(const u_RequestPlayersForGameFinalResultCallback_t *)src; +} + 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 ); @@ -19337,37 +18890,22 @@ 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 ); -static void RequestPlayersForGameProgressCallback_t_u_from_w(void *dst, const void *src) -{ - u_RequestPlayersForGameProgressCallback_t *d = (u_RequestPlayersForGameProgressCallback_t *)dst; - const w_RequestPlayersForGameProgressCallback_t *s = (const w_RequestPlayersForGameProgressCallback_t *)src; - - d->m_eResult = s->m_eResult; - d->m_ullSearchID = s->m_ullSearchID; -} #ifdef __x86_64__ w64_RequestPlayersForGameProgressCallback_t::operator u64_RequestPlayersForGameProgressCallback_t() const { u64_RequestPlayersForGameProgressCallback_t ret; - RequestPlayersForGameProgressCallback_t_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_ullSearchID = this->m_ullSearchID; return ret; } #endif - -static void RequestPlayersForGameProgressCallback_t_w_from_u(void *dst, const void *src) -{ - w_RequestPlayersForGameProgressCallback_t *d = (w_RequestPlayersForGameProgressCallback_t *)dst; - const u_RequestPlayersForGameProgressCallback_t *s = (const u_RequestPlayersForGameProgressCallback_t *)src; - - d->m_eResult = s->m_eResult; - d->m_ullSearchID = s->m_ullSearchID; -} #ifdef __x86_64__ u64_RequestPlayersForGameProgressCallback_t::operator w64_RequestPlayersForGameProgressCallback_t() const { w64_RequestPlayersForGameProgressCallback_t ret; - RequestPlayersForGameProgressCallback_t_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_ullSearchID = this->m_ullSearchID; return ret; } #endif @@ -19376,21 +18914,27 @@ u64_RequestPlayersForGameProgressCallback_t::operator w64_RequestPlayersForGameP w32_RequestPlayersForGameProgressCallback_t::operator u32_RequestPlayersForGameProgressCallback_t() const { u32_RequestPlayersForGameProgressCallback_t ret; - RequestPlayersForGameProgressCallback_t_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_ullSearchID = this->m_ullSearchID; return ret; } #endif - #ifdef __i386__ u32_RequestPlayersForGameProgressCallback_t::operator w32_RequestPlayersForGameProgressCallback_t() const { w32_RequestPlayersForGameProgressCallback_t ret; - RequestPlayersForGameProgressCallback_t_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.m_ullSearchID = this->m_ullSearchID; return ret; } #endif +static void RequestPlayersForGameProgressCallback_t_utow(void *dst, const void *src) +{ + *(w_RequestPlayersForGameProgressCallback_t *)dst = *(const u_RequestPlayersForGameProgressCallback_t *)src; +} + 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 ); @@ -19479,53 +19023,38 @@ 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 ); -static void RequestPlayersForGameResultCallback_t_u_from_w(void *dst, const void *src) -{ - u_RequestPlayersForGameResultCallback_t *d = (u_RequestPlayersForGameResultCallback_t *)dst; - const w_RequestPlayersForGameResultCallback_t *s = (const w_RequestPlayersForGameResultCallback_t *)src; - - d->m_eResult = s->m_eResult; - d->m_ullSearchID = s->m_ullSearchID; - d->m_SteamIDPlayerFound = s->m_SteamIDPlayerFound; - d->m_SteamIDLobby = s->m_SteamIDLobby; - d->m_ePlayerAcceptState = s->m_ePlayerAcceptState; - d->m_nPlayerIndex = s->m_nPlayerIndex; - d->m_nTotalPlayersFound = s->m_nTotalPlayersFound; - d->m_nTotalPlayersAcceptedGame = s->m_nTotalPlayersAcceptedGame; - d->m_nSuggestedTeamIndex = s->m_nSuggestedTeamIndex; - d->m_ullUniqueGameID = s->m_ullUniqueGameID; -} #ifdef __x86_64__ w64_RequestPlayersForGameResultCallback_t::operator u64_RequestPlayersForGameResultCallback_t() const { u64_RequestPlayersForGameResultCallback_t ret; - RequestPlayersForGameResultCallback_t_u_from_w((void *)&ret, (const void *)this); + 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 - -static void RequestPlayersForGameResultCallback_t_w_from_u(void *dst, const void *src) -{ - w_RequestPlayersForGameResultCallback_t *d = (w_RequestPlayersForGameResultCallback_t *)dst; - const u_RequestPlayersForGameResultCallback_t *s = (const u_RequestPlayersForGameResultCallback_t *)src; - - d->m_eResult = s->m_eResult; - d->m_ullSearchID = s->m_ullSearchID; - d->m_SteamIDPlayerFound = s->m_SteamIDPlayerFound; - d->m_SteamIDLobby = s->m_SteamIDLobby; - d->m_ePlayerAcceptState = s->m_ePlayerAcceptState; - d->m_nPlayerIndex = s->m_nPlayerIndex; - d->m_nTotalPlayersFound = s->m_nTotalPlayersFound; - d->m_nTotalPlayersAcceptedGame = s->m_nTotalPlayersAcceptedGame; - d->m_nSuggestedTeamIndex = s->m_nSuggestedTeamIndex; - d->m_ullUniqueGameID = s->m_ullUniqueGameID; -} #ifdef __x86_64__ u64_RequestPlayersForGameResultCallback_t::operator w64_RequestPlayersForGameResultCallback_t() const { w64_RequestPlayersForGameResultCallback_t ret; - RequestPlayersForGameResultCallback_t_w_from_u((void *)&ret, (const void *)this); + 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 @@ -19534,21 +19063,43 @@ u64_RequestPlayersForGameResultCallback_t::operator w64_RequestPlayersForGameRes w32_RequestPlayersForGameResultCallback_t::operator u32_RequestPlayersForGameResultCallback_t() const { u32_RequestPlayersForGameResultCallback_t ret; - RequestPlayersForGameResultCallback_t_u_from_w((void *)&ret, (const void *)this); + 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__ u32_RequestPlayersForGameResultCallback_t::operator w32_RequestPlayersForGameResultCallback_t() const { w32_RequestPlayersForGameResultCallback_t ret; - RequestPlayersForGameResultCallback_t_w_from_u((void *)&ret, (const void *)this); + 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 +static void RequestPlayersForGameResultCallback_t_utow(void *dst, const void *src) +{ + *(w_RequestPlayersForGameResultCallback_t *)dst = *(const u_RequestPlayersForGameResultCallback_t *)src; +} + 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 ); @@ -19613,47 +19164,32 @@ 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 ); -static void SteamInputConfigurationLoaded_t_u_from_w(void *dst, const void *src) -{ - u_SteamInputConfigurationLoaded_t *d = (u_SteamInputConfigurationLoaded_t *)dst; - const w_SteamInputConfigurationLoaded_t *s = (const w_SteamInputConfigurationLoaded_t *)src; - - d->m_unAppID = s->m_unAppID; - d->m_ulDeviceHandle = s->m_ulDeviceHandle; - d->m_ulMappingCreator = s->m_ulMappingCreator; - d->m_unMajorRevision = s->m_unMajorRevision; - d->m_unMinorRevision = s->m_unMinorRevision; - d->m_bUsesSteamInputAPI = s->m_bUsesSteamInputAPI; - d->m_bUsesGamepadAPI = s->m_bUsesGamepadAPI; -} #ifdef __x86_64__ w64_SteamInputConfigurationLoaded_t::operator u64_SteamInputConfigurationLoaded_t() const { u64_SteamInputConfigurationLoaded_t ret; - SteamInputConfigurationLoaded_t_u_from_w((void *)&ret, (const void *)this); + 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 - -static void SteamInputConfigurationLoaded_t_w_from_u(void *dst, const void *src) -{ - w_SteamInputConfigurationLoaded_t *d = (w_SteamInputConfigurationLoaded_t *)dst; - const u_SteamInputConfigurationLoaded_t *s = (const u_SteamInputConfigurationLoaded_t *)src; - - d->m_unAppID = s->m_unAppID; - d->m_ulDeviceHandle = s->m_ulDeviceHandle; - d->m_ulMappingCreator = s->m_ulMappingCreator; - d->m_unMajorRevision = s->m_unMajorRevision; - d->m_unMinorRevision = s->m_unMinorRevision; - d->m_bUsesSteamInputAPI = s->m_bUsesSteamInputAPI; - d->m_bUsesGamepadAPI = s->m_bUsesGamepadAPI; -} #ifdef __x86_64__ u64_SteamInputConfigurationLoaded_t::operator w64_SteamInputConfigurationLoaded_t() const { w64_SteamInputConfigurationLoaded_t ret; - SteamInputConfigurationLoaded_t_w_from_u((void *)&ret, (const void *)this); + 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 @@ -19662,21 +19198,37 @@ u64_SteamInputConfigurationLoaded_t::operator w64_SteamInputConfigurationLoaded_ w32_SteamInputConfigurationLoaded_t::operator u32_SteamInputConfigurationLoaded_t() const { u32_SteamInputConfigurationLoaded_t ret; - SteamInputConfigurationLoaded_t_u_from_w((void *)&ret, (const void *)this); + 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__ u32_SteamInputConfigurationLoaded_t::operator w32_SteamInputConfigurationLoaded_t() const { w32_SteamInputConfigurationLoaded_t ret; - SteamInputConfigurationLoaded_t_w_from_u((void *)&ret, (const void *)this); + 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 +static void SteamInputConfigurationLoaded_t_utow(void *dst, const void *src) +{ + *(w_SteamInputConfigurationLoaded_t *)dst = *(const u_SteamInputConfigurationLoaded_t *)src; +} + 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 ); @@ -19725,43 +19277,28 @@ 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 ); -static void SteamInputGamepadSlotChange_t_u_from_w(void *dst, const void *src) -{ - u_SteamInputGamepadSlotChange_t *d = (u_SteamInputGamepadSlotChange_t *)dst; - const w_SteamInputGamepadSlotChange_t *s = (const w_SteamInputGamepadSlotChange_t *)src; - - d->m_unAppID = s->m_unAppID; - d->m_ulDeviceHandle = s->m_ulDeviceHandle; - d->m_eDeviceType = s->m_eDeviceType; - d->m_nOldGamepadSlot = s->m_nOldGamepadSlot; - d->m_nNewGamepadSlot = s->m_nNewGamepadSlot; -} #ifdef __x86_64__ w64_SteamInputGamepadSlotChange_t::operator u64_SteamInputGamepadSlotChange_t() const { u64_SteamInputGamepadSlotChange_t ret; - SteamInputGamepadSlotChange_t_u_from_w((void *)&ret, (const void *)this); + 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 - -static void SteamInputGamepadSlotChange_t_w_from_u(void *dst, const void *src) -{ - w_SteamInputGamepadSlotChange_t *d = (w_SteamInputGamepadSlotChange_t *)dst; - const u_SteamInputGamepadSlotChange_t *s = (const u_SteamInputGamepadSlotChange_t *)src; - - d->m_unAppID = s->m_unAppID; - d->m_ulDeviceHandle = s->m_ulDeviceHandle; - d->m_eDeviceType = s->m_eDeviceType; - d->m_nOldGamepadSlot = s->m_nOldGamepadSlot; - d->m_nNewGamepadSlot = s->m_nNewGamepadSlot; -} #ifdef __x86_64__ u64_SteamInputGamepadSlotChange_t::operator w64_SteamInputGamepadSlotChange_t() const { w64_SteamInputGamepadSlotChange_t ret; - SteamInputGamepadSlotChange_t_w_from_u((void *)&ret, (const void *)this); + 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 @@ -19770,21 +19307,33 @@ u64_SteamInputGamepadSlotChange_t::operator w64_SteamInputGamepadSlotChange_t() w32_SteamInputGamepadSlotChange_t::operator u32_SteamInputGamepadSlotChange_t() const { u32_SteamInputGamepadSlotChange_t ret; - SteamInputGamepadSlotChange_t_u_from_w((void *)&ret, (const void *)this); + 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__ u32_SteamInputGamepadSlotChange_t::operator w32_SteamInputGamepadSlotChange_t() const { w32_SteamInputGamepadSlotChange_t ret; - SteamInputGamepadSlotChange_t_w_from_u((void *)&ret, (const void *)this); + 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 +static void SteamInputGamepadSlotChange_t_utow(void *dst, const void *src) +{ + *(w_SteamInputGamepadSlotChange_t *)dst = *(const u_SteamInputGamepadSlotChange_t *)src; +} + 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 ); @@ -19817,39 +19366,24 @@ 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 ); -static void SteamInventoryStartPurchaseResult_t_u_from_w(void *dst, const void *src) -{ - u_SteamInventoryStartPurchaseResult_t *d = (u_SteamInventoryStartPurchaseResult_t *)dst; - const w_SteamInventoryStartPurchaseResult_t *s = (const w_SteamInventoryStartPurchaseResult_t *)src; - - d->m_result = s->m_result; - d->m_ulOrderID = s->m_ulOrderID; - d->m_ulTransID = s->m_ulTransID; -} #ifdef __x86_64__ w64_SteamInventoryStartPurchaseResult_t::operator u64_SteamInventoryStartPurchaseResult_t() const { u64_SteamInventoryStartPurchaseResult_t ret; - SteamInventoryStartPurchaseResult_t_u_from_w((void *)&ret, (const void *)this); + ret.m_result = this->m_result; + ret.m_ulOrderID = this->m_ulOrderID; + ret.m_ulTransID = this->m_ulTransID; return ret; } #endif - -static void SteamInventoryStartPurchaseResult_t_w_from_u(void *dst, const void *src) -{ - w_SteamInventoryStartPurchaseResult_t *d = (w_SteamInventoryStartPurchaseResult_t *)dst; - const u_SteamInventoryStartPurchaseResult_t *s = (const u_SteamInventoryStartPurchaseResult_t *)src; - - d->m_result = s->m_result; - d->m_ulOrderID = s->m_ulOrderID; - d->m_ulTransID = s->m_ulTransID; -} #ifdef __x86_64__ u64_SteamInventoryStartPurchaseResult_t::operator w64_SteamInventoryStartPurchaseResult_t() const { w64_SteamInventoryStartPurchaseResult_t ret; - SteamInventoryStartPurchaseResult_t_w_from_u((void *)&ret, (const void *)this); + ret.m_result = this->m_result; + ret.m_ulOrderID = this->m_ulOrderID; + ret.m_ulTransID = this->m_ulTransID; return ret; } #endif @@ -19858,21 +19392,29 @@ u64_SteamInventoryStartPurchaseResult_t::operator w64_SteamInventoryStartPurchas w32_SteamInventoryStartPurchaseResult_t::operator u32_SteamInventoryStartPurchaseResult_t() const { u32_SteamInventoryStartPurchaseResult_t ret; - SteamInventoryStartPurchaseResult_t_u_from_w((void *)&ret, (const void *)this); + ret.m_result = this->m_result; + ret.m_ulOrderID = this->m_ulOrderID; + ret.m_ulTransID = this->m_ulTransID; return ret; } #endif - #ifdef __i386__ u32_SteamInventoryStartPurchaseResult_t::operator w32_SteamInventoryStartPurchaseResult_t() const { w32_SteamInventoryStartPurchaseResult_t ret; - SteamInventoryStartPurchaseResult_t_w_from_u((void *)&ret, (const void *)this); + ret.m_result = this->m_result; + ret.m_ulOrderID = this->m_ulOrderID; + ret.m_ulTransID = this->m_ulTransID; return ret; } #endif +static void SteamInventoryStartPurchaseResult_t_utow(void *dst, const void *src) +{ + *(w_SteamInventoryStartPurchaseResult_t *)dst = *(const u_SteamInventoryStartPurchaseResult_t *)src; +} + 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 ); @@ -19969,39 +19511,24 @@ 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 ); -static void SteamNetConnectionStatusChangedCallback_t_153a_u_from_w(void *dst, const void *src) -{ - u_SteamNetConnectionStatusChangedCallback_t_153a *d = (u_SteamNetConnectionStatusChangedCallback_t_153a *)dst; - const w_SteamNetConnectionStatusChangedCallback_t_153a *s = (const w_SteamNetConnectionStatusChangedCallback_t_153a *)src; - - d->m_hConn = s->m_hConn; - d->m_info = s->m_info; - d->m_eOldState = s->m_eOldState; -} #ifdef __x86_64__ w64_SteamNetConnectionStatusChangedCallback_t_153a::operator u64_SteamNetConnectionStatusChangedCallback_t_153a() const { u64_SteamNetConnectionStatusChangedCallback_t_153a ret; - SteamNetConnectionStatusChangedCallback_t_153a_u_from_w((void *)&ret, (const void *)this); + ret.m_hConn = this->m_hConn; + ret.m_info = this->m_info; + ret.m_eOldState = this->m_eOldState; return ret; } #endif - -static void SteamNetConnectionStatusChangedCallback_t_153a_w_from_u(void *dst, const void *src) -{ - w_SteamNetConnectionStatusChangedCallback_t_153a *d = (w_SteamNetConnectionStatusChangedCallback_t_153a *)dst; - const u_SteamNetConnectionStatusChangedCallback_t_153a *s = (const u_SteamNetConnectionStatusChangedCallback_t_153a *)src; - - d->m_hConn = s->m_hConn; - d->m_info = s->m_info; - d->m_eOldState = s->m_eOldState; -} #ifdef __x86_64__ u64_SteamNetConnectionStatusChangedCallback_t_153a::operator w64_SteamNetConnectionStatusChangedCallback_t_153a() const { w64_SteamNetConnectionStatusChangedCallback_t_153a ret; - SteamNetConnectionStatusChangedCallback_t_153a_w_from_u((void *)&ret, (const void *)this); + ret.m_hConn = this->m_hConn; + ret.m_info = this->m_info; + ret.m_eOldState = this->m_eOldState; return ret; } #endif @@ -20010,54 +19537,47 @@ u64_SteamNetConnectionStatusChangedCallback_t_153a::operator w64_SteamNetConnect w32_SteamNetConnectionStatusChangedCallback_t_153a::operator u32_SteamNetConnectionStatusChangedCallback_t_153a() const { u32_SteamNetConnectionStatusChangedCallback_t_153a ret; - SteamNetConnectionStatusChangedCallback_t_153a_u_from_w((void *)&ret, (const void *)this); + ret.m_hConn = this->m_hConn; + ret.m_info = this->m_info; + ret.m_eOldState = this->m_eOldState; return ret; } #endif - #ifdef __i386__ u32_SteamNetConnectionStatusChangedCallback_t_153a::operator w32_SteamNetConnectionStatusChangedCallback_t_153a() const { w32_SteamNetConnectionStatusChangedCallback_t_153a ret; - SteamNetConnectionStatusChangedCallback_t_153a_w_from_u((void *)&ret, (const void *)this); + ret.m_hConn = this->m_hConn; + ret.m_info = this->m_info; + ret.m_eOldState = this->m_eOldState; return ret; } #endif -static void SteamNetConnectionStatusChangedCallback_t_144_u_from_w(void *dst, const void *src) +static void SteamNetConnectionStatusChangedCallback_t_153a_utow(void *dst, const void *src) { - u_SteamNetConnectionStatusChangedCallback_t_144 *d = (u_SteamNetConnectionStatusChangedCallback_t_144 *)dst; - const w_SteamNetConnectionStatusChangedCallback_t_144 *s = (const w_SteamNetConnectionStatusChangedCallback_t_144 *)src; - - d->m_hConn = s->m_hConn; - d->m_info = s->m_info; - d->m_eOldState = s->m_eOldState; + *(w_SteamNetConnectionStatusChangedCallback_t_153a *)dst = *(const u_SteamNetConnectionStatusChangedCallback_t_153a *)src; } + #ifdef __x86_64__ w64_SteamNetConnectionStatusChangedCallback_t_144::operator u64_SteamNetConnectionStatusChangedCallback_t_144() const { u64_SteamNetConnectionStatusChangedCallback_t_144 ret; - SteamNetConnectionStatusChangedCallback_t_144_u_from_w((void *)&ret, (const void *)this); + ret.m_hConn = this->m_hConn; + ret.m_info = this->m_info; + ret.m_eOldState = this->m_eOldState; return ret; } #endif - -static void SteamNetConnectionStatusChangedCallback_t_144_w_from_u(void *dst, const void *src) -{ - w_SteamNetConnectionStatusChangedCallback_t_144 *d = (w_SteamNetConnectionStatusChangedCallback_t_144 *)dst; - const u_SteamNetConnectionStatusChangedCallback_t_144 *s = (const u_SteamNetConnectionStatusChangedCallback_t_144 *)src; - - d->m_hConn = s->m_hConn; - d->m_info = s->m_info; - d->m_eOldState = s->m_eOldState; -} #ifdef __x86_64__ u64_SteamNetConnectionStatusChangedCallback_t_144::operator w64_SteamNetConnectionStatusChangedCallback_t_144() const { w64_SteamNetConnectionStatusChangedCallback_t_144 ret; - SteamNetConnectionStatusChangedCallback_t_144_w_from_u((void *)&ret, (const void *)this); + ret.m_hConn = this->m_hConn; + ret.m_info = this->m_info; + ret.m_eOldState = this->m_eOldState; return ret; } #endif @@ -20066,54 +19586,47 @@ u64_SteamNetConnectionStatusChangedCallback_t_144::operator w64_SteamNetConnecti w32_SteamNetConnectionStatusChangedCallback_t_144::operator u32_SteamNetConnectionStatusChangedCallback_t_144() const { u32_SteamNetConnectionStatusChangedCallback_t_144 ret; - SteamNetConnectionStatusChangedCallback_t_144_u_from_w((void *)&ret, (const void *)this); + ret.m_hConn = this->m_hConn; + ret.m_info = this->m_info; + ret.m_eOldState = this->m_eOldState; return ret; } #endif - #ifdef __i386__ u32_SteamNetConnectionStatusChangedCallback_t_144::operator w32_SteamNetConnectionStatusChangedCallback_t_144() const { w32_SteamNetConnectionStatusChangedCallback_t_144 ret; - SteamNetConnectionStatusChangedCallback_t_144_w_from_u((void *)&ret, (const void *)this); + ret.m_hConn = this->m_hConn; + ret.m_info = this->m_info; + ret.m_eOldState = this->m_eOldState; return ret; } #endif -static void SteamNetConnectionStatusChangedCallback_t_151_u_from_w(void *dst, const void *src) +static void SteamNetConnectionStatusChangedCallback_t_144_utow(void *dst, const void *src) { - u_SteamNetConnectionStatusChangedCallback_t_151 *d = (u_SteamNetConnectionStatusChangedCallback_t_151 *)dst; - const w_SteamNetConnectionStatusChangedCallback_t_151 *s = (const w_SteamNetConnectionStatusChangedCallback_t_151 *)src; - - d->m_hConn = s->m_hConn; - d->m_info = s->m_info; - d->m_eOldState = s->m_eOldState; + *(w_SteamNetConnectionStatusChangedCallback_t_144 *)dst = *(const u_SteamNetConnectionStatusChangedCallback_t_144 *)src; } + #ifdef __x86_64__ w64_SteamNetConnectionStatusChangedCallback_t_151::operator u64_SteamNetConnectionStatusChangedCallback_t_151() const { u64_SteamNetConnectionStatusChangedCallback_t_151 ret; - SteamNetConnectionStatusChangedCallback_t_151_u_from_w((void *)&ret, (const void *)this); + ret.m_hConn = this->m_hConn; + ret.m_info = this->m_info; + ret.m_eOldState = this->m_eOldState; return ret; } #endif - -static void SteamNetConnectionStatusChangedCallback_t_151_w_from_u(void *dst, const void *src) -{ - w_SteamNetConnectionStatusChangedCallback_t_151 *d = (w_SteamNetConnectionStatusChangedCallback_t_151 *)dst; - const u_SteamNetConnectionStatusChangedCallback_t_151 *s = (const u_SteamNetConnectionStatusChangedCallback_t_151 *)src; - - d->m_hConn = s->m_hConn; - d->m_info = s->m_info; - d->m_eOldState = s->m_eOldState; -} #ifdef __x86_64__ u64_SteamNetConnectionStatusChangedCallback_t_151::operator w64_SteamNetConnectionStatusChangedCallback_t_151() const { w64_SteamNetConnectionStatusChangedCallback_t_151 ret; - SteamNetConnectionStatusChangedCallback_t_151_w_from_u((void *)&ret, (const void *)this); + ret.m_hConn = this->m_hConn; + ret.m_info = this->m_info; + ret.m_eOldState = this->m_eOldState; return ret; } #endif @@ -20122,21 +19635,29 @@ u64_SteamNetConnectionStatusChangedCallback_t_151::operator w64_SteamNetConnecti w32_SteamNetConnectionStatusChangedCallback_t_151::operator u32_SteamNetConnectionStatusChangedCallback_t_151() const { u32_SteamNetConnectionStatusChangedCallback_t_151 ret; - SteamNetConnectionStatusChangedCallback_t_151_u_from_w((void *)&ret, (const void *)this); + ret.m_hConn = this->m_hConn; + ret.m_info = this->m_info; + ret.m_eOldState = this->m_eOldState; return ret; } #endif - #ifdef __i386__ u32_SteamNetConnectionStatusChangedCallback_t_151::operator w32_SteamNetConnectionStatusChangedCallback_t_151() const { w32_SteamNetConnectionStatusChangedCallback_t_151 ret; - SteamNetConnectionStatusChangedCallback_t_151_w_from_u((void *)&ret, (const void *)this); + ret.m_hConn = this->m_hConn; + ret.m_info = this->m_info; + ret.m_eOldState = this->m_eOldState; return ret; } #endif +static void SteamNetConnectionStatusChangedCallback_t_151_utow(void *dst, const void *src) +{ + *(w_SteamNetConnectionStatusChangedCallback_t_151 *)dst = *(const u_SteamNetConnectionStatusChangedCallback_t_151 *)src; +} + 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 ); @@ -20585,6 +20106,11 @@ C_ASSERT( sizeof(u32_SteamParamStringArray_t().m_ppStrings) >= 4 ); C_ASSERT( offsetof(u32_SteamParamStringArray_t, m_nNumStrings) == 4 ); C_ASSERT( sizeof(u32_SteamParamStringArray_t().m_nNumStrings) >= 4 ); +static void SteamParamStringArray_t_utow(void *dst, const void *src) +{ + *(w_SteamParamStringArray_t *)dst = *(const u_SteamParamStringArray_t *)src; +} + C_ASSERT( sizeof(w64_SteamPartyBeaconLocation_t) >= 16 ); C_ASSERT( offsetof(w64_SteamPartyBeaconLocation_t, m_eType) == 0 ); C_ASSERT( sizeof(w64_SteamPartyBeaconLocation_t().m_eType) >= 4 ); @@ -20609,37 +20135,22 @@ 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 ); -static void SteamPartyBeaconLocation_t_u_from_w(void *dst, const void *src) -{ - u_SteamPartyBeaconLocation_t *d = (u_SteamPartyBeaconLocation_t *)dst; - const w_SteamPartyBeaconLocation_t *s = (const w_SteamPartyBeaconLocation_t *)src; - - d->m_eType = s->m_eType; - d->m_ulLocationID = s->m_ulLocationID; -} #ifdef __x86_64__ w64_SteamPartyBeaconLocation_t::operator u64_SteamPartyBeaconLocation_t() const { u64_SteamPartyBeaconLocation_t ret; - SteamPartyBeaconLocation_t_u_from_w((void *)&ret, (const void *)this); + ret.m_eType = this->m_eType; + ret.m_ulLocationID = this->m_ulLocationID; return ret; } #endif - -static void SteamPartyBeaconLocation_t_w_from_u(void *dst, const void *src) -{ - w_SteamPartyBeaconLocation_t *d = (w_SteamPartyBeaconLocation_t *)dst; - const u_SteamPartyBeaconLocation_t *s = (const u_SteamPartyBeaconLocation_t *)src; - - d->m_eType = s->m_eType; - d->m_ulLocationID = s->m_ulLocationID; -} #ifdef __x86_64__ u64_SteamPartyBeaconLocation_t::operator w64_SteamPartyBeaconLocation_t() const { w64_SteamPartyBeaconLocation_t ret; - SteamPartyBeaconLocation_t_w_from_u((void *)&ret, (const void *)this); + ret.m_eType = this->m_eType; + ret.m_ulLocationID = this->m_ulLocationID; return ret; } #endif @@ -20648,21 +20159,27 @@ u64_SteamPartyBeaconLocation_t::operator w64_SteamPartyBeaconLocation_t() const w32_SteamPartyBeaconLocation_t::operator u32_SteamPartyBeaconLocation_t() const { u32_SteamPartyBeaconLocation_t ret; - SteamPartyBeaconLocation_t_u_from_w((void *)&ret, (const void *)this); + ret.m_eType = this->m_eType; + ret.m_ulLocationID = this->m_ulLocationID; return ret; } #endif - #ifdef __i386__ u32_SteamPartyBeaconLocation_t::operator w32_SteamPartyBeaconLocation_t() const { w32_SteamPartyBeaconLocation_t ret; - SteamPartyBeaconLocation_t_w_from_u((void *)&ret, (const void *)this); + ret.m_eType = this->m_eType; + ret.m_ulLocationID = this->m_ulLocationID; return ret; } #endif +static void SteamPartyBeaconLocation_t_utow(void *dst, const void *src) +{ + *(w_SteamPartyBeaconLocation_t *)dst = *(const u_SteamPartyBeaconLocation_t *)src; +} + C_ASSERT( sizeof(w64_SteamUGCRequestUGCDetailsResult_t_160) >= 9792 ); C_ASSERT( offsetof(w64_SteamUGCRequestUGCDetailsResult_t_160, m_details) == 0 ); C_ASSERT( sizeof(w64_SteamUGCRequestUGCDetailsResult_t_160().m_details) >= 9784 ); @@ -20751,37 +20268,22 @@ 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 ); -static void SteamUGCRequestUGCDetailsResult_t_160_u_from_w(void *dst, const void *src) -{ - u_SteamUGCRequestUGCDetailsResult_t_160 *d = (u_SteamUGCRequestUGCDetailsResult_t_160 *)dst; - const w_SteamUGCRequestUGCDetailsResult_t_160 *s = (const w_SteamUGCRequestUGCDetailsResult_t_160 *)src; - - d->m_details = s->m_details; - d->m_bCachedData = s->m_bCachedData; -} #ifdef __x86_64__ w64_SteamUGCRequestUGCDetailsResult_t_160::operator u64_SteamUGCRequestUGCDetailsResult_t_160() const { u64_SteamUGCRequestUGCDetailsResult_t_160 ret; - SteamUGCRequestUGCDetailsResult_t_160_u_from_w((void *)&ret, (const void *)this); + ret.m_details = this->m_details; + ret.m_bCachedData = this->m_bCachedData; return ret; } #endif - -static void SteamUGCRequestUGCDetailsResult_t_160_w_from_u(void *dst, const void *src) -{ - w_SteamUGCRequestUGCDetailsResult_t_160 *d = (w_SteamUGCRequestUGCDetailsResult_t_160 *)dst; - const u_SteamUGCRequestUGCDetailsResult_t_160 *s = (const u_SteamUGCRequestUGCDetailsResult_t_160 *)src; - - d->m_details = s->m_details; - d->m_bCachedData = s->m_bCachedData; -} #ifdef __x86_64__ u64_SteamUGCRequestUGCDetailsResult_t_160::operator w64_SteamUGCRequestUGCDetailsResult_t_160() const { w64_SteamUGCRequestUGCDetailsResult_t_160 ret; - SteamUGCRequestUGCDetailsResult_t_160_w_from_u((void *)&ret, (const void *)this); + ret.m_details = this->m_details; + ret.m_bCachedData = this->m_bCachedData; return ret; } #endif @@ -20790,52 +20292,43 @@ u64_SteamUGCRequestUGCDetailsResult_t_160::operator w64_SteamUGCRequestUGCDetail w32_SteamUGCRequestUGCDetailsResult_t_160::operator u32_SteamUGCRequestUGCDetailsResult_t_160() const { u32_SteamUGCRequestUGCDetailsResult_t_160 ret; - SteamUGCRequestUGCDetailsResult_t_160_u_from_w((void *)&ret, (const void *)this); + ret.m_details = this->m_details; + ret.m_bCachedData = this->m_bCachedData; return ret; } #endif - #ifdef __i386__ u32_SteamUGCRequestUGCDetailsResult_t_160::operator w32_SteamUGCRequestUGCDetailsResult_t_160() const { w32_SteamUGCRequestUGCDetailsResult_t_160 ret; - SteamUGCRequestUGCDetailsResult_t_160_w_from_u((void *)&ret, (const void *)this); + ret.m_details = this->m_details; + ret.m_bCachedData = this->m_bCachedData; return ret; } #endif -static void SteamUGCRequestUGCDetailsResult_t_128x_u_from_w(void *dst, const void *src) +static void SteamUGCRequestUGCDetailsResult_t_160_utow(void *dst, const void *src) { - u_SteamUGCRequestUGCDetailsResult_t_128x *d = (u_SteamUGCRequestUGCDetailsResult_t_128x *)dst; - const w_SteamUGCRequestUGCDetailsResult_t_128x *s = (const w_SteamUGCRequestUGCDetailsResult_t_128x *)src; - - d->m_details = s->m_details; - d->m_bCachedData = s->m_bCachedData; + *(w_SteamUGCRequestUGCDetailsResult_t_160 *)dst = *(const u_SteamUGCRequestUGCDetailsResult_t_160 *)src; } + #ifdef __x86_64__ w64_SteamUGCRequestUGCDetailsResult_t_128x::operator u64_SteamUGCRequestUGCDetailsResult_t_128x() const { u64_SteamUGCRequestUGCDetailsResult_t_128x ret; - SteamUGCRequestUGCDetailsResult_t_128x_u_from_w((void *)&ret, (const void *)this); + ret.m_details = this->m_details; + ret.m_bCachedData = this->m_bCachedData; return ret; } #endif - -static void SteamUGCRequestUGCDetailsResult_t_128x_w_from_u(void *dst, const void *src) -{ - w_SteamUGCRequestUGCDetailsResult_t_128x *d = (w_SteamUGCRequestUGCDetailsResult_t_128x *)dst; - const u_SteamUGCRequestUGCDetailsResult_t_128x *s = (const u_SteamUGCRequestUGCDetailsResult_t_128x *)src; - - d->m_details = s->m_details; - d->m_bCachedData = s->m_bCachedData; -} #ifdef __x86_64__ u64_SteamUGCRequestUGCDetailsResult_t_128x::operator w64_SteamUGCRequestUGCDetailsResult_t_128x() const { w64_SteamUGCRequestUGCDetailsResult_t_128x ret; - SteamUGCRequestUGCDetailsResult_t_128x_w_from_u((void *)&ret, (const void *)this); + ret.m_details = this->m_details; + ret.m_bCachedData = this->m_bCachedData; return ret; } #endif @@ -20844,52 +20337,43 @@ u64_SteamUGCRequestUGCDetailsResult_t_128x::operator w64_SteamUGCRequestUGCDetai w32_SteamUGCRequestUGCDetailsResult_t_128x::operator u32_SteamUGCRequestUGCDetailsResult_t_128x() const { u32_SteamUGCRequestUGCDetailsResult_t_128x ret; - SteamUGCRequestUGCDetailsResult_t_128x_u_from_w((void *)&ret, (const void *)this); + ret.m_details = this->m_details; + ret.m_bCachedData = this->m_bCachedData; return ret; } #endif - #ifdef __i386__ u32_SteamUGCRequestUGCDetailsResult_t_128x::operator w32_SteamUGCRequestUGCDetailsResult_t_128x() const { w32_SteamUGCRequestUGCDetailsResult_t_128x ret; - SteamUGCRequestUGCDetailsResult_t_128x_w_from_u((void *)&ret, (const void *)this); + ret.m_details = this->m_details; + ret.m_bCachedData = this->m_bCachedData; return ret; } #endif -static void SteamUGCRequestUGCDetailsResult_t_129_u_from_w(void *dst, const void *src) +static void SteamUGCRequestUGCDetailsResult_t_128x_utow(void *dst, const void *src) { - u_SteamUGCRequestUGCDetailsResult_t_129 *d = (u_SteamUGCRequestUGCDetailsResult_t_129 *)dst; - const w_SteamUGCRequestUGCDetailsResult_t_129 *s = (const w_SteamUGCRequestUGCDetailsResult_t_129 *)src; - - d->m_details = s->m_details; - d->m_bCachedData = s->m_bCachedData; + *(w_SteamUGCRequestUGCDetailsResult_t_128x *)dst = *(const u_SteamUGCRequestUGCDetailsResult_t_128x *)src; } + #ifdef __x86_64__ w64_SteamUGCRequestUGCDetailsResult_t_129::operator u64_SteamUGCRequestUGCDetailsResult_t_129() const { u64_SteamUGCRequestUGCDetailsResult_t_129 ret; - SteamUGCRequestUGCDetailsResult_t_129_u_from_w((void *)&ret, (const void *)this); + ret.m_details = this->m_details; + ret.m_bCachedData = this->m_bCachedData; return ret; } #endif - -static void SteamUGCRequestUGCDetailsResult_t_129_w_from_u(void *dst, const void *src) -{ - w_SteamUGCRequestUGCDetailsResult_t_129 *d = (w_SteamUGCRequestUGCDetailsResult_t_129 *)dst; - const u_SteamUGCRequestUGCDetailsResult_t_129 *s = (const u_SteamUGCRequestUGCDetailsResult_t_129 *)src; - - d->m_details = s->m_details; - d->m_bCachedData = s->m_bCachedData; -} #ifdef __x86_64__ u64_SteamUGCRequestUGCDetailsResult_t_129::operator w64_SteamUGCRequestUGCDetailsResult_t_129() const { w64_SteamUGCRequestUGCDetailsResult_t_129 ret; - SteamUGCRequestUGCDetailsResult_t_129_w_from_u((void *)&ret, (const void *)this); + ret.m_details = this->m_details; + ret.m_bCachedData = this->m_bCachedData; return ret; } #endif @@ -20898,50 +20382,41 @@ u64_SteamUGCRequestUGCDetailsResult_t_129::operator w64_SteamUGCRequestUGCDetail w32_SteamUGCRequestUGCDetailsResult_t_129::operator u32_SteamUGCRequestUGCDetailsResult_t_129() const { u32_SteamUGCRequestUGCDetailsResult_t_129 ret; - SteamUGCRequestUGCDetailsResult_t_129_u_from_w((void *)&ret, (const void *)this); + ret.m_details = this->m_details; + ret.m_bCachedData = this->m_bCachedData; return ret; } #endif - #ifdef __i386__ u32_SteamUGCRequestUGCDetailsResult_t_129::operator w32_SteamUGCRequestUGCDetailsResult_t_129() const { w32_SteamUGCRequestUGCDetailsResult_t_129 ret; - SteamUGCRequestUGCDetailsResult_t_129_w_from_u((void *)&ret, (const void *)this); + ret.m_details = this->m_details; + ret.m_bCachedData = this->m_bCachedData; return ret; } #endif -static void SteamUGCRequestUGCDetailsResult_t_126_u_from_w(void *dst, const void *src) +static void SteamUGCRequestUGCDetailsResult_t_129_utow(void *dst, const void *src) { - u_SteamUGCRequestUGCDetailsResult_t_126 *d = (u_SteamUGCRequestUGCDetailsResult_t_126 *)dst; - const w_SteamUGCRequestUGCDetailsResult_t_126 *s = (const w_SteamUGCRequestUGCDetailsResult_t_126 *)src; - - d->m_details = s->m_details; + *(w_SteamUGCRequestUGCDetailsResult_t_129 *)dst = *(const u_SteamUGCRequestUGCDetailsResult_t_129 *)src; } + #ifdef __x86_64__ w64_SteamUGCRequestUGCDetailsResult_t_126::operator u64_SteamUGCRequestUGCDetailsResult_t_126() const { u64_SteamUGCRequestUGCDetailsResult_t_126 ret; - SteamUGCRequestUGCDetailsResult_t_126_u_from_w((void *)&ret, (const void *)this); + ret.m_details = this->m_details; return ret; } #endif - -static void SteamUGCRequestUGCDetailsResult_t_126_w_from_u(void *dst, const void *src) -{ - w_SteamUGCRequestUGCDetailsResult_t_126 *d = (w_SteamUGCRequestUGCDetailsResult_t_126 *)dst; - const u_SteamUGCRequestUGCDetailsResult_t_126 *s = (const u_SteamUGCRequestUGCDetailsResult_t_126 *)src; - - d->m_details = s->m_details; -} #ifdef __x86_64__ u64_SteamUGCRequestUGCDetailsResult_t_126::operator w64_SteamUGCRequestUGCDetailsResult_t_126() const { w64_SteamUGCRequestUGCDetailsResult_t_126 ret; - SteamUGCRequestUGCDetailsResult_t_126_w_from_u((void *)&ret, (const void *)this); + ret.m_details = this->m_details; return ret; } #endif @@ -20950,21 +20425,25 @@ u64_SteamUGCRequestUGCDetailsResult_t_126::operator w64_SteamUGCRequestUGCDetail w32_SteamUGCRequestUGCDetailsResult_t_126::operator u32_SteamUGCRequestUGCDetailsResult_t_126() const { u32_SteamUGCRequestUGCDetailsResult_t_126 ret; - SteamUGCRequestUGCDetailsResult_t_126_u_from_w((void *)&ret, (const void *)this); + ret.m_details = this->m_details; return ret; } #endif - #ifdef __i386__ u32_SteamUGCRequestUGCDetailsResult_t_126::operator w32_SteamUGCRequestUGCDetailsResult_t_126() const { w32_SteamUGCRequestUGCDetailsResult_t_126 ret; - SteamUGCRequestUGCDetailsResult_t_126_w_from_u((void *)&ret, (const void *)this); + ret.m_details = this->m_details; return ret; } #endif +static void SteamUGCRequestUGCDetailsResult_t_126_utow(void *dst, const void *src) +{ + *(w_SteamUGCRequestUGCDetailsResult_t_126 *)dst = *(const u_SteamUGCRequestUGCDetailsResult_t_126 *)src; +} + 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 ); @@ -20997,39 +20476,24 @@ C_ASSERT( sizeof(u32_SubmitPlayerResultResultCallback_t().ullUniqueGameID) >= 8 C_ASSERT( offsetof(u32_SubmitPlayerResultResultCallback_t, steamIDPlayer) == 12 ); C_ASSERT( sizeof(u32_SubmitPlayerResultResultCallback_t().steamIDPlayer) >= 8 ); -static void SubmitPlayerResultResultCallback_t_u_from_w(void *dst, const void *src) -{ - u_SubmitPlayerResultResultCallback_t *d = (u_SubmitPlayerResultResultCallback_t *)dst; - const w_SubmitPlayerResultResultCallback_t *s = (const w_SubmitPlayerResultResultCallback_t *)src; - - d->m_eResult = s->m_eResult; - d->ullUniqueGameID = s->ullUniqueGameID; - d->steamIDPlayer = s->steamIDPlayer; -} #ifdef __x86_64__ w64_SubmitPlayerResultResultCallback_t::operator u64_SubmitPlayerResultResultCallback_t() const { u64_SubmitPlayerResultResultCallback_t ret; - SubmitPlayerResultResultCallback_t_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.ullUniqueGameID = this->ullUniqueGameID; + ret.steamIDPlayer = this->steamIDPlayer; return ret; } #endif - -static void SubmitPlayerResultResultCallback_t_w_from_u(void *dst, const void *src) -{ - w_SubmitPlayerResultResultCallback_t *d = (w_SubmitPlayerResultResultCallback_t *)dst; - const u_SubmitPlayerResultResultCallback_t *s = (const u_SubmitPlayerResultResultCallback_t *)src; - - d->m_eResult = s->m_eResult; - d->ullUniqueGameID = s->ullUniqueGameID; - d->steamIDPlayer = s->steamIDPlayer; -} #ifdef __x86_64__ u64_SubmitPlayerResultResultCallback_t::operator w64_SubmitPlayerResultResultCallback_t() const { w64_SubmitPlayerResultResultCallback_t ret; - SubmitPlayerResultResultCallback_t_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.ullUniqueGameID = this->ullUniqueGameID; + ret.steamIDPlayer = this->steamIDPlayer; return ret; } #endif @@ -21038,243 +20502,251 @@ u64_SubmitPlayerResultResultCallback_t::operator w64_SubmitPlayerResultResultCal w32_SubmitPlayerResultResultCallback_t::operator u32_SubmitPlayerResultResultCallback_t() const { u32_SubmitPlayerResultResultCallback_t ret; - SubmitPlayerResultResultCallback_t_u_from_w((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.ullUniqueGameID = this->ullUniqueGameID; + ret.steamIDPlayer = this->steamIDPlayer; return ret; } #endif - #ifdef __i386__ u32_SubmitPlayerResultResultCallback_t::operator w32_SubmitPlayerResultResultCallback_t() const { w32_SubmitPlayerResultResultCallback_t ret; - SubmitPlayerResultResultCallback_t_w_from_u((void *)&ret, (const void *)this); + ret.m_eResult = this->m_eResult; + ret.ullUniqueGameID = this->ullUniqueGameID; + ret.steamIDPlayer = this->steamIDPlayer; return ret; } #endif +static void SubmitPlayerResultResultCallback_t_utow(void *dst, const void *src) +{ + *(w_SubmitPlayerResultResultCallback_t *)dst = *(const u_SubmitPlayerResultResultCallback_t *)src; +} + #ifdef __i386__ const struct callback_def callback_data[] = { - { 152, 162, 24, 16, MicroTxnAuthorizationResponse_t_123_w_from_u }, - /*{ 152, 122, 24, 16, MicroTxnAuthorizationResponse_t_109_w_from_u },*/ - { 209, 162, 40, 32, GSReputation_t_123_w_from_u }, - /*{ 209, 122, 40, 32, GSReputation_t_108_w_from_u },*/ - { 513, 162, 16, 12, LobbyCreated_t_123_w_from_u }, - /*{ 513, 122, 16, 12, LobbyCreated_t_099u_w_from_u },*/ - { 1023, 162, 40, 36, FileDetailsResult_t_w_from_u }, - { 1106, 162, 32, 28, LeaderboardScoreUploaded_t_123_w_from_u }, - /*{ 1106, 122, 32, 28, LeaderboardScoreUploaded_t_104_w_from_u },*/ - { 1111, 162, 16, 12, LeaderboardUGCSet_t_123_w_from_u }, - /*{ 1111, 122, 16, 12, LeaderboardUGCSet_t_111x_w_from_u },*/ - { 1112, 161, 24, 20, PS3TrophiesInstalled_t_123_w_from_u }, - /*{ 1112, 122, 24, 20, PS3TrophiesInstalled_t_112x_w_from_u },*/ - { 1221, 162, 712, 704, SteamNetConnectionStatusChangedCallback_t_153a_w_from_u }, - /*{ 1221, 152, 712, 704, SteamNetConnectionStatusChangedCallback_t_144_w_from_u },*/ - { 1221, 151, 584, 576, SteamNetConnectionStatusChangedCallback_t_151_w_from_u }, - { 1303, 151, 288, 280, RemoteStorageAppSyncProgress_t_123_w_from_u }, - /*{ 1303, 122, 288, 280, RemoteStorageAppSyncProgress_t_111x_w_from_u },*/ - { 1307, 162, 280, 272, RemoteStorageFileShareResult_t_128x_w_from_u }, - { 1307, 128, 16, 12, RemoteStorageFileShareResult_t_123_w_from_u }, - /*{ 1307, 122, 16, 12, RemoteStorageFileShareResult_t_111x_w_from_u },*/ - { 1308, 116, 40, 32, RemoteStorageDownloadUGCResult_t_111x_w_from_u }, - { 1309, 162, 24, 16, RemoteStoragePublishFileResult_t_125_w_from_u }, - { 1309, 124, 16, 12, RemoteStoragePublishFileResult_t_123_w_from_u }, - /*{ 1309, 122, 16, 12, RemoteStoragePublishFileResult_t_116x_w_from_u },*/ - { 1310, 117, 1744, 1732, RemoteStorageGetPublishedFileDetailsResult_t_116x_w_from_u }, - { 1311, 162, 16, 12, RemoteStorageDeletePublishedFileResult_t_123_w_from_u }, - /*{ 1311, 122, 16, 12, RemoteStorageDeletePublishedFileResult_t_116x_w_from_u },*/ - { 1312, 162, 416, 412, RemoteStorageEnumerateUserPublishedFilesResult_t_123_w_from_u }, - /*{ 1312, 122, 416, 412, RemoteStorageEnumerateUserPublishedFilesResult_t_116x_w_from_u },*/ - { 1313, 162, 16, 12, RemoteStorageSubscribePublishedFileResult_t_123_w_from_u }, - { 1313, 122, 4, 4, nullptr }, - { 1314, 162, 616, 612, RemoteStorageEnumerateUserSubscribedFilesResult_t_123_w_from_u }, - /*{ 1314, 122, 616, 612, RemoteStorageEnumerateUserSubscribedFilesResult_t_116x_w_from_u },*/ - { 1315, 162, 16, 12, RemoteStorageUnsubscribePublishedFileResult_t_123_w_from_u }, - { 1315, 122, 4, 4, nullptr }, - { 1316, 162, 24, 16, RemoteStorageUpdatePublishedFileResult_t_125_w_from_u }, - { 1316, 124, 16, 12, RemoteStorageUpdatePublishedFileResult_t_123_w_from_u }, - /*{ 1316, 122, 16, 12, RemoteStorageUpdatePublishedFileResult_t_116x_w_from_u },*/ - { 1317, 162, 296, 288, RemoteStorageDownloadUGCResult_t_123_w_from_u }, - /*{ 1317, 122, 296, 288, RemoteStorageDownloadUGCResult_t_116x_w_from_u },*/ - { 1318, 162, 9760, 9748, RemoteStorageGetPublishedFileDetailsResult_t_126_w_from_u }, - { 1318, 125, 9752, 9744, RemoteStorageGetPublishedFileDetailsResult_t_123_w_from_u }, - /*{ 1318, 122, 9752, 9744, RemoteStorageGetPublishedFileDetailsResult_t_119x_w_from_u },*/ - { 1318, 119, 9752, 9740, RemoteStorageGetPublishedFileDetailsResult_t_119_w_from_u }, - { 1318, 118, 9496, 9484, RemoteStorageGetPublishedFileDetailsResult_t_118_w_from_u }, - { 1319, 162, 624, 620, RemoteStorageEnumerateWorkshopFilesResult_t_125_w_from_u }, - { 1319, 124, 616, 612, RemoteStorageEnumerateWorkshopFilesResult_t_123_w_from_u }, - /*{ 1319, 122, 616, 612, RemoteStorageEnumerateWorkshopFilesResult_t_119_w_from_u },*/ - { 1320, 162, 32, 28, RemoteStorageGetPublishedItemVoteDetailsResult_t_123_w_from_u }, - /*{ 1320, 122, 32, 28, RemoteStorageGetPublishedItemVoteDetailsResult_t_119_w_from_u },*/ - { 1324, 162, 16, 12, RemoteStorageUpdateUserPublishedItemVoteResult_t_123_w_from_u }, - /*{ 1324, 122, 16, 12, RemoteStorageUpdateUserPublishedItemVoteResult_t_119_w_from_u },*/ - { 1325, 162, 24, 16, RemoteStorageUserVoteDetails_t_123_w_from_u }, - /*{ 1325, 122, 24, 16, RemoteStorageUserVoteDetails_t_119_w_from_u },*/ - { 1326, 162, 416, 412, RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123_w_from_u }, - /*{ 1326, 122, 416, 412, RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_119_w_from_u },*/ - { 1327, 162, 24, 16, RemoteStorageSetUserPublishedFileActionResult_t_123_w_from_u }, - /*{ 1327, 122, 24, 16, RemoteStorageSetUserPublishedFileActionResult_t_119_w_from_u },*/ - { 1330, 162, 24, 20, RemoteStoragePublishedFileUpdated_t_w_from_u }, - { 2101, 162, 32, 24, HTTPRequestCompleted_t_132x_w_from_u }, - { 2101, 132, 24, 20, HTTPRequestCompleted_t_123_w_from_u }, - /*{ 2101, 122, 24, 20, HTTPRequestCompleted_t_115_w_from_u },*/ - { 2102, 162, 16, 12, HTTPRequestHeadersReceived_t_123_w_from_u }, - /*{ 2102, 122, 16, 12, HTTPRequestHeadersReceived_t_121x_w_from_u },*/ - { 2103, 162, 24, 20, HTTPRequestDataReceived_t_123_w_from_u }, - /*{ 2103, 122, 24, 20, HTTPRequestDataReceived_t_121x_w_from_u },*/ - { 2803, 162, 40, 32, SteamInputConfigurationLoaded_t_w_from_u }, - { 2804, 162, 32, 24, SteamInputGamepadSlotChange_t_w_from_u }, - { 3402, 162, 9792, 9776, SteamUGCRequestUGCDetailsResult_t_160_w_from_u }, - { 3402, 159, 9784, 9768, SteamUGCRequestUGCDetailsResult_t_128x_w_from_u }, - { 3402, 129, 9776, 9764, SteamUGCRequestUGCDetailsResult_t_129_w_from_u }, - { 3402, 128, 9768, 9760, SteamUGCRequestUGCDetailsResult_t_126_w_from_u }, - { 3403, 162, 24, 16, CreateItemResult_t_w_from_u }, - { 3405, 162, 32, 28, ItemInstalled_t_160_w_from_u }, - { 3405, 159, 16, 12, ItemInstalled_t_130_w_from_u }, - { 3406, 162, 24, 16, DownloadItemResult_t_w_from_u }, - { 3412, 162, 24, 20, AddUGCDependencyResult_t_w_from_u }, - { 3413, 162, 24, 20, RemoveUGCDependencyResult_t_w_from_u }, - { 3414, 162, 24, 16, AddAppDependencyResult_t_w_from_u }, - { 3415, 162, 24, 16, RemoveAppDependencyResult_t_w_from_u }, - { 3416, 162, 152, 148, GetAppDependenciesResult_t_w_from_u }, - { 3417, 162, 16, 12, DeleteItemResult_t_w_from_u }, - { 4502, 162, 48, 48, HTML_NeedsPaint_t_w_from_u }, - { 4503, 162, 20, 20, HTML_StartRequest_t_w_from_u }, - { 4505, 162, 24, 24, HTML_URLChanged_t_w_from_u }, - { 4506, 162, 12, 12, HTML_FinishedRequest_t_w_from_u }, - { 4507, 162, 8, 8, HTML_OpenLinkInNewTab_t_w_from_u }, - { 4508, 162, 8, 8, HTML_ChangedTitle_t_w_from_u }, - { 4513, 162, 20, 20, HTML_LinkAtPosition_t_w_from_u }, - { 4514, 162, 8, 8, HTML_JSAlert_t_w_from_u }, - { 4515, 162, 8, 8, HTML_JSConfirm_t_w_from_u }, - { 4516, 162, 12, 12, HTML_FileOpenDialog_t_w_from_u }, - { 4517, 132, 16, 16, HTML_ComboNeedsPaint_t_w_from_u }, - { 4521, 162, 28, 28, HTML_NewWindow_t_132x_w_from_u }, - { 4521, 132, 24, 24, HTML_NewWindow_t_130x_w_from_u }, - { 4523, 162, 8, 8, HTML_StatusText_t_w_from_u }, - { 4524, 162, 8, 8, HTML_ShowToolTip_t_w_from_u }, - { 4525, 162, 8, 8, HTML_UpdateToolTip_t_w_from_u }, - { 4704, 162, 24, 20, SteamInventoryStartPurchaseResult_t_w_from_u }, - { 5211, 162, 16, 12, RequestPlayersForGameProgressCallback_t_w_from_u }, - { 5212, 162, 64, 56, RequestPlayersForGameResultCallback_t_w_from_u }, - { 5213, 162, 24, 20, RequestPlayersForGameFinalResultCallback_t_w_from_u }, - { 5214, 162, 24, 20, SubmitPlayerResultResultCallback_t_w_from_u }, - { 5215, 162, 16, 12, EndGameResultCallback_t_w_from_u }, - { 5301, 162, 280, 276, JoinPartyCallback_t_w_from_u }, - { 5302, 162, 16, 12, CreateBeaconCallback_t_w_from_u }, + { 152, 162, 24, 16, MicroTxnAuthorizationResponse_t_123_utow }, + /*{ 152, 122, 24, 16, MicroTxnAuthorizationResponse_t_109_utow },*/ + { 209, 162, 40, 32, GSReputation_t_123_utow }, + /*{ 209, 122, 40, 32, GSReputation_t_108_utow },*/ + { 513, 162, 16, 12, LobbyCreated_t_123_utow }, + /*{ 513, 122, 16, 12, LobbyCreated_t_099u_utow },*/ + { 1023, 162, 40, 36, FileDetailsResult_t_utow }, + { 1106, 162, 32, 28, LeaderboardScoreUploaded_t_123_utow }, + /*{ 1106, 122, 32, 28, LeaderboardScoreUploaded_t_104_utow },*/ + { 1111, 162, 16, 12, LeaderboardUGCSet_t_123_utow }, + /*{ 1111, 122, 16, 12, LeaderboardUGCSet_t_111x_utow },*/ + { 1112, 161, 24, 20, PS3TrophiesInstalled_t_123_utow }, + /*{ 1112, 122, 24, 20, PS3TrophiesInstalled_t_112x_utow },*/ + { 1221, 162, 712, 704, SteamNetConnectionStatusChangedCallback_t_153a_utow }, + /*{ 1221, 152, 712, 704, SteamNetConnectionStatusChangedCallback_t_144_utow },*/ + { 1221, 151, 584, 576, SteamNetConnectionStatusChangedCallback_t_151_utow }, + { 1303, 151, 288, 280, RemoteStorageAppSyncProgress_t_123_utow }, + /*{ 1303, 122, 288, 280, RemoteStorageAppSyncProgress_t_111x_utow },*/ + { 1307, 162, 280, 272, RemoteStorageFileShareResult_t_128x_utow }, + { 1307, 128, 16, 12, RemoteStorageFileShareResult_t_123_utow }, + /*{ 1307, 122, 16, 12, RemoteStorageFileShareResult_t_111x_utow },*/ + { 1308, 116, 40, 32, RemoteStorageDownloadUGCResult_t_111x_utow }, + { 1309, 162, 24, 16, RemoteStoragePublishFileResult_t_125_utow }, + { 1309, 124, 16, 12, RemoteStoragePublishFileResult_t_123_utow }, + /*{ 1309, 122, 16, 12, RemoteStoragePublishFileResult_t_116x_utow },*/ + { 1310, 117, 1744, 1732, RemoteStorageGetPublishedFileDetailsResult_t_116x_utow }, + { 1311, 162, 16, 12, RemoteStorageDeletePublishedFileResult_t_123_utow }, + /*{ 1311, 122, 16, 12, RemoteStorageDeletePublishedFileResult_t_116x_utow },*/ + { 1312, 162, 416, 412, RemoteStorageEnumerateUserPublishedFilesResult_t_123_utow }, + /*{ 1312, 122, 416, 412, RemoteStorageEnumerateUserPublishedFilesResult_t_116x_utow },*/ + { 1313, 162, 16, 12, RemoteStorageSubscribePublishedFileResult_t_123_utow }, + { 1313, 122, 4, 4, RemoteStorageSubscribePublishedFileResult_t_116x_utow }, + { 1314, 162, 616, 612, RemoteStorageEnumerateUserSubscribedFilesResult_t_123_utow }, + /*{ 1314, 122, 616, 612, RemoteStorageEnumerateUserSubscribedFilesResult_t_116x_utow },*/ + { 1315, 162, 16, 12, RemoteStorageUnsubscribePublishedFileResult_t_123_utow }, + { 1315, 122, 4, 4, RemoteStorageUnsubscribePublishedFileResult_t_116x_utow }, + { 1316, 162, 24, 16, RemoteStorageUpdatePublishedFileResult_t_125_utow }, + { 1316, 124, 16, 12, RemoteStorageUpdatePublishedFileResult_t_123_utow }, + /*{ 1316, 122, 16, 12, RemoteStorageUpdatePublishedFileResult_t_116x_utow },*/ + { 1317, 162, 296, 288, RemoteStorageDownloadUGCResult_t_123_utow }, + /*{ 1317, 122, 296, 288, RemoteStorageDownloadUGCResult_t_116x_utow },*/ + { 1318, 162, 9760, 9748, RemoteStorageGetPublishedFileDetailsResult_t_126_utow }, + { 1318, 125, 9752, 9744, RemoteStorageGetPublishedFileDetailsResult_t_123_utow }, + /*{ 1318, 122, 9752, 9744, RemoteStorageGetPublishedFileDetailsResult_t_119x_utow },*/ + { 1318, 119, 9752, 9740, RemoteStorageGetPublishedFileDetailsResult_t_119_utow }, + { 1318, 118, 9496, 9484, RemoteStorageGetPublishedFileDetailsResult_t_118_utow }, + { 1319, 162, 624, 620, RemoteStorageEnumerateWorkshopFilesResult_t_125_utow }, + { 1319, 124, 616, 612, RemoteStorageEnumerateWorkshopFilesResult_t_123_utow }, + /*{ 1319, 122, 616, 612, RemoteStorageEnumerateWorkshopFilesResult_t_119_utow },*/ + { 1320, 162, 32, 28, RemoteStorageGetPublishedItemVoteDetailsResult_t_123_utow }, + /*{ 1320, 122, 32, 28, RemoteStorageGetPublishedItemVoteDetailsResult_t_119_utow },*/ + { 1324, 162, 16, 12, RemoteStorageUpdateUserPublishedItemVoteResult_t_123_utow }, + /*{ 1324, 122, 16, 12, RemoteStorageUpdateUserPublishedItemVoteResult_t_119_utow },*/ + { 1325, 162, 24, 16, RemoteStorageUserVoteDetails_t_123_utow }, + /*{ 1325, 122, 24, 16, RemoteStorageUserVoteDetails_t_119_utow },*/ + { 1326, 162, 416, 412, RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123_utow }, + /*{ 1326, 122, 416, 412, RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_119_utow },*/ + { 1327, 162, 24, 16, RemoteStorageSetUserPublishedFileActionResult_t_123_utow }, + /*{ 1327, 122, 24, 16, RemoteStorageSetUserPublishedFileActionResult_t_119_utow },*/ + { 1330, 162, 24, 20, RemoteStoragePublishedFileUpdated_t_utow }, + { 2101, 162, 32, 24, HTTPRequestCompleted_t_132x_utow }, + { 2101, 132, 24, 20, HTTPRequestCompleted_t_123_utow }, + /*{ 2101, 122, 24, 20, HTTPRequestCompleted_t_115_utow },*/ + { 2102, 162, 16, 12, HTTPRequestHeadersReceived_t_123_utow }, + /*{ 2102, 122, 16, 12, HTTPRequestHeadersReceived_t_121x_utow },*/ + { 2103, 162, 24, 20, HTTPRequestDataReceived_t_123_utow }, + /*{ 2103, 122, 24, 20, HTTPRequestDataReceived_t_121x_utow },*/ + { 2803, 162, 40, 32, SteamInputConfigurationLoaded_t_utow }, + { 2804, 162, 32, 24, SteamInputGamepadSlotChange_t_utow }, + { 3402, 162, 9792, 9776, SteamUGCRequestUGCDetailsResult_t_160_utow }, + { 3402, 159, 9784, 9768, SteamUGCRequestUGCDetailsResult_t_128x_utow }, + { 3402, 129, 9776, 9764, SteamUGCRequestUGCDetailsResult_t_129_utow }, + { 3402, 128, 9768, 9760, SteamUGCRequestUGCDetailsResult_t_126_utow }, + { 3403, 162, 24, 16, CreateItemResult_t_utow }, + { 3405, 162, 32, 28, ItemInstalled_t_160_utow }, + { 3405, 159, 16, 12, ItemInstalled_t_130_utow }, + { 3406, 162, 24, 16, DownloadItemResult_t_utow }, + { 3412, 162, 24, 20, AddUGCDependencyResult_t_utow }, + { 3413, 162, 24, 20, RemoveUGCDependencyResult_t_utow }, + { 3414, 162, 24, 16, AddAppDependencyResult_t_utow }, + { 3415, 162, 24, 16, RemoveAppDependencyResult_t_utow }, + { 3416, 162, 152, 148, GetAppDependenciesResult_t_utow }, + { 3417, 162, 16, 12, DeleteItemResult_t_utow }, + { 4502, 162, 48, 48, HTML_NeedsPaint_t_utow }, + { 4503, 162, 20, 20, HTML_StartRequest_t_utow }, + { 4505, 162, 24, 24, HTML_URLChanged_t_utow }, + { 4506, 162, 12, 12, HTML_FinishedRequest_t_utow }, + { 4507, 162, 8, 8, HTML_OpenLinkInNewTab_t_utow }, + { 4508, 162, 8, 8, HTML_ChangedTitle_t_utow }, + { 4513, 162, 20, 20, HTML_LinkAtPosition_t_utow }, + { 4514, 162, 8, 8, HTML_JSAlert_t_utow }, + { 4515, 162, 8, 8, HTML_JSConfirm_t_utow }, + { 4516, 162, 12, 12, HTML_FileOpenDialog_t_utow }, + { 4517, 132, 16, 16, HTML_ComboNeedsPaint_t_utow }, + { 4521, 162, 28, 28, HTML_NewWindow_t_132x_utow }, + { 4521, 132, 24, 24, HTML_NewWindow_t_130x_utow }, + { 4523, 162, 8, 8, HTML_StatusText_t_utow }, + { 4524, 162, 8, 8, HTML_ShowToolTip_t_utow }, + { 4525, 162, 8, 8, HTML_UpdateToolTip_t_utow }, + { 4704, 162, 24, 20, SteamInventoryStartPurchaseResult_t_utow }, + { 5211, 162, 16, 12, RequestPlayersForGameProgressCallback_t_utow }, + { 5212, 162, 64, 56, RequestPlayersForGameResultCallback_t_utow }, + { 5213, 162, 24, 20, RequestPlayersForGameFinalResultCallback_t_utow }, + { 5214, 162, 24, 20, SubmitPlayerResultResultCallback_t_utow }, + { 5215, 162, 16, 12, EndGameResultCallback_t_utow }, + { 5301, 162, 280, 276, JoinPartyCallback_t_utow }, + { 5302, 162, 16, 12, CreateBeaconCallback_t_utow }, }; #endif #ifdef __x86_64__ const struct callback_def callback_data[] = { - { 152, 162, 24, 16, MicroTxnAuthorizationResponse_t_123_w_from_u }, - { 152, 122, 24, 24, MicroTxnAuthorizationResponse_t_109_w_from_u }, - { 209, 162, 40, 32, GSReputation_t_123_w_from_u }, - { 209, 122, 40, 40, GSReputation_t_108_w_from_u }, - { 513, 162, 16, 12, LobbyCreated_t_123_w_from_u }, - { 513, 122, 16, 16, LobbyCreated_t_099u_w_from_u }, - { 1023, 162, 40, 36, FileDetailsResult_t_w_from_u }, - { 1106, 162, 32, 28, LeaderboardScoreUploaded_t_123_w_from_u }, - { 1106, 122, 32, 32, LeaderboardScoreUploaded_t_104_w_from_u }, - { 1111, 162, 16, 12, LeaderboardUGCSet_t_123_w_from_u }, - { 1111, 122, 16, 16, LeaderboardUGCSet_t_111x_w_from_u }, - { 1112, 161, 24, 20, PS3TrophiesInstalled_t_123_w_from_u }, - { 1112, 122, 24, 24, PS3TrophiesInstalled_t_112x_w_from_u }, - { 1221, 162, 712, 704, SteamNetConnectionStatusChangedCallback_t_153a_w_from_u }, - /*{ 1221, 152, 712, 704, SteamNetConnectionStatusChangedCallback_t_144_w_from_u },*/ - { 1221, 151, 584, 576, SteamNetConnectionStatusChangedCallback_t_151_w_from_u }, - { 1303, 151, 288, 280, RemoteStorageAppSyncProgress_t_123_w_from_u }, - { 1303, 122, 288, 288, RemoteStorageAppSyncProgress_t_111x_w_from_u }, - { 1307, 162, 280, 272, RemoteStorageFileShareResult_t_128x_w_from_u }, - { 1307, 128, 16, 12, RemoteStorageFileShareResult_t_123_w_from_u }, - { 1307, 122, 16, 16, RemoteStorageFileShareResult_t_111x_w_from_u }, - { 1308, 116, 40, 40, RemoteStorageDownloadUGCResult_t_111x_w_from_u }, - { 1309, 162, 24, 16, RemoteStoragePublishFileResult_t_125_w_from_u }, - { 1309, 124, 16, 12, RemoteStoragePublishFileResult_t_123_w_from_u }, - { 1309, 122, 16, 16, RemoteStoragePublishFileResult_t_116x_w_from_u }, - { 1310, 117, 1744, 1744, RemoteStorageGetPublishedFileDetailsResult_t_116x_w_from_u }, - { 1311, 162, 16, 12, RemoteStorageDeletePublishedFileResult_t_123_w_from_u }, - { 1311, 122, 16, 16, RemoteStorageDeletePublishedFileResult_t_116x_w_from_u }, - { 1312, 162, 416, 412, RemoteStorageEnumerateUserPublishedFilesResult_t_123_w_from_u }, - { 1312, 122, 416, 416, RemoteStorageEnumerateUserPublishedFilesResult_t_116x_w_from_u }, - { 1313, 162, 16, 12, RemoteStorageSubscribePublishedFileResult_t_123_w_from_u }, - { 1313, 122, 4, 4, nullptr }, - { 1314, 162, 616, 612, RemoteStorageEnumerateUserSubscribedFilesResult_t_123_w_from_u }, - { 1314, 122, 616, 616, RemoteStorageEnumerateUserSubscribedFilesResult_t_116x_w_from_u }, - { 1315, 162, 16, 12, RemoteStorageUnsubscribePublishedFileResult_t_123_w_from_u }, - { 1315, 122, 4, 4, nullptr }, - { 1316, 162, 24, 16, RemoteStorageUpdatePublishedFileResult_t_125_w_from_u }, - { 1316, 124, 16, 12, RemoteStorageUpdatePublishedFileResult_t_123_w_from_u }, - { 1316, 122, 16, 16, RemoteStorageUpdatePublishedFileResult_t_116x_w_from_u }, - { 1317, 162, 296, 288, RemoteStorageDownloadUGCResult_t_123_w_from_u }, - { 1317, 122, 296, 296, RemoteStorageDownloadUGCResult_t_116x_w_from_u }, - { 1318, 162, 9760, 9748, RemoteStorageGetPublishedFileDetailsResult_t_126_w_from_u }, - { 1318, 125, 9752, 9744, RemoteStorageGetPublishedFileDetailsResult_t_123_w_from_u }, - { 1318, 122, 9752, 9752, RemoteStorageGetPublishedFileDetailsResult_t_119x_w_from_u }, - /*{ 1318, 119, 9752, 9752, RemoteStorageGetPublishedFileDetailsResult_t_119_w_from_u },*/ - { 1318, 118, 9496, 9496, RemoteStorageGetPublishedFileDetailsResult_t_118_w_from_u }, - { 1319, 162, 624, 620, RemoteStorageEnumerateWorkshopFilesResult_t_125_w_from_u }, - { 1319, 124, 616, 612, RemoteStorageEnumerateWorkshopFilesResult_t_123_w_from_u }, - { 1319, 122, 616, 616, RemoteStorageEnumerateWorkshopFilesResult_t_119_w_from_u }, - { 1320, 162, 32, 28, RemoteStorageGetPublishedItemVoteDetailsResult_t_123_w_from_u }, - { 1320, 122, 32, 32, RemoteStorageGetPublishedItemVoteDetailsResult_t_119_w_from_u }, - { 1324, 162, 16, 12, RemoteStorageUpdateUserPublishedItemVoteResult_t_123_w_from_u }, - { 1324, 122, 16, 16, RemoteStorageUpdateUserPublishedItemVoteResult_t_119_w_from_u }, - { 1325, 162, 24, 16, RemoteStorageUserVoteDetails_t_123_w_from_u }, - { 1325, 122, 24, 24, RemoteStorageUserVoteDetails_t_119_w_from_u }, - { 1326, 162, 416, 412, RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123_w_from_u }, - { 1326, 122, 416, 416, RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_119_w_from_u }, - { 1327, 162, 24, 16, RemoteStorageSetUserPublishedFileActionResult_t_123_w_from_u }, - { 1327, 122, 24, 24, RemoteStorageSetUserPublishedFileActionResult_t_119_w_from_u }, - { 1330, 162, 24, 20, RemoteStoragePublishedFileUpdated_t_w_from_u }, - { 2101, 162, 32, 24, HTTPRequestCompleted_t_132x_w_from_u }, - { 2101, 132, 24, 20, HTTPRequestCompleted_t_123_w_from_u }, - { 2101, 122, 24, 24, HTTPRequestCompleted_t_115_w_from_u }, - { 2102, 162, 16, 12, HTTPRequestHeadersReceived_t_123_w_from_u }, - { 2102, 122, 16, 16, HTTPRequestHeadersReceived_t_121x_w_from_u }, - { 2103, 162, 24, 20, HTTPRequestDataReceived_t_123_w_from_u }, - { 2103, 122, 24, 24, HTTPRequestDataReceived_t_121x_w_from_u }, - { 2803, 162, 40, 32, SteamInputConfigurationLoaded_t_w_from_u }, - { 2804, 162, 32, 24, SteamInputGamepadSlotChange_t_w_from_u }, - { 3402, 162, 9792, 9776, SteamUGCRequestUGCDetailsResult_t_160_w_from_u }, - { 3402, 159, 9784, 9768, SteamUGCRequestUGCDetailsResult_t_128x_w_from_u }, - { 3402, 129, 9776, 9764, SteamUGCRequestUGCDetailsResult_t_129_w_from_u }, - { 3402, 128, 9768, 9760, SteamUGCRequestUGCDetailsResult_t_126_w_from_u }, - { 3403, 162, 24, 16, CreateItemResult_t_w_from_u }, - { 3405, 162, 32, 28, ItemInstalled_t_160_w_from_u }, - { 3405, 159, 16, 12, ItemInstalled_t_130_w_from_u }, - { 3406, 162, 24, 16, DownloadItemResult_t_w_from_u }, - { 3412, 162, 24, 20, AddUGCDependencyResult_t_w_from_u }, - { 3413, 162, 24, 20, RemoveUGCDependencyResult_t_w_from_u }, - { 3414, 162, 24, 16, AddAppDependencyResult_t_w_from_u }, - { 3415, 162, 24, 16, RemoveAppDependencyResult_t_w_from_u }, - { 3416, 162, 152, 148, GetAppDependenciesResult_t_w_from_u }, - { 3417, 162, 16, 12, DeleteItemResult_t_w_from_u }, - { 4502, 162, 56, 52, HTML_NeedsPaint_t_w_from_u }, - { 4503, 162, 40, 32, HTML_StartRequest_t_w_from_u }, - { 4505, 162, 48, 36, HTML_URLChanged_t_w_from_u }, - { 4506, 162, 24, 20, HTML_FinishedRequest_t_w_from_u }, - { 4507, 162, 16, 12, HTML_OpenLinkInNewTab_t_w_from_u }, - { 4508, 162, 16, 12, HTML_ChangedTitle_t_w_from_u }, - { 4513, 162, 32, 24, HTML_LinkAtPosition_t_w_from_u }, - { 4514, 162, 16, 12, HTML_JSAlert_t_w_from_u }, - { 4515, 162, 16, 12, HTML_JSConfirm_t_w_from_u }, - { 4516, 162, 24, 20, HTML_FileOpenDialog_t_w_from_u }, - { 4517, 132, 24, 20, HTML_ComboNeedsPaint_t_w_from_u }, - { 4521, 162, 40, 32, HTML_NewWindow_t_132x_w_from_u }, - { 4521, 132, 32, 28, HTML_NewWindow_t_130x_w_from_u }, - { 4523, 162, 16, 12, HTML_StatusText_t_w_from_u }, - { 4524, 162, 16, 12, HTML_ShowToolTip_t_w_from_u }, - { 4525, 162, 16, 12, HTML_UpdateToolTip_t_w_from_u }, - { 4704, 162, 24, 20, SteamInventoryStartPurchaseResult_t_w_from_u }, - { 5211, 162, 16, 12, RequestPlayersForGameProgressCallback_t_w_from_u }, - { 5212, 162, 64, 56, RequestPlayersForGameResultCallback_t_w_from_u }, - { 5213, 162, 24, 20, RequestPlayersForGameFinalResultCallback_t_w_from_u }, - { 5214, 162, 24, 20, SubmitPlayerResultResultCallback_t_w_from_u }, - { 5215, 162, 16, 12, EndGameResultCallback_t_w_from_u }, - { 5301, 162, 280, 276, JoinPartyCallback_t_w_from_u }, - { 5302, 162, 16, 12, CreateBeaconCallback_t_w_from_u }, + { 152, 162, 24, 16, MicroTxnAuthorizationResponse_t_123_utow }, + { 152, 122, 24, 24, MicroTxnAuthorizationResponse_t_109_utow }, + { 209, 162, 40, 32, GSReputation_t_123_utow }, + { 209, 122, 40, 40, GSReputation_t_108_utow }, + { 513, 162, 16, 12, LobbyCreated_t_123_utow }, + { 513, 122, 16, 16, LobbyCreated_t_099u_utow }, + { 1023, 162, 40, 36, FileDetailsResult_t_utow }, + { 1106, 162, 32, 28, LeaderboardScoreUploaded_t_123_utow }, + { 1106, 122, 32, 32, LeaderboardScoreUploaded_t_104_utow }, + { 1111, 162, 16, 12, LeaderboardUGCSet_t_123_utow }, + { 1111, 122, 16, 16, LeaderboardUGCSet_t_111x_utow }, + { 1112, 161, 24, 20, PS3TrophiesInstalled_t_123_utow }, + { 1112, 122, 24, 24, PS3TrophiesInstalled_t_112x_utow }, + { 1221, 162, 712, 704, SteamNetConnectionStatusChangedCallback_t_153a_utow }, + /*{ 1221, 152, 712, 704, SteamNetConnectionStatusChangedCallback_t_144_utow },*/ + { 1221, 151, 584, 576, SteamNetConnectionStatusChangedCallback_t_151_utow }, + { 1303, 151, 288, 280, RemoteStorageAppSyncProgress_t_123_utow }, + { 1303, 122, 288, 288, RemoteStorageAppSyncProgress_t_111x_utow }, + { 1307, 162, 280, 272, RemoteStorageFileShareResult_t_128x_utow }, + { 1307, 128, 16, 12, RemoteStorageFileShareResult_t_123_utow }, + { 1307, 122, 16, 16, RemoteStorageFileShareResult_t_111x_utow }, + { 1308, 116, 40, 40, RemoteStorageDownloadUGCResult_t_111x_utow }, + { 1309, 162, 24, 16, RemoteStoragePublishFileResult_t_125_utow }, + { 1309, 124, 16, 12, RemoteStoragePublishFileResult_t_123_utow }, + { 1309, 122, 16, 16, RemoteStoragePublishFileResult_t_116x_utow }, + { 1310, 117, 1744, 1744, RemoteStorageGetPublishedFileDetailsResult_t_116x_utow }, + { 1311, 162, 16, 12, RemoteStorageDeletePublishedFileResult_t_123_utow }, + { 1311, 122, 16, 16, RemoteStorageDeletePublishedFileResult_t_116x_utow }, + { 1312, 162, 416, 412, RemoteStorageEnumerateUserPublishedFilesResult_t_123_utow }, + { 1312, 122, 416, 416, RemoteStorageEnumerateUserPublishedFilesResult_t_116x_utow }, + { 1313, 162, 16, 12, RemoteStorageSubscribePublishedFileResult_t_123_utow }, + { 1313, 122, 4, 4, RemoteStorageSubscribePublishedFileResult_t_116x_utow }, + { 1314, 162, 616, 612, RemoteStorageEnumerateUserSubscribedFilesResult_t_123_utow }, + { 1314, 122, 616, 616, RemoteStorageEnumerateUserSubscribedFilesResult_t_116x_utow }, + { 1315, 162, 16, 12, RemoteStorageUnsubscribePublishedFileResult_t_123_utow }, + { 1315, 122, 4, 4, RemoteStorageUnsubscribePublishedFileResult_t_116x_utow }, + { 1316, 162, 24, 16, RemoteStorageUpdatePublishedFileResult_t_125_utow }, + { 1316, 124, 16, 12, RemoteStorageUpdatePublishedFileResult_t_123_utow }, + { 1316, 122, 16, 16, RemoteStorageUpdatePublishedFileResult_t_116x_utow }, + { 1317, 162, 296, 288, RemoteStorageDownloadUGCResult_t_123_utow }, + { 1317, 122, 296, 296, RemoteStorageDownloadUGCResult_t_116x_utow }, + { 1318, 162, 9760, 9748, RemoteStorageGetPublishedFileDetailsResult_t_126_utow }, + { 1318, 125, 9752, 9744, RemoteStorageGetPublishedFileDetailsResult_t_123_utow }, + { 1318, 122, 9752, 9752, RemoteStorageGetPublishedFileDetailsResult_t_119x_utow }, + /*{ 1318, 119, 9752, 9752, RemoteStorageGetPublishedFileDetailsResult_t_119_utow },*/ + { 1318, 118, 9496, 9496, RemoteStorageGetPublishedFileDetailsResult_t_118_utow }, + { 1319, 162, 624, 620, RemoteStorageEnumerateWorkshopFilesResult_t_125_utow }, + { 1319, 124, 616, 612, RemoteStorageEnumerateWorkshopFilesResult_t_123_utow }, + { 1319, 122, 616, 616, RemoteStorageEnumerateWorkshopFilesResult_t_119_utow }, + { 1320, 162, 32, 28, RemoteStorageGetPublishedItemVoteDetailsResult_t_123_utow }, + { 1320, 122, 32, 32, RemoteStorageGetPublishedItemVoteDetailsResult_t_119_utow }, + { 1324, 162, 16, 12, RemoteStorageUpdateUserPublishedItemVoteResult_t_123_utow }, + { 1324, 122, 16, 16, RemoteStorageUpdateUserPublishedItemVoteResult_t_119_utow }, + { 1325, 162, 24, 16, RemoteStorageUserVoteDetails_t_123_utow }, + { 1325, 122, 24, 24, RemoteStorageUserVoteDetails_t_119_utow }, + { 1326, 162, 416, 412, RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_123_utow }, + { 1326, 122, 416, 416, RemoteStorageEnumerateUserSharedWorkshopFilesResult_t_119_utow }, + { 1327, 162, 24, 16, RemoteStorageSetUserPublishedFileActionResult_t_123_utow }, + { 1327, 122, 24, 24, RemoteStorageSetUserPublishedFileActionResult_t_119_utow }, + { 1330, 162, 24, 20, RemoteStoragePublishedFileUpdated_t_utow }, + { 2101, 162, 32, 24, HTTPRequestCompleted_t_132x_utow }, + { 2101, 132, 24, 20, HTTPRequestCompleted_t_123_utow }, + { 2101, 122, 24, 24, HTTPRequestCompleted_t_115_utow }, + { 2102, 162, 16, 12, HTTPRequestHeadersReceived_t_123_utow }, + { 2102, 122, 16, 16, HTTPRequestHeadersReceived_t_121x_utow }, + { 2103, 162, 24, 20, HTTPRequestDataReceived_t_123_utow }, + { 2103, 122, 24, 24, HTTPRequestDataReceived_t_121x_utow }, + { 2803, 162, 40, 32, SteamInputConfigurationLoaded_t_utow }, + { 2804, 162, 32, 24, SteamInputGamepadSlotChange_t_utow }, + { 3402, 162, 9792, 9776, SteamUGCRequestUGCDetailsResult_t_160_utow }, + { 3402, 159, 9784, 9768, SteamUGCRequestUGCDetailsResult_t_128x_utow }, + { 3402, 129, 9776, 9764, SteamUGCRequestUGCDetailsResult_t_129_utow }, + { 3402, 128, 9768, 9760, SteamUGCRequestUGCDetailsResult_t_126_utow }, + { 3403, 162, 24, 16, CreateItemResult_t_utow }, + { 3405, 162, 32, 28, ItemInstalled_t_160_utow }, + { 3405, 159, 16, 12, ItemInstalled_t_130_utow }, + { 3406, 162, 24, 16, DownloadItemResult_t_utow }, + { 3412, 162, 24, 20, AddUGCDependencyResult_t_utow }, + { 3413, 162, 24, 20, RemoveUGCDependencyResult_t_utow }, + { 3414, 162, 24, 16, AddAppDependencyResult_t_utow }, + { 3415, 162, 24, 16, RemoveAppDependencyResult_t_utow }, + { 3416, 162, 152, 148, GetAppDependenciesResult_t_utow }, + { 3417, 162, 16, 12, DeleteItemResult_t_utow }, + { 4502, 162, 56, 52, HTML_NeedsPaint_t_utow }, + { 4503, 162, 40, 32, HTML_StartRequest_t_utow }, + { 4505, 162, 48, 36, HTML_URLChanged_t_utow }, + { 4506, 162, 24, 20, HTML_FinishedRequest_t_utow }, + { 4507, 162, 16, 12, HTML_OpenLinkInNewTab_t_utow }, + { 4508, 162, 16, 12, HTML_ChangedTitle_t_utow }, + { 4513, 162, 32, 24, HTML_LinkAtPosition_t_utow }, + { 4514, 162, 16, 12, HTML_JSAlert_t_utow }, + { 4515, 162, 16, 12, HTML_JSConfirm_t_utow }, + { 4516, 162, 24, 20, HTML_FileOpenDialog_t_utow }, + { 4517, 132, 24, 20, HTML_ComboNeedsPaint_t_utow }, + { 4521, 162, 40, 32, HTML_NewWindow_t_132x_utow }, + { 4521, 132, 32, 28, HTML_NewWindow_t_130x_utow }, + { 4523, 162, 16, 12, HTML_StatusText_t_utow }, + { 4524, 162, 16, 12, HTML_ShowToolTip_t_utow }, + { 4525, 162, 16, 12, HTML_UpdateToolTip_t_utow }, + { 4704, 162, 24, 20, SteamInventoryStartPurchaseResult_t_utow }, + { 5211, 162, 16, 12, RequestPlayersForGameProgressCallback_t_utow }, + { 5212, 162, 64, 56, RequestPlayersForGameResultCallback_t_utow }, + { 5213, 162, 24, 20, RequestPlayersForGameFinalResultCallback_t_utow }, + { 5214, 162, 24, 20, SubmitPlayerResultResultCallback_t_utow }, + { 5215, 162, 16, 12, EndGameResultCallback_t_utow }, + { 5301, 162, 280, 276, JoinPartyCallback_t_utow }, + { 5302, 162, 16, 12, CreateBeaconCallback_t_utow }, }; #endif const unsigned int callback_data_size = ARRAY_SIZE(callback_data); diff --git a/lsteamclient/unixlib_generated.h b/lsteamclient/unixlib_generated.h index eeb1897b..7740436b 100644 --- a/lsteamclient/unixlib_generated.h +++ b/lsteamclient/unixlib_generated.h @@ -4059,7 +4059,7 @@ struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionSteamID_p struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionClientName_params { struct u_iface u_iface; - const char *_ret; + struct u_buffer _ret; uint32_t unSessionID; }; @@ -22615,7 +22615,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementIcon_pa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementDisplayAttribute_params { struct u_iface u_iface; - const char *_ret; + struct u_buffer _ret; const char *pchName; const char *pchKey; }; @@ -22638,7 +22638,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetNumAchievements_pa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementName_params { struct u_iface u_iface; - const char *_ret; + struct u_buffer _ret; uint32_t iAchievement; }; @@ -22712,7 +22712,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_FindLeaderboard_param struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLeaderboardName_params { struct u_iface u_iface; - const char *_ret; + struct u_buffer _ret; uint64_t hSteamLeaderboard; }; @@ -33266,7 +33266,7 @@ struct ISteamFriends_SteamFriends017_GetProfileItemPropertyUint_params struct ISteamFriends_SteamFriends018_GetPersonaName_params { struct u_iface u_iface; - const char *_ret; + struct u_buffer _ret; }; struct ISteamFriends_SteamFriends018_GetPersonaState_params @@ -33307,7 +33307,7 @@ struct ISteamFriends_SteamFriends018_GetFriendPersonaState_params struct ISteamFriends_SteamFriends018_GetFriendPersonaName_params { struct u_iface u_iface; - const char *_ret; + struct u_buffer _ret; CSteamID steamIDFriend; }; @@ -33322,7 +33322,7 @@ struct ISteamFriends_SteamFriends018_GetFriendGamePlayed_params struct ISteamFriends_SteamFriends018_GetFriendPersonaNameHistory_params { struct u_iface u_iface; - const char *_ret; + struct u_buffer _ret; CSteamID steamIDFriend; int32_t iPersonaName; }; @@ -33337,7 +33337,7 @@ struct ISteamFriends_SteamFriends018_GetFriendSteamLevel_params struct ISteamFriends_SteamFriends018_GetPlayerNickname_params { struct u_iface u_iface; - const char *_ret; + struct u_buffer _ret; CSteamID steamIDPlayer; }; @@ -33357,7 +33357,7 @@ struct ISteamFriends_SteamFriends018_GetFriendsGroupIDByIndex_params struct ISteamFriends_SteamFriends018_GetFriendsGroupName_params { struct u_iface u_iface; - const char *_ret; + struct u_buffer _ret; int16_t friendsGroupID; }; @@ -33400,14 +33400,14 @@ struct ISteamFriends_SteamFriends018_GetClanByIndex_params struct ISteamFriends_SteamFriends018_GetClanName_params { struct u_iface u_iface; - const char *_ret; + struct u_buffer _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends018_GetClanTag_params { struct u_iface u_iface; - const char *_ret; + struct u_buffer _ret; CSteamID steamIDClan; }; @@ -33572,7 +33572,7 @@ struct ISteamFriends_SteamFriends018_ClearRichPresence_params struct ISteamFriends_SteamFriends018_GetFriendRichPresence_params { struct u_iface u_iface; - const char *_ret; + struct u_buffer _ret; CSteamID steamIDFriend; const char *pchKey; }; @@ -33587,7 +33587,7 @@ struct ISteamFriends_SteamFriends018_GetFriendRichPresenceKeyCount_params struct ISteamFriends_SteamFriends018_GetFriendRichPresenceKeyByIndex_params { struct u_iface u_iface; - const char *_ret; + struct u_buffer _ret; CSteamID steamIDFriend; int32_t iKey; }; @@ -33815,7 +33815,7 @@ struct ISteamFriends_SteamFriends018_BHasEquippedProfileItem_params struct ISteamFriends_SteamFriends018_GetProfileItemPropertyString_params { struct u_iface u_iface; - const char *_ret; + struct u_buffer _ret; CSteamID steamID; uint32_t itemType; uint32_t prop; diff --git a/lsteamclient/winISteamFriends.c b/lsteamclient/winISteamFriends.c index 5b1d34d5..ca2ee22e 100644 --- a/lsteamclient/winISteamFriends.c +++ b/lsteamclient/winISteamFriends.c @@ -10769,7 +10769,7 @@ const char * __thiscall winISteamFriends_SteamFriends018_GetPersonaName(struct w }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends018_GetPersonaName, ¶ms ); - return params._ret; + return get_unix_buffer( params._ret ); } uint32_t __thiscall winISteamFriends_SteamFriends018_GetPersonaState(struct w_iface *_this) @@ -10842,7 +10842,7 @@ const char * __thiscall winISteamFriends_SteamFriends018_GetFriendPersonaName(st }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends018_GetFriendPersonaName, ¶ms ); - return params._ret; + return get_unix_buffer( params._ret ); } int8_t __thiscall winISteamFriends_SteamFriends018_GetFriendGamePlayed(struct w_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) @@ -10868,7 +10868,7 @@ const char * __thiscall winISteamFriends_SteamFriends018_GetFriendPersonaNameHis }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends018_GetFriendPersonaNameHistory, ¶ms ); - return params._ret; + return get_unix_buffer( params._ret ); } int32_t __thiscall winISteamFriends_SteamFriends018_GetFriendSteamLevel(struct w_iface *_this, CSteamID steamIDFriend) @@ -10892,7 +10892,7 @@ const char * __thiscall winISteamFriends_SteamFriends018_GetPlayerNickname(struc }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends018_GetPlayerNickname, ¶ms ); - return params._ret; + return get_unix_buffer( params._ret ); } int32_t __thiscall winISteamFriends_SteamFriends018_GetFriendsGroupCount(struct w_iface *_this) @@ -10927,7 +10927,7 @@ const char * __thiscall winISteamFriends_SteamFriends018_GetFriendsGroupName(str }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends018_GetFriendsGroupName, ¶ms ); - return params._ret; + return get_unix_buffer( params._ret ); } int32_t __thiscall winISteamFriends_SteamFriends018_GetFriendsGroupMembersCount(struct w_iface *_this, int16_t friendsGroupID) @@ -11001,7 +11001,7 @@ const char * __thiscall winISteamFriends_SteamFriends018_GetClanName(struct w_if }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends018_GetClanName, ¶ms ); - return params._ret; + return get_unix_buffer( params._ret ); } const char * __thiscall winISteamFriends_SteamFriends018_GetClanTag(struct w_iface *_this, CSteamID steamIDClan) @@ -11013,7 +11013,7 @@ const char * __thiscall winISteamFriends_SteamFriends018_GetClanTag(struct w_ifa }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends018_GetClanTag, ¶ms ); - return params._ret; + return get_unix_buffer( params._ret ); } int8_t __thiscall winISteamFriends_SteamFriends018_GetClanActivityCounts(struct w_iface *_this, CSteamID steamIDClan, int32_t *pnOnline, int32_t *pnInGame, int32_t *pnChatting) @@ -11303,7 +11303,7 @@ const char * __thiscall winISteamFriends_SteamFriends018_GetFriendRichPresence(s TRACE("%p\n", _this); IsBadStringPtrA(pchKey, -1); STEAMCLIENT_CALL( ISteamFriends_SteamFriends018_GetFriendRichPresence, ¶ms ); - return params._ret; + return get_unix_buffer( params._ret ); } int32_t __thiscall winISteamFriends_SteamFriends018_GetFriendRichPresenceKeyCount(struct w_iface *_this, CSteamID steamIDFriend) @@ -11328,7 +11328,7 @@ const char * __thiscall winISteamFriends_SteamFriends018_GetFriendRichPresenceKe }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends018_GetFriendRichPresenceKeyByIndex, ¶ms ); - return params._ret; + return get_unix_buffer( params._ret ); } void __thiscall winISteamFriends_SteamFriends018_RequestFriendRichPresence(struct w_iface *_this, CSteamID steamIDFriend) @@ -11719,7 +11719,7 @@ const char * __thiscall winISteamFriends_SteamFriends018_GetProfileItemPropertyS }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends018_GetProfileItemPropertyString, ¶ms ); - return params._ret; + return get_unix_buffer( params._ret ); } uint32_t __thiscall winISteamFriends_SteamFriends018_GetProfileItemPropertyUint(struct w_iface *_this, CSteamID steamID, uint32_t itemType, uint32_t prop) diff --git a/lsteamclient/winISteamRemotePlay.c b/lsteamclient/winISteamRemotePlay.c index 3324c089..4ce8bc1e 100644 --- a/lsteamclient/winISteamRemotePlay.c +++ b/lsteamclient/winISteamRemotePlay.c @@ -316,7 +316,7 @@ const char * __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionClientName, ¶ms ); - return params._ret; + return get_unix_buffer( params._ret ); } uint32_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionClientFormFactor(struct w_iface *_this, uint32_t unSessionID) diff --git a/lsteamclient/winISteamUserStats.c b/lsteamclient/winISteamUserStats.c index 85d5534b..cc0f578a 100644 --- a/lsteamclient/winISteamUserStats.c +++ b/lsteamclient/winISteamUserStats.c @@ -5880,7 +5880,7 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_G IsBadStringPtrA(pchName, -1); IsBadStringPtrA(pchKey, -1); STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementDisplayAttribute, ¶ms ); - return params._ret; + return get_unix_buffer( params._ret ); } int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_IndicateAchievementProgress(struct w_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) @@ -5918,7 +5918,7 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_G }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementName, ¶ms ); - return params._ret; + return get_unix_buffer( params._ret ); } uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_RequestUserStats(struct w_iface *_this, CSteamID steamIDUser) @@ -6043,7 +6043,7 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_G }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLeaderboardName, ¶ms ); - return params._ret; + return get_unix_buffer( params._ret ); } int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLeaderboardEntryCount(struct w_iface *_this, uint64_t hSteamLeaderboard)