mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
19 lines
389 B
C++
19 lines
389 B
C++
#ifndef __TRACYFILESELECTOR_HPP__
|
|
#define __TRACYFILESELECTOR_HPP__
|
|
|
|
#include <functional>
|
|
|
|
namespace tracy::Fileselector
|
|
{
|
|
|
|
void Init();
|
|
void Shutdown();
|
|
bool HasFailed();
|
|
|
|
void OpenFile( const char* ext, const char* desc, const std::function<void(const char*)>& callback );
|
|
void SaveFile( const char* ext, const char* desc, const std::function<void(const char*)>& callback );
|
|
|
|
}
|
|
|
|
#endif
|