This commit is contained in:
睿 安
2026-01-25 23:46:14 +08:00
parent 2a2a3d68d8
commit 37e7d278bd
727 changed files with 193377 additions and 7 deletions

25
demo/kugou/extractx86.bat Normal file
View File

@@ -0,0 +1,25 @@
@echo off
setlocal
set OUTDIR=%1
set MARKER_FILE=%OUTDIR%\dll_marker.txt
set SCRIPT_DIR=%~dp0
if exist "%MARKER_FILE%" (
echo DLL already extracted. Skipping.
goto :EOF
)
echo Extracting dll.zip to %OUTDIR%...
"%SCRIPT_DIR%7z.exe" x "%SCRIPT_DIR%dllx86.zip" -o"%OUTDIR%" -aoa -y
if errorlevel 1 (
echo Extraction failed!
exit /b 1
)
echo extracted > "%MARKER_FILE%"
echo Extraction complete.
endlocal