From f70b62c23fc0818c1e84b297cf4f3917b95b9d14 Mon Sep 17 00:00:00 2001 From: gcontini <1121667+gcontini@users.noreply.github.com> Date: 周六, 30 11月 2019 19:16:45 +0800 Subject: [PATCH] try wine64 for mingw build --- src/library/base/FileUtils.hpp | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/library/base/FileUtils.hpp b/src/library/base/FileUtils.hpp index e5ee3e1..e6f9e9e 100644 --- a/src/library/base/FileUtils.hpp +++ b/src/library/base/FileUtils.hpp @@ -2,18 +2,20 @@ * FileUtils.h * * Created on: Apr 8, 2019 - * + * */ #ifndef FILEUTILS_H_ #define FILEUTILS_H_ #include <string> #include <vector> +#include "EventRegistry.h" namespace license { -std::vector<std::string> filter_existing_files(const std::vector<std::string>& fileList); +std::vector<std::string> filter_existing_files(const std::vector<std::string>& fileList,EventRegistry& registry, const char* extraData); std::string get_file_contents(const char *filename,size_t max_size); +std::string remove_extension(const std::string& path); } /* namespace license */ -- Gitblit v1.9.1