This repository has been archived on 2026-05-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
SimPas1/main.hh
2026-01-21 04:47:40 +09:00

25 lines
562 B
C++

#ifndef MAIN_HH
#define MAIN_HH
#include <vector>
#include <string>
extern std::vector<std::string> fullpaths;
extern std::vector<std::string> dispaths;
extern int browseId;
extern bool isPassHidden;
extern std::string realpass;
class Fl_Text_Display;
class Fl_Text_Buffer;
extern Fl_Text_Display *textview;
extern Fl_Text_Buffer *textbuf;
void browse(std::string &path, bool isNew);
void clearpaths(bool isReset, std::string &path);
void updatelist();
void scandir(const std::string& dir, const std::string& root, std::vector<std::string>& paths);
#endif