CI updates and minor cleanups

This commit is contained in:
Markus F.X.J. Oberhumer
2024-04-01 20:31:05 +02:00
parent 70b20d7d89
commit 24f3824524
29 changed files with 176 additions and 128 deletions
+5 -1
View File
@@ -28,9 +28,10 @@
#pragma once
struct Options;
extern Options *opt; // global options, see class PackMaster for per-file local options
#define options_t Options // old name
extern Options *opt; // global options, see class PackMaster for per-file local options
#if WITH_THREADS
extern std::mutex opt_lock_mutex;
#endif
@@ -177,6 +178,9 @@ struct Options final {
int strip_relocs;
const char *keep_resource;
} win32_pe;
private: // UPX conventions
UPX_CXX_DISABLE_NEW_DELETE(Options)
};
/* vim:set ts=4 sw=4 et: */