mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
15 lines
249 B
C++
15 lines
249 B
C++
#ifndef __TRACYSTORAGE_HPP__
|
|
#define __TRACYSTORAGE_HPP__
|
|
|
|
#include <stdint.h>
|
|
|
|
namespace tracy
|
|
{
|
|
|
|
const char* GetSavePath( const char* file );
|
|
const char* GetSavePath( const char* program, uint64_t time, const char* file, bool create );
|
|
|
|
}
|
|
|
|
#endif
|