Skip to content

Commit 6f9afd2

Browse files
committed
feat: add dll deps for Windows
1 parent 19020f7 commit 6f9afd2

32 files changed

+31
-0
lines changed

dll_deps/KernelBase.dll

2.65 MB
Binary file not shown.

dll_deps/SHCore.dll

665 KB
Binary file not shown.

dll_deps/advapi32.dll

650 KB
Binary file not shown.

dll_deps/bcryptprimitives.dll

524 KB
Binary file not shown.

dll_deps/cfgmgr32.dll

286 KB
Binary file not shown.

dll_deps/combase.dll

3.22 MB
Binary file not shown.

dll_deps/crypt32.dll

1.27 MB
Binary file not shown.

dll_deps/cryptsp.dll

78.2 KB
Binary file not shown.

dll_deps/gdi32.dll

144 KB
Binary file not shown.

dll_deps/gdi32full.dll

1.58 MB
Binary file not shown.

dll_deps/kernel.appcore.dll

57.5 KB
Binary file not shown.

dll_deps/kernel32.dll

710 KB
Binary file not shown.

dll_deps/msasn1.dll

61.6 KB
Binary file not shown.

dll_deps/msvcp_win.dll

624 KB
Binary file not shown.

dll_deps/msvcrt.dll

623 KB
Binary file not shown.

dll_deps/ntdll.dll

1.91 MB
Binary file not shown.

dll_deps/powrprof.dll

285 KB
Binary file not shown.

dll_deps/profapi.dll

107 KB
Binary file not shown.

dll_deps/rpcrt4.dll

1.1 MB
Binary file not shown.

dll_deps/sechost.dll

596 KB
Binary file not shown.

dll_deps/secur32.dll

27 KB
Binary file not shown.

dll_deps/shell32.dll

6.94 MB
Binary file not shown.

dll_deps/shlwapi.dll

321 KB
Binary file not shown.

dll_deps/ucrtbase.dll

1000 KB
Binary file not shown.

dll_deps/ucrtbased.dll

1.77 MB
Binary file not shown.

dll_deps/umpdc.dll

53.7 KB
Binary file not shown.

dll_deps/user32.dll

1.58 MB
Binary file not shown.

dll_deps/vcruntime140d.dll

157 KB
Binary file not shown.

dll_deps/win32u.dll

124 KB
Binary file not shown.

dll_deps/windows.storage.dll

7.52 MB
Binary file not shown.

dll_deps/ws2_32.dll

433 KB
Binary file not shown.

resolve_deps.sh

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
cp 'C:\Windows\System32\ntdll.dll' . &&
2+
cp 'C:\Windows\System32\kernel32.dll' . &&
3+
cp 'C:\Windows\System32\KernelBase.dll' . &&
4+
cp 'C:\Windows\System32\advapi32.dll' . &&
5+
cp 'C:\Windows\System32\msvcrt.dll' . &&
6+
cp 'C:\Windows\System32\sechost.dll' . &&
7+
cp 'C:\Windows\System32\rpcrt4.dll' . &&
8+
cp 'C:\Windows\System32\crypt32.dll' . &&
9+
cp 'C:\Windows\System32\ucrtbase.dll' . &&
10+
cp 'C:\Windows\System32\msasn1.dll' . &&
11+
cp 'C:\Windows\System32\secur32.dll' . &&
12+
cp 'C:\Windows\System32\user32.dll' . &&
13+
cp 'C:\Windows\System32\win32u.dll' . &&
14+
cp 'C:\Windows\System32\gdi32.dll' . &&
15+
cp 'C:\Windows\System32\gdi32full.dll' . &&
16+
cp 'C:\Windows\System32\msvcp_win.dll' . &&
17+
cp 'C:\Windows\System32\shell32.dll' . &&
18+
cp 'C:\Windows\System32\cfgmgr32.dll' . &&
19+
cp 'C:\Windows\System32\SHCore.dll' . &&
20+
cp 'C:\Windows\System32\combase.dll' . &&
21+
cp 'C:\Windows\System32\bcryptprimitives.dll' . &&
22+
cp 'C:\Windows\System32\windows.storage.dll' . &&
23+
cp 'C:\Windows\System32\profapi.dll' . &&
24+
cp 'C:\Windows\System32\powrprof.dll' . &&
25+
cp 'C:\Windows\System32\umpdc.dll' . &&
26+
cp 'C:\Windows\System32\shlwapi.dll' . &&
27+
cp 'C:\Windows\System32\kernel.appcore.dll' . &&
28+
cp 'C:\Windows\System32\cryptsp.dll' . &&
29+
cp 'C:\Windows\System32\vcruntime140d.dll' . &&
30+
cp 'C:\Windows\System32\ucrtbased.dll' . &&
31+
cp 'C:\Windows\System32\ws2_32.dll' .

0 commit comments

Comments
 (0)