mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 02:31:48 +00: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
|