Skip to content

Commit 1fde20f

Browse files
committed
Merge bitcoin/bitcoin#28099: contrib: move user32.dll from bitcoind.exe libs
8c38509 contrib: move user32.dll from bitcoind.exe libs (fanquake) Pull request description: The user interface library is no-longer needed by `bitcoind.exe`, or utils, only `bitcoin-qt.exe`. Add missing doc. ACKs for top commit: hebasto: ACK 8c38509, I've verified imported libraries on a Windows machine with the `dumpbin /imports` command. Tree-SHA512: f752a5b807341c87320523f4e7c564c8acdbfc1313054a684844035102a7c4695d34cfefb0c6904f3151b2dfdcb54d6ea243c570deceeda30345944251e4c513
2 parents 355bbcb + 8c38509 commit 1fde20f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

contrib/devtools/symbol-check.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -157,21 +157,21 @@
157157
'KERNEL32.dll', # win32 base APIs
158158
'msvcrt.dll', # C standard library for MSVC
159159
'SHELL32.dll', # shell API
160-
'USER32.dll', # user interface
161160
'WS2_32.dll', # sockets
162161
# bitcoin-qt only
163162
'dwmapi.dll', # desktop window manager
164163
'GDI32.dll', # graphics device interface
165164
'IMM32.dll', # input method editor
166-
'NETAPI32.dll',
165+
'NETAPI32.dll', # network management
167166
'ole32.dll', # component object model
168167
'OLEAUT32.dll', # OLE Automation API
169168
'SHLWAPI.dll', # light weight shell API
170-
'USERENV.dll',
171-
'UxTheme.dll',
169+
'USER32.dll', # user interface
170+
'USERENV.dll', # user management
171+
'UxTheme.dll', # visual style
172172
'VERSION.dll', # version checking
173173
'WINMM.dll', # WinMM audio API
174-
'WTSAPI32.dll',
174+
'WTSAPI32.dll', # Remote Desktop
175175
}
176176

177177
def check_version(max_versions, version, arch) -> bool:

0 commit comments

Comments
 (0)