mirror of
https://github.com/wolfpld/tracy.git
synced 2025-03-20 07:40:02 +08:00
Add protocol -> version mapping table.
This commit is contained in:
@@ -0,0 +1,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
|
||||
Reference in New Issue
Block a user