mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-09 18:07:00 -06:00
30 lines
1020 B
Markdown
30 lines
1020 B
Markdown
This is [Jame Hoo's Easy 7-Zip](http://www.e7z.org/) (Additional Ergonomic & Useful GUI Enhancements and Improvements) , rebased on [7-zip-zstd](https://github.com/mcmilk/7-Zip-zstd). This is based on [glachancecmaisonneuve's previous effort of rebasing it on 19.00](https://github.com/glachancecmaisonneuve/Easy7-Zip), though some original features from James Hoo are missing.
|
|
|
|
### Download
|
|
|
|
Go to [GitHub Actions](https://github.com/shunf4/Easy7-Zip-SF/actions) and download the artifact of the latest run.
|
|
|
|
If the artifact gets expired, you may need to manually trigger it again somehow.
|
|
|
|
### Related
|
|
|
|
- http://www.e7z.org/
|
|
- https://github.com/glachancecmaisonneuve/Easy7-Zip
|
|
- https://github.com/mcmilk/7-Zip-zstd
|
|
- https://github.com/treysis/Easy-7-Zip-ZS (Unused)
|
|
|
|
### DevNote
|
|
|
|
print message in a dialog
|
|
|
|
```
|
|
#include <winuser.h>
|
|
#include <strsafe.h>
|
|
|
|
{
|
|
char a[100] {};
|
|
StringCbPrintfA(a, 100, "index=%u SoleFolderIndex=%lld", _index, SoleFolderIndex);
|
|
MessageBoxA(0, a, "AAA", MB_ICONERROR);
|
|
}
|
|
```
|