tracy/server/TracyStorage.hpp

15 lines
249 B
C++
Raw Normal View History

2018-08-29 21:22:44 +00:00
#ifndef __TRACYSTORAGE_HPP__
#define __TRACYSTORAGE_HPP__
2019-07-26 20:46:51 +00:00
#include <stdint.h>
2018-08-29 21:22:44 +00:00
namespace tracy
{
const char* GetSavePath( const char* file );
2019-07-26 20:46:51 +00:00
const char* GetSavePath( const char* program, uint64_t time, const char* file, bool create );
2018-08-29 21:22:44 +00:00
}
#endif