mirror of
https://github.com/wolfpld/tracy.git
synced 2025-03-20 07:40:02 +08:00
18 lines
281 B
C++
18 lines
281 B
C++
#ifndef __TRACYFILESELECTOR_HPP__
|
|
#define __TRACYFILESELECTOR_HPP__
|
|
|
|
#include <string>
|
|
|
|
namespace tracy::Fileselector
|
|
{
|
|
|
|
void Init();
|
|
void Shutdown();
|
|
|
|
std::string OpenFile( const char* ext, const char* desc );
|
|
std::string SaveFile( const char* ext, const char* desc );
|
|
|
|
}
|
|
|
|
#endif
|