1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Indicate whether client is running on apple shitware.

This commit is contained in:
Bartosz Taudul
2019-06-13 14:05:15 +02:00
parent e05669a80f
commit ab4e99229d
2 changed files with 9 additions and 1 deletions
+2 -1
View File
@@ -9,7 +9,7 @@
namespace tracy
{
enum : uint32_t { ProtocolVersion = 7 };
enum : uint32_t { ProtocolVersion = 8 };
using lz4sz_t = uint32_t;
@@ -64,6 +64,7 @@ struct WelcomeMessage
uint64_t resolution;
uint64_t epoch;
uint8_t onDemand;
uint8_t isApple;
char programName[WelcomeMessageProgramNameSize];
char hostInfo[WelcomeMessageHostInfoSize];
};