tracy/server/TracyProtoHistory.hpp

21 lines
265 B
C++
Raw Normal View History

2022-07-12 22:44:02 +00:00
#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