mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 02:31:48 +00:00
21 lines
265 B
C++
21 lines
265 B
C++
|
#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
|