Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TracyProtoHistory.hpp « server - github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 77b14e755b4bad7dcf2b40f01f7aff90ff38bc5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef __TRACYPROTOHISTORY_HPP__
#define __TRACYPROTOHISTORY_HPP__

#include <stdint.h>

namespace tracy
{

struct ProtocolHistory_t
{
    uint32_t protocol;
    uint32_t minVer;
    uint32_t maxVer;
};

extern const ProtocolHistory_t* ProtocolHistory;

}

#endif