mirror of
https://github.com/HavocFramework/Havoc
synced 2026-06-08 11:13:29 +00:00
46 lines
660 B
C++
46 lines
660 B
C++
#ifndef HAVOC_BASE_HPP
|
|
#define HAVOC_BASE_HPP
|
|
|
|
#include <spdlog/spdlog.h>
|
|
|
|
#include <QString>
|
|
#include <QFile>
|
|
#include <QIcon>
|
|
#include <QMessageBox>
|
|
#include <QDateTime>
|
|
#include <QTime>
|
|
|
|
auto FileRead(
|
|
const QString& FilePath
|
|
) -> QByteArray;
|
|
|
|
auto MessageBox(
|
|
QString Title,
|
|
QString Text,
|
|
QMessageBox::Icon Icon
|
|
) -> void;
|
|
|
|
auto WinVersionIcon(
|
|
QString OSVersion,
|
|
bool High
|
|
) -> QIcon;
|
|
|
|
auto WinVersionImage(
|
|
QString OSVersion,
|
|
bool High
|
|
) -> QImage;
|
|
|
|
auto GrayScale(
|
|
QImage image
|
|
) -> QImage;
|
|
|
|
auto CurrentDateTime(
|
|
void
|
|
) -> QString;
|
|
|
|
auto CurrentTime(
|
|
void
|
|
) -> QString;
|
|
|
|
#endif
|