mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 06:53:43 +00:00
23 lines
377 B
C++
23 lines
377 B
C++
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "VirtualDirectory.h"
|
|
|
|
class PLPasStr;
|
|
|
|
namespace PortabilityLayer
|
|
{
|
|
class FileBrowserUI
|
|
{
|
|
public:
|
|
enum Mode
|
|
{
|
|
Mode_Save,
|
|
Mode_Open,
|
|
};
|
|
|
|
static bool Prompt(Mode mode, VirtualDirectory_t dirID, char *path, size_t &outPathLength, size_t pathCapacity, const PLPasStr &initialFileName, const PLPasStr &promptText);
|
|
};
|
|
}
|