mirror of
https://github.com/wolfpld/tracy.git
synced 2026-09-13 13:58:12 +00:00
19 lines
247 B
C++
19 lines
247 B
C++
#ifndef __TRACYSTACKFRAMES_HPP__
|
|
#define __TRACYSTACKFRAMES_HPP__
|
|
|
|
namespace tracy
|
|
{
|
|
|
|
struct StringMatch
|
|
{
|
|
const char* str;
|
|
size_t len;
|
|
};
|
|
|
|
extern const char** s_tracyStackFrames;
|
|
extern const StringMatch* s_tracySkipSubframes;
|
|
|
|
}
|
|
|
|
#endif
|