summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2024-12-12 22:51:40 +0300
committerGeorge Hazan <george.hazan@gmail.com>2024-12-12 22:51:40 +0300
commit380926ccdcf81adfcdad0b104253b361dd544754 (patch)
tree29a0f06fb191d8c076f9d1fecd9bf643b1e9b94c
parent9b78138a26db24fd7759ce520742b382db69b81d (diff)
compilation fix
-rw-r--r--protocols/Steam/Steam.vcxproj8
-rw-r--r--protocols/Steam/Steam.vcxproj.filters12
-rw-r--r--protocols/Steam/src/protobuf-c/steammessages_auth.steamclient.pb-c.h10
-rw-r--r--protocols/Steam/src/protobuf-c/steammessages_chat.steamclient.pb-c.h8
-rw-r--r--protocols/Steam/src/protobuf-c/steammessages_clientserver_friends.pb-c.h8
-rw-r--r--protocols/Steam/src/protobuf-c/steammessages_unified_base.steamclient.pb-c.h2
6 files changed, 20 insertions, 28 deletions
diff --git a/protocols/Steam/Steam.vcxproj b/protocols/Steam/Steam.vcxproj
index 9d59b43add..ce3c8d4cc9 100644
--- a/protocols/Steam/Steam.vcxproj
+++ b/protocols/Steam/Steam.vcxproj
@@ -39,6 +39,12 @@
<ClCompile Include="src\protobuf-c\steammessages_base.pb-c.cpp">
<PrecompiledHeader>NotUsing</PrecompiledHeader>
</ClCompile>
+ <ClCompile Include="src\protobuf-c\steammessages_chat.steamclient.pb-c.cpp">
+ <PrecompiledHeader>NotUsing</PrecompiledHeader>
+ </ClCompile>
+ <ClCompile Include="src\protobuf-c\steammessages_clientserver_friends.pb-c.cpp">
+ <PrecompiledHeader>NotUsing</PrecompiledHeader>
+ </ClCompile>
<ClCompile Include="src\protobuf-c\steammessages_clientserver_login.pb-c.cpp">
<PrecompiledHeader>NotUsing</PrecompiledHeader>
</ClCompile>
@@ -79,6 +85,8 @@
<ClInclude Include="src\protobuf-c\protobuf-c.h" />
<ClInclude Include="src\protobuf-c\steammessages_auth.steamclient.pb-c.h" />
<ClInclude Include="src\protobuf-c\steammessages_base.pb-c.h" />
+ <ClInclude Include="src\protobuf-c\steammessages_chat.steamclient.pb-c.h" />
+ <ClInclude Include="src\protobuf-c\steammessages_clientserver_friends.pb-c.h" />
<ClInclude Include="src\protobuf-c\steammessages_clientserver_login.pb-c.h" />
<ClInclude Include="src\protobuf-c\steammessages_unified_base.steamclient.pb-c.h" />
<ClInclude Include="src\resource.h" />
diff --git a/protocols/Steam/Steam.vcxproj.filters b/protocols/Steam/Steam.vcxproj.filters
index 1f4fba821d..13f6be78d9 100644
--- a/protocols/Steam/Steam.vcxproj.filters
+++ b/protocols/Steam/Steam.vcxproj.filters
@@ -78,6 +78,12 @@
<ClCompile Include="src\protobuf-c\enums.pb-c.cpp">
<Filter>Source Files\protobuf</Filter>
</ClCompile>
+ <ClCompile Include="src\protobuf-c\steammessages_chat.steamclient.pb-c.cpp">
+ <Filter>Source Files\protobuf</Filter>
+ </ClCompile>
+ <ClCompile Include="src\protobuf-c\steammessages_clientserver_friends.pb-c.cpp">
+ <Filter>Source Files\protobuf</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\resource.h">
@@ -149,6 +155,12 @@
<ClInclude Include="src\proto.h">
<Filter>Source Files\protobuf</Filter>
</ClInclude>
+ <ClInclude Include="src\protobuf-c\steammessages_chat.steamclient.pb-c.h">
+ <Filter>Source Files\protobuf</Filter>
+ </ClInclude>
+ <ClInclude Include="src\protobuf-c\steammessages_clientserver_friends.pb-c.h">
+ <Filter>Source Files\protobuf</Filter>
+ </ClInclude>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="res\Resource.rc">
diff --git a/protocols/Steam/src/protobuf-c/steammessages_auth.steamclient.pb-c.h b/protocols/Steam/src/protobuf-c/steammessages_auth.steamclient.pb-c.h
index c7c0f7e091..34bc57aba1 100644
--- a/protocols/Steam/src/protobuf-c/steammessages_auth.steamclient.pb-c.h
+++ b/protocols/Steam/src/protobuf-c/steammessages_auth.steamclient.pb-c.h
@@ -182,14 +182,6 @@ extern const ProtobufCServiceDescriptor cloud_gaming__descriptor;
extern "C" void message_init_generic(const ProtobufCMessageDescriptor * desc, ProtobufCMessage * message);
-struct ProtobufCppMessage : public ProtobufCMessage
-{
- ProtobufCppMessage(const ProtobufCMessageDescriptor &descr)
- {
- message_init_generic(&descr, this);
- }
-};
-
struct CAuthenticationGetPasswordRSAPublicKeyRequest : public ProtobufCppMessage
{
CAuthenticationGetPasswordRSAPublicKeyRequest() :
@@ -241,7 +233,6 @@ struct CAuthenticationBeginAuthSessionViaQRRequest : public ProtobufCppMessage
EAuthTokenPlatformType platform_type;
CAuthenticationDeviceDetails *device_details;
char *website_id;
-extern char cauthentication__begin_auth_session_via_qr__request__website_id__default_value[];
};
struct CAuthenticationAllowedConfirmation : public ProtobufCppMessage
@@ -298,7 +289,6 @@ struct CAuthenticationBeginAuthSessionViaCredentialsRequest : public ProtobufCpp
uint32_t language;
protobuf_c_boolean has_qos_level;
int32_t qos_level;
-extern char cauthentication__begin_auth_session_via_credentials__request__website_id__default_value[];
};
struct CAuthenticationBeginAuthSessionViaCredentialsResponse : public ProtobufCppMessage
diff --git a/protocols/Steam/src/protobuf-c/steammessages_chat.steamclient.pb-c.h b/protocols/Steam/src/protobuf-c/steammessages_chat.steamclient.pb-c.h
index ce671c63db..fcb73bb19d 100644
--- a/protocols/Steam/src/protobuf-c/steammessages_chat.steamclient.pb-c.h
+++ b/protocols/Steam/src/protobuf-c/steammessages_chat.steamclient.pb-c.h
@@ -402,14 +402,6 @@ extern const ProtobufCServiceDescriptor chat_usability_client__descriptor;
extern "C" void message_init_generic(const ProtobufCMessageDescriptor * desc, ProtobufCMessage * message);
-struct ProtobufCppMessage : public ProtobufCMessage
-{
- ProtobufCppMessage(const ProtobufCMessageDescriptor &descr)
- {
- message_init_generic(&descr, this);
- }
-};
-
struct CChatRequestFriendPersonaStatesRequest : public ProtobufCppMessage
{
CChatRequestFriendPersonaStatesRequest() :
diff --git a/protocols/Steam/src/protobuf-c/steammessages_clientserver_friends.pb-c.h b/protocols/Steam/src/protobuf-c/steammessages_clientserver_friends.pb-c.h
index 0ccd198744..4e42b9283b 100644
--- a/protocols/Steam/src/protobuf-c/steammessages_clientserver_friends.pb-c.h
+++ b/protocols/Steam/src/protobuf-c/steammessages_clientserver_friends.pb-c.h
@@ -106,14 +106,6 @@ extern const ProtobufCMessageDescriptor cmsg_client_emoticon_list__effect__descr
extern "C" void message_init_generic(const ProtobufCMessageDescriptor * desc, ProtobufCMessage * message);
-struct ProtobufCppMessage : public ProtobufCMessage
-{
- ProtobufCppMessage(const ProtobufCMessageDescriptor &descr)
- {
- message_init_generic(&descr, this);
- }
-};
-
struct CMsgClientFriendMsg : public ProtobufCppMessage
{
CMsgClientFriendMsg() :
diff --git a/protocols/Steam/src/protobuf-c/steammessages_unified_base.steamclient.pb-c.h b/protocols/Steam/src/protobuf-c/steammessages_unified_base.steamclient.pb-c.h
index aae3a2e833..6347b969d1 100644
--- a/protocols/Steam/src/protobuf-c/steammessages_unified_base.steamclient.pb-c.h
+++ b/protocols/Steam/src/protobuf-c/steammessages_unified_base.steamclient.pb-c.h
@@ -14,8 +14,6 @@ PROTOBUF_C__BEGIN_DECLS
# error This file was generated by an older version of protoc-c which is incompatible with your libprotobuf-c headers. Please regenerate this file with a newer version of protoc-c.
#endif
-#include "descriptor.pb-c.h"
-
struct NoResponse;