Nyagamon / HCADecoder

HCA Decoder
MIT License
119 stars 30 forks source link

Windows以外のサポート #2

Closed nnn1590 closed 5 years ago

nnn1590 commented 5 years ago

Windows以外のプラットフォームのサポートが欲しいです 一応パッチ作ってみました(安全性未確認)

git diff ```diff diff --git a/Source.cpp b/Source.cpp index d43181e..77650c4 100644 --- a/Source.cpp +++ b/Source.cpp @@ -2,9 +2,12 @@ //-------------------------------------------------- // インクルード //-------------------------------------------------- +#ifdef _WIN32 #define WIN32_LEAN_AND_MEAN -#include +#include +#endif #include +#include #include "clHCA.h" //-------------------------------------------------- @@ -76,7 +79,11 @@ int main(int argc, char *argv[]) { bool info = false; bool decrypt = false; for (int i = 1; i

ちなみにREADME.mdには復号化.batが記載されていますが、 gitリポジトリに存在せず、Releasesの配布には存在するのでリポジトリに追加していただければ幸いです

segfault-bilibili commented 2 years ago

https://github.com/y2361547758/hca.js (my work-in-progress fork: https://github.com/segfault-bilibili/hca.js)

https://github.com/OpenCGSS/DereTore