SVNからのミラー

This commit is contained in:
2026-01-21 04:47:40 +09:00
commit 81a90a99e1
47 changed files with 2619 additions and 0 deletions

18
src/vulnpass.hh Normal file
View File

@@ -0,0 +1,18 @@
#ifndef VULNPASS_HH
#define VULNPASS_HH
#include <FL/Fl_Button.H>
#include "dialog.hh"
class Vulnpass : public Dialog {
public:
Fl_Button *btn = nullptr;
static void dialog_cb(Fl_Widget *w, void *);
void vuln_cb(Fl_Widget *, void *);
bool exec();
void showRes();
};
#endif