Files
tdkpin/original/IMPORT_RECONSTRUCTION.tsv
ddidderr 8b99e9607c feat(reconstruction): complete binary-backed C recovery
Replace the partial mechanics transcriptions with a separate, readable C11
reconstruction of the complete Win16 image while preserving the original raw
Ghidra export as immutable evidence. Cover all ordinary and overlapping entry
points, Borland runtime behavior, Win16 imports, segmented data, callbacks,
resources, indirect control flow, physics, rendering, persistence, and
startup/shutdown lifecycles.

Add deterministic extraction and audit tooling plus address-linked ledgers for
functions, imports, DGROUP ranges and objects, relocations, resources, and
callbacks. The final gate records zero raw, partial, restored, unknown,
blocked, or unclassified required units. Keep the semantic-fidelity boundary
explicit: the portable C is not claimed to reproduce a byte-identical Borland
NE build.

Add strict focused harnesses for every reconstructed C unit, exact resource
round-trip checks, and a 16-bit Borland Real48 reference probe. No Rust source
or Cargo metadata is changed in this phase.

Test Plan:
- `bash original/tools/test_reconstructed_c.sh` -- passed
- `bash original/tools/probe_real48_reference.sh` -- passed bit-for-bit
- `python3 original/tools/audit_reconstruction.py --require-complete` -- passed
- `git diff --cached --check` -- passed
- `git diff HEAD -- '*.rs' Cargo.toml Cargo.lock` -- empty
2026-08-23 16:41:17 +02:00

118 KiB

1addresslibraryimport_namestack_purge_bytescall_sitesstatusstageprototypeevidencenotes
21228:0000KERNELGETVERSION02verifiedbinary-reviewedpascal16 dword GetVersion()disassembly 1000:fdb0-fdf2 and 1010:05ad-05c9; Wine 11.15 KERNEL ordinal 3; program-entry and multimedia-startup testsBoth call sites take no arguments; the NE entry preserves DX:AX while the multimedia unit stores AX only, and both decode low-byte major/high-byte minor exactly.
31228:0004KERNELGLOBALALLOC63verifiedbinary-reviewedpascal16 -ret16 GlobalAlloc(word long)Wine 11.15 ordinal 15 prototype; call sites 1008:15c7, 1018:01dc, and 1020:0222; focused global-memory, thunk-pool, and heap testsAll calls have exact flags/uint32 byte order, handle use, and failure behavior represented; uses are application locked blocks, 256-byte executable thunk pools, and Borland heap blocks.
41228:0008KERNELGLOBALFREE22verifiedbinary-reviewedpascal16 -ret16 GlobalFree(word)Wine 11.15 ordinal 17 prototype; call sites 1008:15e7 and 1020:035b; reconstructed/tests/test_global_memory.c and test_heap_paths.cBoth calls pass a GlobalHandle-derived HGLOBAL after GlobalUnlock and ignore the returned handle exactly.
51228:000cKERNELGLOBALLOCK23verifiedbinary-reviewedpascal16 GlobalLock(word)Wine 11.15 ordinal 18 prototype; call sites 1008:15c7, 1018:01dc, and 1020:0222; focused global-memory, thunk-pool, and heap testsAll calls pass the immediately returned HGLOBAL and preserve the resulting 16:16 pointer, including the unguarded thunk-pool lock and guarded Borland allocator path.
61228:0010KERNELGLOBALUNLOCK25verifiedbinary-reviewedpascal16 -ret16 GlobalUnlock(word)Wine 11.15 KERNEL ordinal 19 prototype; call sites 1008:10c3,139c,15ab,15f6 and 1020:0356; focused sound/palette/bitmap/global-memory/heap testsAll five calls are verified: three loaded-resource handles after copy/use and two GlobalHandle-derived allocations before GlobalFree; every BOOL16 return is ignored.
71228:0014KERNELGLOBALHANDLE22verifiedbinary-reviewedpascal16 GlobalHandle(word)Wine 11.15 ordinal 21 prototype; call sites 1008:15ef and 1020:034b; reconstructed/tests/test_global_memory.c and test_heap_paths.cBoth calls pass only the selector half of a far pointer; zero handles suppress freeing and nonzero handles feed the reviewed unlock/free sequence.
81228:0018KERNELGLOBALCOMPACT41verifiedcallsite-reviewedpascal16 GlobalCompact(long)Wine wine-11.15 krnl386.exe16.spec line 28; disassembly 1020:019a-01c5The sole call passes uint32 zero, preserves a high-word nonzero result, otherwise compares the low word with local free-byte counts.
91228:001cKERNELWAITEVENT21verifiedbinary-reviewedpascal16 -ret16 WaitEvent(word)disassembly 1020:0023-002a; Wine 11.15 KERNEL ordinal 30 prototype; reconstructed/tests/test_borland_startup.cSole call pushes literal zero before startup InitApp; no return value is consumed, and ordering plus argument are tested.
101228:0020KERNELGETCURRENTTASK02verifiedbinary-reviewedpascal16 GetCurrentTask()Wine 11.15 KERNEL ordinal 36 prototype; call sites 1010:008e and 1010:0327; reconstructed/tests/test_multimedia.cFinalizer passes the task to CTL3DUNREGISTER; loader passes it to CTL3DREGISTER. Both dynamic targets, returns, guards, and cleanup are verified.
111228:0024KERNELGETMODULEHANDLE41verifiedbinary-reviewedpascal16 GetModuleHandle(segstr)Wine 11.15 KERNEL ordinal 47 prototype; sole call at 1010:013e; reconstructed/tests/test_multimedia.cThe sole call passes the original far module-name argument; its HINSTANCE16 feeds GetModuleFileName for the fourth CTL3D search location.
121228:0028KERNELGETMODULEFILENAME83verifiedbinary-reviewedpascal16 -ret16 GetModuleFileName(HINSTANCE16 segptr uint16)disassembly call sites 1008:25ca, 1010:0148, 1020:084c; Wine 11.15 KERNEL ordinal 49; focused TPWinCrt, multimedia, and command-line testsAll three call sites have exact module, far-buffer, maximum-size, return-use, and in-place follow-up semantics represented.
131228:002cKERNELGETPROCADDRESS611verifiedbinary-reviewedpascal16 GetProcAddress(word str)Wine 11.15 KERNEL ordinal 50 prototype; eleven call sites 1010:0238-031b; reconstructed/tests/test_multimedia.cAll calls pass the loaded HINSTANCE16 and exact ordered CTL3D names; far returns populate slots 0-10, except legacy Windows deliberately zeros slot 8 without calling the import.
141228:0030KERNELMAKEPROCINSTANCE61verifiedbinary-reviewedpascal16 MakeProcInstance(segptr word)Wine 11.15 ordinal 51 prototype; sole call at 1018:1ac7; relocation to 1018:0133; reconstructed/tests/test_application.cThe sole call passes the relocated bound-dispatch procedure and current HINSTANCE16, then stores the returned far proc instance in 1028:0672/0674.
151228:0034KERNELFREEPROCINSTANCE41verifiedbinary-reviewedpascal16 -ret16 FreeProcInstance(segptr)Wine 11.15 ordinal 52 prototype; sole call at 1018:1b15; reconstructed/tests/test_application.cThe sole call releases exactly the stored bound-dispatch proc instance before root/application allocation destruction; return is ignored.
161228:0038KERNELFINDRESOURCE103verifiedbinary-reviewedpascal16 -ret16 FindResource(word str str)Wine 11.15 KERNEL ordinal 60 prototype; call sites 1008:1061,133c,14b3; sound/palette/bitmap harnessesAll calls pass the current HINSTANCE16, exact name/MAKEINTRESOURCE far pointer, and custom type WAV, pal, or DAT; result chaining and lack of failure checks are represented.
171228:003cKERNELLOADRESOURCE43verifiedbinary-reviewedpascal16 -ret16 LoadResource(word word)Wine 11.15 KERNEL ordinal 61 prototype; call sites 1008:1067,134a,14c1; sound/palette/bitmap harnessesAll calls pass current HINSTANCE16 plus the preceding HRSRC16, preserve the HGLOBAL16, and perform no failure check.
181228:0040KERNELLOCKRESOURCE23verifiedbinary-reviewedpascal16 LockResource(word)Wine 11.15 KERNEL ordinal 62 prototype; call sites 1008:1095,1355,14cc; sound/palette/bitmap harnessesAll calls receive the immediately loaded HGLOBAL16 and preserve the returned far pointer for byte copy, DIB header/bits, or waveform data.
191228:0044KERNELFREERESOURCE22verifiedbinary-reviewedpascal16 -ret16 FreeResource(word)Wine 11.15 KERNEL ordinal 63 prototype; call sites 1008:10cb and 15b3; sound/bitmap harnessesBoth calls occur after GlobalUnlock on the same resource handle and ignore BOOL16; the palette loader's intentional Unlock-only behavior is separately verified.
201228:0048KERNEL_LCLOSE22verifiedcall-sites-verifiedHFILE16 LClose16(HFILE16 file)Wine wine-11.15 ordinal 81 prototype; disassembly 1000:a8ea-a99b and a99c-ab3b; reconstructed/tdkpin_highscores.c; reconstructed/tests/test_highscores.cBoth call sites close only successfully created/opened HiScores.Dat handles; load closes after valid or invalid header, save closes after all writes, returns are intentionally ignored, and no close occurs after -1.
211228:004cKERNEL_LREAD83verifiedcall-sites-verifiedUINT16 LRead16(HFILE16 file, Win16FarPtr bytes, UINT16 byte_count)Wine wine-11.15 ordinal 82 prototype; disassembly 1000:a9d1-aa2e; reconstructed/tdkpin_highscores.c; reconstructed/tests/test_highscores.cAll calls use an opened HiScores.Dat handle: 16 bytes to SS header, then only after header equality 40 bytes to SS encrypted scores and 220 bytes directly to DGROUP 08a6; all returns are deliberately ignored and short-read residue/tail effects are modeled and tested.
221228:0050KERNEL_LCREAT61verifiedcall-sites-verifiedHFILE16 LCreate16(Win16FarPtr file_name, INT16 attributes)Wine wine-11.15 ordinal 83 prototype; disassembly 1000:a8ee-a8fa; reconstructed/tdkpin_highscores.c; reconstructed/tests/test_highscores.cSole call passes DGROUP 0312 "HiScores.Dat" and attribute zero; signed -1 failure skips buffer construction, writes, and close; success handle is retained exactly.
231228:0054KERNEL_LOPEN62verifiedcall-sites-verifiedHFILE16 LOpen16(Win16FarPtr file_name, INT16 mode)Wine wine-11.15 ordinal 85 prototype; disassembly 1000:a9a4-a9c8; reconstructed/tdkpin_highscores.c; reconstructed/tests/test_highscores.cBoth calls use DGROUP 0320 "HiScores.Dat"; mode zero is tried first and exactly on signed -1 mode 0x40 is retried; a second -1 selects defaults without read or close, and all branches are tested.
241228:0058KERNEL_LWRITE83verifiedcall-sites-verifiedUINT16 LWrite16(HFILE16 file, Win16FarPtr bytes, UINT16 byte_count)Wine wine-11.15 ordinal 86 prototype; disassembly 1000:a961-a990; reconstructed/tdkpin_highscores.c; reconstructed/tests/test_highscores.cAll three calls use the successful HFILE and write header DGROUP 0014/16 bytes, encrypted-score SS buffer/40 bytes, then name SS buffer/220 bytes; every return is deliberately ignored and byte order is tested.
251228:005cKERNELINITTASK01verifiedbinary-reviewedpascal16 -register InitTask()disassembly 1000:fd85-fd8e and 1020:0002 register stores; Wine 11.15 KERNEL ordinal 91; reconstructed/tests/test_program_entry.cSole register-return call supplies AX loader gate, ES:BX command line, DX show command, SI previous instance, and DI current instance directly to verified Borland startup.
261228:0060KERNELLOADLIBRARY42verifiedbinary-reviewedpascal16 -ret16 LoadLibrary(str)Wine 11.15 KERNEL ordinal 95 prototype; modern and located-legacy calls at 1010:01f8/0216; reconstructed/tests/test_multimedia.cBoth calls pass the mutable CTL3D path buffer; direct and locator-gated branches, <32 error handles, successful module lifecycle, and skipped-load failure are verified.
271228:0064KERNELFREELIBRARY21verifiedcallsite-reviewedpascal16 -ret16 FreeLibrary(word)Wine wine-11.15 krnl386.exe16.spec line 100; disassembly 1010:0007-0016The sole call is guarded by module handle >=32, passes that handle, ignores BOOL16, and intentionally leaves the stored handle unchanged while clearing proc slots.
281228:0068KERNELSETERRORMODE22verifiedbinary-reviewedpascal16 -ret16 SetErrorMode(word)Wine 11.15 KERNEL ordinal 107 prototype; calls 1010:01f9/020d; reconstructed/tests/test_multimedia.cModern loading sets 0x8000 immediately before LoadLibrary and 0 immediately after, ignores both returns, and legacy loading skips both calls; ordering is tested.
291228:006cKERNEL__AHINCR21474836470verifiedruntime-dataequate16 __AHINCR = 8Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L118Wine Win16 ordinal 114; this is runtime data, not a callable function.
301228:0070KERNELGETPRIVATEPROFILEINT143verifiedcall-sites-verifiedpascal16 -ret16 GetPrivateProfileInt(str str s_word str)Wine 11.15 KERNEL ordinal 127 prototype; disassembly 1008:1095-10b1; reconstructed/tests/test_sound.c; all 3 direct call sites map to verified address-linked function rows and readable CAll 3 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
311228:0074KERNELGETDOSENVIRONMENT01verifiedbinary-reviewedpascal16 segptr GetDOSEnvironment()disassembly 1008:2821-283a; Wine 11.15 KERNEL ordinal 131; reconstructed/tests/test_multimedia_paths.cSole no-argument call returns the far base of the double-NUL DOS environment block; traversal preserves selector and returns a pointer immediately after matching NAME=.
321228:0078KERNELGETWINFLAGS01verifiedbinary-reviewedpascal16 dword GetWinFlags()disassembly 1020:0038-0049; Wine 11.15 KERNEL ordinal 132 prototype; reconstructed/tests/test_borland_startup.cSole call takes no arguments; only returned AL bits c0 and 02 classify 086/186, 286, or 386-plus arithmetic paths, including ignored upper bits.
331228:007cKERNELGETWINDOWSDIRECTORY61verifiedbinary-reviewedpascal16 -ret16 GetWindowsDirectory(ptr word)Wine 11.15 KERNEL ordinal 134 prototype; sole call at 1010:00df; reconstructed/tests/test_multimedia.cThe sole call receives the 256-byte search buffer with maximum 0xff; its return is ignored and resulting directory becomes the second CTL3D search location.
341228:0080KERNELGETSYSTEMDIRECTORY62verifiedbinary-reviewedpascal16 -ret16 GetSystemDirectory(segptr uint16)disassembly 1010:0107-0116 and 0476-0483; Wine 11.15 KERNEL ordinal 135; multimedia testsLocator uses a 255-byte stack buffer; unit startup uses the exact 200-byte DGROUP buffer and retains the returned length as its path-probe gate.
351228:0084KERNELGETFREESPACE21verifiedcallsite-reviewedpascal16 GetFreeSpace(word)Wine wine-11.15 krnl386.exe16.spec line 172; disassembly 1020:016c-0190The sole call passes 0x1000 and its uint32 result receives every local segment's uint16 free-byte count with carry.
361228:0088KERNELALLOCCSTODSALIAS22verifiedbinary-reviewedpascal16 -ret16 AllocCStoDSAlias(word)Wine 11.15 ordinal 170 prototype; call sites 1018:02bb and 1018:030c; reconstructed/tests/test_bound_thunks.cAllocate and release each alias the thunk's code selector, preserve its offset, patch through the returned writable selector, and free that alias afterward.
371228:008cKERNELFREESELECTOR22verifiedbinary-reviewedpascal16 -ret16 FreeSelector(word)Wine 11.15 ordinal 176 prototype; call sites 1018:02e9 and 1018:0329; reconstructed/tests/test_bound_thunks.cBoth calls release exactly the temporary CS-to-DS alias returned for the current thunk and ignore the result.
381228:0090KERNELPRESTOCHANGOSELECTOR41verifiedbinary-reviewedpascal16 -ret16 PrestoChangoSelector(word word)Wine 11.15 ordinal 177 prototype; sole call at 1018:029f; reconstructed/tests/test_bound_thunks.cThe generated-pool selector is passed as both source and destination after all bytes are initialized, converting the locked block for executable thunk use; return is ignored.
391228:0094MMTIMERSYSTEMTIMERMAKE81verifiedbinary-reviewedpascal16 -ret16 SystemTimerMake(HWND16 recipient, word delay_ms, word resolution_ms, word one_shot)MMTIMER.DLL 1000:0039 disassembly; export ordinal 1; f1d9ac980c7bfba5dc53eaa9e7cb2c3cd9b82f879ee8962ad40bf863d641bb49Binary-reviewed wrapper around timeSetEvent16: it installs MMTIMER 1000:0002, posts message 0x0580 to recipient, and returns the multimedia timer id.
401228:0098MMSYSTEMSNDPLAYSOUND64verifiedbinary-reviewedpascal16 sndPlaySound(ptr word)Wine 11.15 MMSYSTEM ordinal 2 prototype; call sites 1008:10ff,1164,1177,11ab; reconstructed/tests/test_sound.cAll four calls are verified: NULL/0 stop in unload/play/stop helper, and loaded far sound/flags 5 playback with BOOL result stored to Playing.
411228:009cMMSYSTEMWAVEOUTGETNUMDEVS01verifiedbinary-reviewedpascal16 waveOutGetNumDevs()Wine 11.15 MMSYSTEM ordinal 401 prototype; disassembly 1008:0fb8-0fc7; reconstructed/tests/test_sound.cThe sole call has no arguments, stores the UINT16 device count at DGROUP 43ee, and returns early on zero; count and branch semantics are verified.
421228:00a0MMSYSTEMWAVEOUTGETDEVCAPS81verifiedbinary-reviewedpascal16 waveOutGetDevCaps(word ptr word)Wine 11.15 MMSYSTEM ordinal 402 prototype; disassembly 1008:0fca-0fe5; exact WAVEOUTCAPS16; reconstructed/tests/test_sound.cThe sole call passes zero-filled device id 43f0, far DGROUP buffer 43be, and exact size 48; MMRESULT zero succeeds and failure clears device count.
431228:00a4MMSYSTEMWAVEOUTGETVOLUME61verifiedbinary-reviewedpascal16 waveOutGetVolume(word ptr)Wine 11.15 MMSYSTEM ordinal 415 prototype; disassembly 1008:1000-1027; reconstructed/tests/test_sound.cThe sole conditional call passes device id 43f0 and a zeroed stack DWORD; its return is ignored and bits 8..15 of volume are rounded down to a multiple of ten.
441228:00a8MMSYSTEMTIMEKILLEVENT21474836471verifiedbinary-reviewedpascal16 timeKillEvent(word)Wine wine-11.15 MMSYSTEM ordinal 603 prototype; disassembly 1008:2932-295b; reconstructed/tests/test_system_timer.cThe sole call passes the nonzero uint16 timer id from object offset +2, ignores the MMRESULT, and unconditionally clears the stored id afterward.
451228:00acKERNELGETVERSION00verifiedunused-slot-verifiedpascal16 GetVersion()Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L6; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
461228:00b0KERNELGLOBALALLOC60verifiedunused-slot-verifiedpascal16 -ret16 GlobalAlloc(word long)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L18; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
471228:00b4KERNELGLOBALFREE20verifiedunused-slot-verifiedpascal16 -ret16 GlobalFree(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L20; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
481228:00b8KERNELGLOBALLOCK20verifiedunused-slot-verifiedpascal16 GlobalLock(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L21; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
491228:00bcKERNELGLOBALUNLOCK20verifiedunused-slot-verifiedpascal16 -ret16 GlobalUnlock(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L22; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
501228:00c0KERNELGLOBALHANDLE20verifiedunused-slot-verifiedpascal16 GlobalHandle(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L24; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
511228:00c4KERNELGLOBALCOMPACT40verifiedunused-slot-verifiedpascal16 GlobalCompact(long)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L28; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
521228:00c8KERNELWAITEVENT20verifiedunused-slot-verifiedpascal16 -ret16 WaitEvent(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L33; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
531228:00ccKERNELGETCURRENTTASK00verifiedunused-slot-verifiedpascal16 GetCurrentTask()Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L39; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
541228:00d0KERNELGETMODULEHANDLE40verifiedunused-slot-verifiedpascal16 GetModuleHandle(segstr)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L50; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
551228:00d4KERNELGETMODULEFILENAME80verifiedunused-slot-verifiedpascal16 -ret16 GetModuleFileName(word ptr s_word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L52; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
561228:00d8KERNELGETPROCADDRESS60verifiedunused-slot-verifiedpascal16 GetProcAddress(word str)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L53; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
571228:00dcKERNELMAKEPROCINSTANCE60verifiedunused-slot-verifiedpascal16 MakeProcInstance(segptr word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L54; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
581228:00e0KERNELFREEPROCINSTANCE40verifiedunused-slot-verifiedpascal16 -ret16 FreeProcInstance(segptr)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L55; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
591228:00e4KERNELFINDRESOURCE100verifiedunused-slot-verifiedpascal16 -ret16 FindResource(word str str)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L63; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
601228:00e8KERNELLOADRESOURCE40verifiedunused-slot-verifiedpascal16 -ret16 LoadResource(word word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L64; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
611228:00ecKERNELLOCKRESOURCE20verifiedunused-slot-verifiedpascal16 LockResource(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L65; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
621228:00f0KERNELFREERESOURCE20verifiedunused-slot-verifiedpascal16 -ret16 FreeResource(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L66; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
631228:00f4KERNEL_LCLOSE20verifiedunused-slot-verifiedpascal16 -ret16 _lclose(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L85; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
641228:00f8KERNEL_LREAD80verifiedunused-slot-verifiedpascal16 -ret16 _lread(word segptr word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L86; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
651228:00fcKERNEL_LCREAT60verifiedunused-slot-verifiedpascal16 -ret16 _lcreat(str word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L87; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
661228:0100KERNEL_LOPEN60verifiedunused-slot-verifiedpascal16 -ret16 _lopen(str word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L89; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
671228:0104KERNEL_LWRITE80verifiedunused-slot-verifiedpascal16 -ret16 _lwrite(word ptr word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L90; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
681228:0108KERNELINITTASK00verifiedunused-slot-verifiedpascal16 -register InitTask()Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L95; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
691228:010cKERNELLOADLIBRARY40verifiedunused-slot-verifiedpascal16 -ret16 LoadLibrary(str)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L99; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
701228:0110KERNELFREELIBRARY20verifiedunused-slot-verifiedpascal16 -ret16 FreeLibrary(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L100; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
711228:0114KERNELSETERRORMODE20verifiedunused-slot-verifiedpascal16 -ret16 SetErrorMode(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L111; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
721228:0118KERNEL__AHINCR21474836470verifiedruntime-dataequate16 __AHINCR = 8Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L118Wine Win16 ordinal 114; this is runtime data, not a callable function.
731228:011cKERNELGETPRIVATEPROFILEINT140verifiedunused-slot-verifiedpascal16 -ret16 GetPrivateProfileInt(str str s_word str)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L131; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
741228:0120KERNELGETDOSENVIRONMENT00verifiedunused-slot-verifiedpascal16 GetDOSEnvironment()Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L135; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
751228:0124KERNELGETWINFLAGS00verifiedunused-slot-verifiedpascal16 GetWinFlags()Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L136; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
761228:0128KERNELGETWINDOWSDIRECTORY60verifiedunused-slot-verifiedpascal16 -ret16 GetWindowsDirectory(ptr word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L138; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
771228:012cKERNELGETSYSTEMDIRECTORY60verifiedunused-slot-verifiedpascal16 -ret16 GetSystemDirectory(ptr word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L139; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
781228:0130KERNELGETFREESPACE20verifiedunused-slot-verifiedpascal16 GetFreeSpace(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L172; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
791228:0134KERNELALLOCCSTODSALIAS20verifiedunused-slot-verifiedpascal16 -ret16 AllocCStoDSAlias(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L173; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
801228:0138KERNELFREESELECTOR20verifiedunused-slot-verifiedpascal16 -ret16 FreeSelector(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L179; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
811228:013cKERNELPRESTOCHANGOSELECTOR40verifiedunused-slot-verifiedpascal16 -ret16 PrestoChangoSelector(word word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L180; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
821228:0140GDISETBKCOLOR61verifiedcall-sites-verifiedpascal16 SetBkColor(word long)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/gdi.exe16/gdi.exe16.spec#L1; all 1 direct call sites map to verified address-linked function rows and readable CAll 1 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
831228:0144GDISETBKMODE42verifiedcall-sites-verifiedINT16 SetBkMode16(HDC16 dc, INT16 mode)Wine wine-11.15 ordinal 2 prototype; disassembly 1000:5ca2-5ca8 and 5e93-5e9b; reconstructed/tdkpin_highscores.c; reconstructed/tests/test_highscores.cBoth calls target the 300x360 buffer DC: mode 1 is installed and its exact return saved, then that saved mode is restored after drawing; sequence and arguments are tested.
841228:0148GDISETTEXTCOLOR63verifiedcall-sites-verifiedpascal16 SetTextColor(word long)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/gdi.exe16/gdi.exe16.spec#L9; all 3 direct call sites map to verified address-linked function rows and readable CAll 3 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
851228:014cGDITEXTOUT125verifiedcall-sites-verifiedpascal16 -ret16 TextOut(word s_word s_word str word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/gdi.exe16/gdi.exe16.spec#L33; all 5 direct call sites map to verified address-linked function rows and readable CAll 5 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
861228:0150GDIBITBLT2095verifiedcall-sites-verifiedpascal16 -ret16 BitBlt(word s_word s_word s_word s_word word s_word s_word long)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/gdi.exe16/gdi.exe16.spec#L34; all 95 direct call sites map to verified address-linked function rows and readable CAll 95 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
871228:0154GDISELECTOBJECT499verifiedcall-sites-verifiedpascal16 -ret16 SelectObject(word word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/gdi.exe16/gdi.exe16.spec#L45; all 99 direct call sites map to verified address-linked function rows and readable CAll 99 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
881228:0158GDICREATECOMPATIBLEBITMAP611verifiedcall-sites-verifiedpascal16 -ret16 CreateCompatibleBitmap(word word word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/gdi.exe16/gdi.exe16.spec#L51; all 11 direct call sites map to verified address-linked function rows and readable CAll 11 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
891228:015cGDICREATECOMPATIBLEDC241verifiedcall-sites-verifiedpascal16 -ret16 CreateCompatibleDC(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/gdi.exe16/gdi.exe16.spec#L52; all 41 direct call sites map to verified address-linked function rows and readable CAll 41 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
901228:0160GDICREATEDC161verifiedbinary-reviewedpascal16 -ret16 CreateDC(str str str ptr)Wine 11.15 GDI ordinal 53 prototype; sole call 1008:1537-154c; reconstructed/tests/test_bitmap_loader.cThe sole call passes far "Display" plus null device, output, and initialization-data pointers; returned HDC owns the palette/CreateDIBitmap sequence and is deleted exactly once.
911228:0164GDIDELETEDC240verifiedcall-sites-verifiedpascal16 -ret16 DeleteDC(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/gdi.exe16/gdi.exe16.spec#L68; all 40 direct call sites map to verified address-linked function rows and readable CAll 40 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
921228:0168GDIDELETEOBJECT229verifiedcall-sites-verifiedpascal16 -ret16 DeleteObject(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/gdi.exe16/gdi.exe16.spec#L69; all 29 direct call sites map to verified address-linked function rows and readable CAll 29 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
931228:016cGDIGETSTOCKOBJECT24verifiedcall-sites-verifiedpascal16 -ret16 GetStockObject(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/gdi.exe16/gdi.exe16.spec#L87; all 4 direct call sites map to verified address-linked function rows and readable CAll 4 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
941228:0170GDIGETTEXTCOLOR21verifiedcall-sites-verifiedCOLORREF16 GetTextColor16(HDC16 dc)Wine wine-11.15 ordinal 90 prototype; disassembly 1000:5c85-5c91; reconstructed/tdkpin_highscores.c; reconstructed/tests/test_highscores.cSole call reads the newly created buffer DC text color as a full DX:AX COLORREF, which is restored after all text rendering; full-dword behavior is tested.
951228:0174GDIGETTEXTMETRICS61verifiedcallsite-reviewedpascal16 -ret16 GetTextMetrics(word ptr)Wine wine-11.15 gdi.exe16.spec line 93; disassembly 1008:1ff1-1ffeThe sole call passes the active TPWinCrt HDC and a far SS pointer to an exact 31-byte TEXTMETRIC16; BOOL16 is intentionally ignored.
961228:0178GDIUNREALIZEOBJECT24verifiedcall-sites-verifiedpascal16 -ret16 UnrealizeObject(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/gdi.exe16/gdi.exe16.spec#L142; all 4 direct call sites map to verified address-linked function rows and readable CAll 4 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
971228:017cGDISETTEXTALIGN44verifiedcall-sites-verifiedUINT16 SetTextAlign16(HDC16 dc, UINT16 alignment)Wine wine-11.15 ordinal 346 prototype; disassembly 1000:5c94-5c9f,5d2e-5d39,5df5-5e00,5e87-5e93; reconstructed/tdkpin_highscores.c; reconstructed/tests/test_highscores.cAll static call sites target the buffer DC: initial 6 saves old alignment, every name row uses 0, every score row uses 2, and cleanup restores the saved value; exact 22 dynamic calls are tested.
981228:0180GDICREATEPALETTE42verifiedbinary-reviewedpascal16 -ret16 CreatePalette(ptr)Wine 11.15 GDI ordinal 360 prototype; call sites 1008:009a and 12f7; reconstructed/tests/test_palette_gdi.c and test_palette.cBoth exact LOGPALETTE256 pointers are verified: temporary all-black PC_NOCOLLAPSE realization and persistent RGB-table palette publication.
991228:0184GDIUPDATECOLORS23verifiedcall-sites-verifiedpascal16 -ret16 UpdateColors(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/gdi.exe16/gdi.exe16.spec#L267; all 3 direct call sites map to verified address-linked function rows and readable CAll 3 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
1001228:0188GDICREATEDIBITMAP201verifiedbinary-reviewedpascal16 -ret16 CreateDIBitmap(word ptr long ptr ptr word)Wine 11.15 GDI ordinal 442 prototype; sole call 1008:1572-1590; reconstructed/tests/test_bitmap_loader.cThe sole call passes Display HDC, stack BITMAPINFOHEADER16, DWORD CBM_INIT=4, DAT bits at resource+40, allocated BGR0 BITMAPINFO, and DIB_RGB_COLORS=0; returned HBITMAP is propagated.
1011228:018cUSERMESSAGEBOX126verifiedcall-sites-verifiedpascal16 -ret16 MessageBox(word str str word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L1; all 6 direct call sites map to verified address-linked function rows and readable CAll 6 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
1021228:0190USERINITAPP21verifiedbinary-reviewedpascal16 -ret16 InitApp(HINSTANCE16)disassembly 1020:002b-0037; Wine 11.15 USER ordinal 5 prototype; reconstructed/tests/test_borland_startup.cSole call receives the captured DI instance after WaitEvent(0); zero return terminates through DOS with status ff, nonzero continues to CPU detection.
1031228:0194USERPOSTQUITMESSAGE03verifiedcall-sites-verifiedpascal16 -ret16 PostQuitMessage(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L6; all 3 direct call sites map to verified address-linked function rows and readable CAll 3 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
1041228:0198USERGETTICKCOUNT21474836471verifiedcall-sites-verifiedpascal16 GetTickCount()Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L11; all 1 direct call sites map to verified address-linked function rows and readable CAll 1 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
1051228:019cUSERSETCAPTURE21verifiedbinary-reviewedpascal16 HWND16 SetCapture(HWND16)disassembly 1018:199b-19b1; Wine 11.15 USER ordinal 18; reconstructed/tests/test_window_advanced_handlers.cSole call passes receiver HWND before the attached mouse-tracking loop; previous-capture HWND return is ignored and ReleaseCapture is paired after the inclusive button-up iteration.
1061228:01a0USERRELEASECAPTURE01verifiedbinary-reviewedpascal16 BOOL16 ReleaseCapture()disassembly 1018:19eb-19f6; Wine 11.15 USER ordinal 19; reconstructed/tests/test_window_advanced_handlers.cSole no-argument call occurs after the attached tracking loop exits on WM_LBUTTONUP; BOOL16 is ignored and default event forwarding follows.
1071228:01a4USERSETFOCUS27verifiedcall-sites-verifiedpascal16 -ret16 SetFocus(word)Wine 11.15 USER ordinal 22 prototype; disassembly 1018:172b-1736; reconstructed/tests/test_window_placement.c; all 7 direct call sites map to verified address-linked function rows and readable CAll 7 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
1081228:01a8USERGETFOCUS02verifiedcall-sites-verifiedpascal16 -ret16 GetFocus()Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L22; all 2 direct call sites map to verified address-linked function rows and readable CAll 2 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
1091228:01acUSERREMOVEPROP62verifiedcallsite-reviewedpascal16 -ret16 RemoveProp(word ptr)Wine wine-11.15 user.exe16.spec line 23; disassembly 1018:0076-0090Both call sites remove OW1 then OW2 for the same HWND; returned property handles are intentionally ignored.
1101228:01b0USERGETPROP62verifiedcall-sites-verifiedpascal16 -ret16 GetProp(word str)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L24; all 2 direct call sites map to verified address-linked function rows and readable CAll 2 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
1111228:01b4USERSETPROP82verifiedcallsite-reviewedpascal16 -ret16 SetProp(word str word)Wine wine-11.15 user.exe16.spec line 25; disassembly 1018:004a-0069Both call sites bind one HWND to the object's selector under OW1 and offset under OW2; BOOL16 results are intentionally ignored.
1121228:01b8USERSCREENTOCLIENT62verifiedbinary-reviewedpascal16 -ret16 ScreenToClient(word ptr)Wine 11.15 USER ordinal 29 prototype; both call sites 1018:164a-165b and 1673-1684; reconstructed/tests/test_window_placement.cBoth calls pass the same stack RECT16 top-left as POINT16; one uses the VMT-returned MDI-client HWND under flag 08 and the other uses the parent HWND under attribute bit 40000000; BOOL16 is ignored.
1131228:01bcUSERISICONIC04verifiedcall-sites-verifiedpascal16 -ret16 IsIconic(word)Wine 11.15 USER ordinal 31 prototype; disassembly 1018:15c8-15da; reconstructed/tests/test_window_placement.c; all 4 direct call sites map to verified address-linked function rows and readable CAll 4 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
1141228:01c0USERGETWINDOWRECT62verifiedbinary-reviewedpascal16 BOOL16 GetWindowRect(HWND16 segptr RECT16)disassembly 1018:15ee-15ff and 1921-1931; Wine 11.15 USER ordinal 32; placement and advanced-handler testsBoth calls pass exact HWND and eight-byte stack RECT16 pointers and ignore BOOL16; one converts screen placement, the other caches signed 16-bit width/height differences.
1151228:01c4USERGETCLIENTRECT66verifiedcall-sites-verifiedpascal16 -ret16 GetClientRect(word ptr)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L32; all 6 direct call sites map to verified address-linked function rows and readable CAll 6 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
1161228:01c8USERGETWINDOWTEXT01verifiedcall-sites-verifiedpascal16 -ret16 GetWindowText(word segptr word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L35; all 1 direct call sites map to verified address-linked function rows and readable CAll 1 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
1171228:01ccUSERSETWINDOWTEXT03verifiedbinary-reviewedpascal16 BOOL16 SetWindowText(HWND16 segstr)disassembly 1008:16cd-16e0, 1008:24f5-2503, and 1018:0500-050d; Wine 11.15 USER ordinal 37; dialog/TPWinCrt/object testsAll three call sites have exact HWND/text arguments and ignored BOOL16 returns: dialog caption field, inactive TPWinCrt stack caption, and child-activation text.
1181228:01d0USERBEGINPAINT82verifiedbinary-reviewedpascal16 HDC16 BeginPaint(HWND16 segptr PAINTSTRUCT16)disassembly 1008:1782-1791 and 1018:1870-1880; Wine 11.15 USER ordinal 39; TPWinCrt and advanced-handler testsBoth call sites pass exact HWND plus 32-byte PAINTSTRUCT16 storage; TPWinCrt stores the returned HDC while ObjectWindows consumes the structure HDC through ordered virtual calls.
1191228:01d4USERENDPAINT62verifiedbinary-reviewedpascal16 BOOL16 EndPaint(HWND16 segptr PAINTSTRUCT16)disassembly 1008:17f4-1806 and 1018:18d1-18e1; Wine 11.15 USER ordinal 40; TPWinCrt and advanced-handler testsBoth calls pair the same HWND/PAINTSTRUCT used by BeginPaint after restoring fonts or completing attached/window paint virtuals; BOOL16 is ignored.
1201228:01d8USERCREATEWINDOW341verifiedbinary-reviewedpascal16 HWND16 CreateWindow(segstr segstr long s_word s_word s_word s_word HWND16 HMENU16 HINSTANCE16 segptr)disassembly 1008:244e-2487; Wine 11.15 USER ordinal 41; reconstructed/tests/test_tpwincrt_lifecycle.cSole call's class/title, style 00ff0000, four CW_USEDEFAULT words, null parent/menu/parameter, process instance, returned HWND publication, and subsequent Show/Update are verified.
1211228:01dcUSERSHOWWINDOW42verifiedcall-sites-verifiedpascal16 -ret16 ShowWindow(word word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L41; all 2 direct call sites map to verified address-linked function rows and readable CAll 2 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
1221228:01e0USERGETPARENT24verifiedcall-sites-verifiedpascal16 -ret16 GetParent(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L45; all 4 direct call sites map to verified address-linked function rows and readable CAll 4 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
1231228:01e4USERISWINDOW02verifiedcall-sites-verifiedpascal16 -ret16 IsWindow(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L46; all 2 direct call sites map to verified address-linked function rows and readable CAll 2 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
1241228:01e8USERISCHILD01verifiedcall-sites-verifiedpascal16 -ret16 IsChild(word word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L47; all 1 direct call sites map to verified address-linked function rows and readable CAll 1 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
1251228:01ecUSERDESTROYWINDOW21verifiedbinary-reviewedpascal16 -ret16 DestroyWindow(word)Wine 11.15 USER ordinal 53 prototype; sole call at 1018:0d5e; reconstructed/tests/test_window_destroy.cThe sole call receives object HWND +4 after child marking and after the MDI getter path declines; zero HWND skips it and BOOL16 return is ignored.
1261228:01f0USERREGISTERCLASS42verifiedbinary-reviewedpascal16 uint16 RegisterClass(segptr WNDCLASS16)disassembly 1008:2588-2597 and 1018:0e76-0e8b; Wine 11.15 USER ordinal 57; TPWinCrt and ObjectWindows class testsBoth call sites pass exact 26-byte Win16 class descriptors; first-instance gates, dynamic class construction, relocations, and ignored atom results are verified.
1271228:01f4USERSCROLLWINDOW142verifiedcall-sites-verifiedpascal16 -ret16 ScrollWindow(word s_word s_word ptr ptr)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L60; all 2 direct call sites map to verified address-linked function rows and readable CAll 2 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
1281228:01f8USERSETSCROLLPOS84verifiedcallsite-reviewedpascal16 -ret16 SetScrollPos(word word s_word word)Wine wine-11.15 user.exe16.spec line 61; disassembly 1008:1886-1899, 18b9-18cd, 1937-1952, and 1953-196fAll four calls use the TPWinCrt HWND, correct horizontal/vertical bar id, signed position, redraw=1, and intentionally ignore the previous position.
1291228:01fcUSERSETSCROLLRANGE102verifiedcallsite-reviewedpascal16 -ret16 SetScrollRange(word word s_word s_word word)Wine wine-11.15 user.exe16.spec line 63; disassembly 1008:1868-1885 and 189a-18b8Both calls use minimum 0, maximum max(recovered limit,1), redraw=0, correct bar id, and intentionally ignore BOOL16.
1301228:0200USERGETDC243verifiedcall-sites-verifiedpascal16 -ret16 GetDC(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L65; all 43 direct call sites map to verified address-linked function rows and readable CAll 43 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
1311228:0204USERRELEASEDC443verifiedcall-sites-verifiedpascal16 -ret16 ReleaseDC(word word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L67; all 43 direct call sites map to verified address-linked function rows and readable CAll 43 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
1321228:0208USERSETCURSOR27verifiedcall-sites-verifiedpascal16 -ret16 SetCursor(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L68; all 7 direct call sites map to verified address-linked function rows and readable CAll 7 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
1331228:020cUSERENDDIALOG41verifiedbinary-reviewedpascal16 -ret16 EndDialog(word s_word)Wine 11.15 USER ordinal 88 prototype; sole call at 1008:2bfb; reconstructed/tests/test_dialog.cThe sole call executes only for modal byte +0x25, after child marking, with object HWND +4 then signed result word; BOOL16 return is ignored.
1341228:0210USERISDIALOGMESSAGE61verifiedbinary-reviewedpascal16 -ret16 IsDialogMessage(word ptr)Wine 11.15 USER ordinal 90 prototype; sole call at 1018:1d0b; reconstructed/tests/test_application_loop.cThe sole call passes active-dialog HWND at object +4 and the exact 18-byte MSG16 pointer; its BOOL16 is normalized by the target's NEG/SBB/NEG byte sequence.
1351228:0214USERGETDLGITEM43verifiedcall-sites-verifiedpascal16 -ret16 GetDlgItem(word word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L90; all 3 direct call sites map to verified address-linked function rows and readable CAll 3 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
1361228:0218USERSETDLGITEMTEXT82verifiedbinary-reviewedpascal16 BOOL16 SetDlgItemText(HWND16 INT16 segstr)disassembly 1008:16e1-170c; Wine 11.15 USER ordinal 92; reconstructed/tests/test_dialog.cBoth sole calls use the same dialog HWND with exact ids 100 and 101 and unaligned far text fields +2a and +2e; both returns are ignored.
1371228:021cUSERGETDLGITEMTEXT101verifiedbinary-reviewedpascal16 -ret16 GetDlgItemText(word word segptr word)Wine 11.15 USER ordinal 93 prototype; sole call at 1008:16aa; reconstructed/tests/test_dialog.cThe sole call passes object HWND +4, signed control id +0x32, unaligned far buffer +0x2e/+0x30, maximum 0x65, ignores the returned character count, and the caller returns true.
1381228:0220USERSENDDLGITEMMESSAGE121verifiedbinary-reviewedpascal16 LRESULT16 SendDlgItemMessage(HWND16 INT16 UINT16 WPARAM16 LPARAM16)disassembly 1008:170d-1727; Wine 11.15 USER ordinal 101; reconstructed/tests/test_dialog.cSole call targets control 101 with EM_LIMITTEXT 0415, uint16 field +32 minus one in wParam including zero-to-ffff wrap, lParam zero, and ignored LRESULT.
1391228:0224USERMESSAGEBEEP21verifiedbinary-reviewedpascal16 BOOL16 MessageBeep(uint16)disassembly 1008:1bb8-1bc3; Wine 11.15 USER ordinal 104; reconstructed/tests/test_tpwincrt_text.cSole BEL-byte branch passes literal zero, ignores BOOL16, and preserves dirty-range/cursor state.
1401228:0228USERGETKEYSTATE01verifiedcallsite-reviewedpascal16 -ret16 GetKeyState(word)Wine wine-11.15 user.exe16.spec line 105; disassembly 1008:215d-216dThe sole call pushes VK_CONTROL 0x11 and tests the signed INT16 result for negativity; Ghidra's zero purge metadata is contradicted by the call and the executing Wine spec.
1411228:022cUSERDEFWINDOWPROC101verifiedcall-sites-verifiedpascal16 DefWindowProc(word word word long)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L106; all 1 direct call sites map to verified address-linked function rows and readable CAll 1 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
1421228:0230USERGETMESSAGE141verifiedbinary-reviewedpascal16 BOOL16 GetMessage(segptr MSG16 HWND16 uint16 uint16)disassembly 1008:2522-254d; Wine 11.15 USER ordinal 108; reconstructed/tests/test_tpwincrt_lifecycle.cSole clean-shutdown loop passes an 18-byte stack MSG and three zero filters; every nonzero result, including -1, is translated/dispatched until zero.
1431228:0234USERPEEKMESSAGE144verifiedbinary-reviewedpascal16 BOOL16 PeekMessage(segptr MSG16 HWND16 UINT16 UINT16 UINT16)disassembly call sites 1008:00f3,1c22 and 1018:19bf,1c15; Wine 11.15 USER ordinal 109; runtime-input, message-loop, and advanced-handler testsAll four calls pass 18-byte MSG storage, zero HWND/range filters, and PM_REMOVE=1; empty-queue behavior, WM_QUIT handling, tracking retention, and dispatch ordering are verified.
1441228:0238USERSENDMESSAGE103verifiedcall-sites-verifiedpascal16 SendMessage(word word word long)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L110; all 3 direct call sites map to verified address-linked function rows and readable CAll 3 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
1451228:023cUSERWAITMESSAGE02verifiedcall-sites-verifiedpascal16 -ret16 WaitMessage()Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L111; all 2 direct call sites map to verified address-linked function rows and readable CAll 2 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
1461228:0240USERTRANSLATEMESSAGE45verifiedbinary-reviewedpascal16 BOOL16 TranslateMessage(segptr MSG16)five disassembly call sites across verified TPWinCrt, shutdown, tracking, and application loops; Wine 11.15 USER ordinal 113; focused testsEvery call receives the same stack MSG returned by Peek/GetMessage immediately before DispatchMessage; BOOL16 is ignored and all skip/loop conditions are verified.
1471228:0244USERDISPATCHMESSAGE45verifiedbinary-reviewedpascal16 LRESULT16 DispatchMessage(segptr MSG16)five disassembly call sites across verified TPWinCrt, shutdown, tracking, and application loops; Wine 11.15 USER ordinal 114; focused testsEvery call receives the translated stack MSG; LRESULT is ignored, while WM_QUIT/button-up and preprocessing gates are represented in enclosing functions.
1481228:0248USERCALLWINDOWPROC141verifiedbinary-reviewedpascal16 CallWindowProc(segptr word word word long)Wine 11.15 USER ordinal 122 prototype; sole call at 1018:1337; reconstructed/tests/test_window_messages.cThe sole call passes unaligned stored WNDPROC +0x37/+0x39, object HWND +4, exact message/WPARAM/LPARAM words, and stores the returned LRESULT16 into the ObjectWindows message record.
1491228:024cUSERUPDATEWINDOW25verifiedcall-sites-verifiedpascal16 -ret16 UpdateWindow(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L123; all 5 direct call sites map to verified address-linked function rows and readable CAll 5 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
1501228:0250USERINVALIDATERECT106verifiedcall-sites-verifiedpascal16 -ret16 InvalidateRect(word ptr word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L124; all 6 direct call sites map to verified address-linked function rows and readable CAll 6 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
1511228:0254USERGETWINDOWWORD42verifiedcall-sites-verifiedpascal16 -ret16 GetWindowWord(word s_word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L132; all 2 direct call sites map to verified address-linked function rows and readable CAll 2 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
1521228:0258USERGETWINDOWLONG45verifiedbinary-reviewedpascal16 LONG GetWindowLong(HWND16 INT16)five disassembly call sites in verified 1018:0097,0b25,0b6c,1788,17f8; Wine 11.15 USER ordinal 135; object/window/advanced-handler testsGWL_WNDPROC=-4 is used for bound-thunk recovery; GWL_STYLE=-16 supplies exact WS_HSCROLL/WS_VSCROLL high-word bits for base and attached scrolling. Full 32-bit results and all consumers are verified.
1531228:025cUSERSETWINDOWLONG82verifiedcallsite-reviewedpascal16 SetWindowLong(word s_word long)Wine wine-11.15 user.exe16.spec line 135; disassembly 1018:0197-01ac and 1018:1488-14a3Both calls use GWL_WNDPROC (-4): bootstrap installs the bound thunk; normal creation installs the object handler and preserves the previous procedure.
1541228:0260USERENABLEMENUITEM62verifiedcall-sites-verifiedpascal16 -ret16 EnableMenuItem(word word word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L154; all 2 direct call sites map to verified address-linked function rows and readable CAll 2 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
1551228:0264USERGETSYSTEMMENU42verifiedcall-sites-verifiedpascal16 -ret16 GetSystemMenu(word word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L155; all 2 direct call sites map to verified address-linked function rows and readable CAll 2 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
1561228:0268USERCREATECARET81verifiedcallsite-reviewedpascal16 -ret16 CreateCaret(word word word word)Wine wine-11.15 user.exe16.spec line 162; disassembly 1008:181b-182eThe sole call passes TPWinCrt HWND, null bitmap, character width, and height 2 in exact far-Pascal order; BOOL16 is intentionally ignored.
1571228:026cUSERDESTROYCARET01verifiedcallsite-reviewedpascal16 -ret16 DestroyCaret()Wine wine-11.15 user.exe16.spec line 163; disassembly 1008:185b-1864The sole call has no arguments; BOOL16 is intentionally ignored.
1581228:0270USERSETCARETPOS41verifiedcallsite-reviewedpascal16 -ret16 SetCaretPos(word word)Wine wine-11.15 user.exe16.spec line 164; disassembly 1008:182f-184fThe sole call passes 16-bit wrapped x then y coordinates; BOOL16 is intentionally ignored.
1591228:0274USERSHOWCARET21verifiedcallsite-reviewedpascal16 -ret16 ShowCaret(word)Wine wine-11.15 user.exe16.spec line 166; disassembly 1008:1850-185aThe sole call passes the TPWinCrt HWND; BOOL16 is intentionally ignored.
1601228:0278USERLOADCURSOR69verifiedcall-sites-verifiedpascal16 -ret16 LoadCursor(word str)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L172; all 9 direct call sites map to verified address-linked function rows and readable CAll 9 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
1611228:027cUSERLOADICON63verifiedbinary-reviewedpascal16 HICON16 LoadIcon(HINSTANCE16 segstr)disassembly 1000:0186-0194, 1008:2564-2573, 1018:128d-129b; Wine 11.15 USER ordinal 174; class-builder testsAll three class-construction calls have exact instance/integer-resource arguments, handle publication, first-instance behavior, and no hidden ownership transfer.
1621228:0280USERLOADBITMAP63verifiedbinary-reviewedpascal16 -ret16 LoadBitmap(word str)Wine 11.15 USER ordinal 175 prototype; all call sites 1000:5491,5551,5586 in verified asset initializer; reconstructed/tests/test_asset_initializer.cAll calls pass current HINSTANCE16 and MAKEINTRESOURCE selectors zero for IDs 500,102,101; returned HBITMAPs publish to digit atlas or window fields +54/+52 at exact progress stages.
1631228:0284USERTRANSLATEACCELERATOR81verifiedbinary-reviewedpascal16 -ret16 TranslateAccelerator(word word ptr)Wine 11.15 USER ordinal 178 prototype; sole call at 1018:1d48; reconstructed/tests/test_application_loop.cThe sole call passes main-window HWND +4, application HACCEL +0x0c, and exact MSG16 pointer; zero/nonzero return becomes AL false/true.
1641228:0288USERGETSYSTEMMETRICS014verifiedcall-sites-verifiedpascal16 -ret16 GetSystemMetrics(s_word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L178; all 14 direct call sites map to verified address-linked function rows and readable CAll 14 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
1651228:028cUSERGETSYSCOLOR02verifiedcall-sites-verifiedpascal16 GetSysColor(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L179; all 2 direct call sites map to verified address-linked function rows and readable CAll 2 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
1661228:0290USERDIALOGBOXPARAM161verifiedbinary-reviewedpascal16 INT16 DialogBoxParam(HINSTANCE16 segstr HWND16 segptr LPARAM16)disassembly 1008:2b30-2b7d; Wine 11.15 USER ordinal 239; callback ledger; reconstructed/tests/test_dialog.cSole indirect call passes process instance, template +1d, parent HWND, bound dispatcher +12, init value +21; preserves/restores application active dialog, maps -1 to status ffff, clears HWND, and returns INT16.
1671228:0294USERCREATEDIALOGPARAM161verifiedbinary-reviewedpascal16 HWND16 CreateDialogParam(HINSTANCE16 segstr HWND16 segptr LPARAM16)disassembly 1008:2a8f-2ac8; Wine 11.15 USER ordinal 241; callback ledger; reconstructed/tests/test_dialog.cSole indirect call passes process instance, template +1d, parent HWND, bound dispatcher +12, and init value +21; stores HWND, maps zero to status ffff, and preserves returned AH in its Boolean result.
1681228:0298USERISZOOMED01verifiedbinary-reviewedpascal16 -ret16 IsZoomed(word)Wine 11.15 USER ordinal 272 prototype; disassembly 1018:15db-15ed; reconstructed/tests/test_window_placement.cThe sole call receives the receiver HWND after IsIconic returned zero and preserves all saved-placement words by returning immediately on nonzero.
1691228:029cUSERSELECTPALETTE623verifiedcall-sites-verifiedpascal16 -ret16 SelectPalette(word word word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L282; all 23 direct call sites map to verified address-linked function rows and readable CAll 23 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
1701228:02a0USERREALIZEPALETTE211verifiedcall-sites-verifiedpascal16 -ret16 RealizePalette(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L283; all 11 direct call sites map to verified address-linked function rows and readable CAll 11 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
1711228:02a4USERDEFDLGPROC100verifiedunused-slot-verifiedpascal16 DefDlgProc(word word word long)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L304; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
1721228:02a8USERGETCLASSINFO101verifiedbinary-reviewedpascal16 -ret16 GetClassInfo(word segstr ptr)Wine 11.15 USER ordinal 404 prototype; sole call at 1018:0e68; reconstructed/tests/test_class_registration.cThe sole call passes current HINSTANCE16, VMT +0x2c far class name, and exact 26-byte WNDCLASS16 pointer; nonzero skips builder/registration and returns true.
1731228:02acUSERWVSPRINTF122verifiedcall-sites-verifiedpascal16 -ret16 wvsprintf(ptr str ptr)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L391; all 2 direct call sites map to verified address-linked function rows and readable CAll 2 relocation-backed direct call sites are in verified functions whose evidence records argument order, segmented pointer or handle use, return handling, side effects, and branches.
1741228:02b0USERDEFMDICHILDPROC100verifiedunused-slot-verifiedpascal16 DefMDIChildProc(word word word long)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L410; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
1751228:02b4USERTRANSLATEMDISYSACCEL61verifiedbinary-reviewedpascal16 -ret16 TranslateMDISysAccel(word ptr)Wine 11.15 USER ordinal 451 prototype; sole call at 1018:1d91; reconstructed/tests/test_application_loop.cThe sole call follows main-window VMT +0x30 to a client object, passes client HWND +4 and exact MSG16 pointer, and booleanizes the BOOL16 result; null client skips the import.
1761228:02b8USERCREATEWINDOWEX341verifiedbinary-reviewedpascal16 HWND16 CreateWindowEx(long segstr segstr long s_word s_word s_word s_word HWND16 HMENU16 HINSTANCE16 segptr)disassembly 1018:13cd-1429; Wine 11.15 USER ordinal 452; reconstructed/tests/test_window_creation.cSole call passes exact extended/style dwords, VMT class far pointer, owned title, signed placement words, parent HWND, menu/id, process instance, far parameter, and stores returned HWND before common binding/error handling.
1771228:02bcKEYBOARDOrdinal_521474836473verifiedbinary-reviewedpascal16 -ret16 AnsiToOem(segstr segptr)disassembly 1008:2629-2634, 1020:04d4-04f7, and 1020:0683-06a6; Wine 11.15 KEYBOARD ordinal 5; path and Borland-record testsAll three call sites use identical source/destination buffers for in-place conversion: bounded DOS path, assigned TextRec name, and assigned FileRec name; results are ignored.
1781228:02c0KEYBOARDOrdinal_621474836471verifiedbinary-reviewedpascal16 -ret16 OemToAnsi(segstr segptr)disassembly 1008:25dc-25ea; Wine 11.15 KEYBOARD ordinal 6; reconstructed/tests/test_tpwincrt_lifecycle.cSole call passes the same 80-byte module-title buffer as source and destination for in-place OEM-to-ANSI conversion; return is ignored.
1791228:02c4KERNELGETVERSION00verifiedunused-slot-verifiedpascal16 GetVersion()Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L6; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
1801228:02c8KERNELGLOBALALLOC60verifiedunused-slot-verifiedpascal16 -ret16 GlobalAlloc(word long)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L18; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
1811228:02ccKERNELGLOBALFREE20verifiedunused-slot-verifiedpascal16 -ret16 GlobalFree(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L20; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
1821228:02d0KERNELGLOBALLOCK20verifiedunused-slot-verifiedpascal16 GlobalLock(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L21; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
1831228:02d4KERNELGLOBALUNLOCK20verifiedunused-slot-verifiedpascal16 -ret16 GlobalUnlock(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L22; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
1841228:02d8KERNELGLOBALHANDLE20verifiedunused-slot-verifiedpascal16 GlobalHandle(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L24; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
1851228:02dcKERNELGLOBALCOMPACT40verifiedunused-slot-verifiedpascal16 GlobalCompact(long)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L28; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
1861228:02e0KERNELWAITEVENT20verifiedunused-slot-verifiedpascal16 -ret16 WaitEvent(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L33; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
1871228:02e4KERNELGETCURRENTTASK00verifiedunused-slot-verifiedpascal16 GetCurrentTask()Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L39; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
1881228:02e8KERNELGETMODULEHANDLE40verifiedunused-slot-verifiedpascal16 GetModuleHandle(segstr)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L50; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
1891228:02ecKERNELGETMODULEFILENAME80verifiedunused-slot-verifiedpascal16 -ret16 GetModuleFileName(word ptr s_word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L52; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
1901228:02f0KERNELGETPROCADDRESS60verifiedunused-slot-verifiedpascal16 GetProcAddress(word str)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L53; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
1911228:02f4KERNELMAKEPROCINSTANCE60verifiedunused-slot-verifiedpascal16 MakeProcInstance(segptr word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L54; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
1921228:02f8KERNELFREEPROCINSTANCE40verifiedunused-slot-verifiedpascal16 -ret16 FreeProcInstance(segptr)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L55; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
1931228:02fcKERNELFINDRESOURCE100verifiedunused-slot-verifiedpascal16 -ret16 FindResource(word str str)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L63; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
1941228:0300KERNELLOADRESOURCE40verifiedunused-slot-verifiedpascal16 -ret16 LoadResource(word word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L64; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
1951228:0304KERNELLOCKRESOURCE20verifiedunused-slot-verifiedpascal16 LockResource(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L65; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
1961228:0308KERNELFREERESOURCE20verifiedunused-slot-verifiedpascal16 -ret16 FreeResource(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L66; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
1971228:030cKERNEL_LCLOSE20verifiedunused-slot-verifiedpascal16 -ret16 _lclose(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L85; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
1981228:0310KERNEL_LREAD80verifiedunused-slot-verifiedpascal16 -ret16 _lread(word segptr word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L86; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
1991228:0314KERNEL_LCREAT60verifiedunused-slot-verifiedpascal16 -ret16 _lcreat(str word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L87; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2001228:0318KERNEL_LOPEN60verifiedunused-slot-verifiedpascal16 -ret16 _lopen(str word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L89; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2011228:031cKERNEL_LWRITE80verifiedunused-slot-verifiedpascal16 -ret16 _lwrite(word ptr word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L90; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2021228:0320KERNELINITTASK00verifiedunused-slot-verifiedpascal16 -register InitTask()Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L95; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2031228:0324KERNELLOADLIBRARY40verifiedunused-slot-verifiedpascal16 -ret16 LoadLibrary(str)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L99; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2041228:0328KERNELFREELIBRARY20verifiedunused-slot-verifiedpascal16 -ret16 FreeLibrary(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L100; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2051228:032cKERNELSETERRORMODE20verifiedunused-slot-verifiedpascal16 -ret16 SetErrorMode(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L111; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2061228:0330KERNEL__AHINCR21474836470verifiedruntime-dataequate16 __AHINCR = 8Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L118Wine Win16 ordinal 114; this is runtime data, not a callable function.
2071228:0334KERNELGETPRIVATEPROFILEINT140verifiedunused-slot-verifiedpascal16 -ret16 GetPrivateProfileInt(str str s_word str)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L131; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2081228:0338KERNELGETDOSENVIRONMENT00verifiedunused-slot-verifiedpascal16 GetDOSEnvironment()Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L135; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2091228:033cKERNELGETWINFLAGS00verifiedunused-slot-verifiedpascal16 GetWinFlags()Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L136; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2101228:0340KERNELGETWINDOWSDIRECTORY60verifiedunused-slot-verifiedpascal16 -ret16 GetWindowsDirectory(ptr word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L138; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2111228:0344KERNELGETSYSTEMDIRECTORY60verifiedunused-slot-verifiedpascal16 -ret16 GetSystemDirectory(ptr word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L139; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2121228:0348KERNELGETFREESPACE20verifiedunused-slot-verifiedpascal16 GetFreeSpace(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L172; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2131228:034cKERNELALLOCCSTODSALIAS20verifiedunused-slot-verifiedpascal16 -ret16 AllocCStoDSAlias(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L173; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2141228:0350KERNELFREESELECTOR20verifiedunused-slot-verifiedpascal16 -ret16 FreeSelector(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L179; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2151228:0354KERNELPRESTOCHANGOSELECTOR40verifiedunused-slot-verifiedpascal16 -ret16 PrestoChangoSelector(word word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/krnl386.exe16/krnl386.exe16.spec#L180; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2161228:0358USERMESSAGEBOX120verifiedunused-slot-verifiedpascal16 -ret16 MessageBox(word str str word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L1; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2171228:035cUSERINITAPP20verifiedunused-slot-verifiedpascal16 -ret16 InitApp(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L5; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2181228:0360USERPOSTQUITMESSAGE00verifiedunused-slot-verifiedpascal16 -ret16 PostQuitMessage(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L6; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2191228:0364USERGETTICKCOUNT21474836470verifiedunused-slot-verifiedpascal16 GetTickCount()Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L11; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2201228:0368USERSETCAPTURE20verifiedunused-slot-verifiedpascal16 -ret16 SetCapture(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L17; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2211228:036cUSERRELEASECAPTURE00verifiedunused-slot-verifiedpascal16 -ret16 ReleaseCapture()Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L18; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2221228:0370USERSETFOCUS20verifiedunused-slot-verifiedpascal16 -ret16 SetFocus(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L21; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2231228:0374USERGETFOCUS00verifiedunused-slot-verifiedpascal16 -ret16 GetFocus()Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L22; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2241228:0378USERREMOVEPROP60verifiedunused-slot-verifiedpascal16 -ret16 RemoveProp(word ptr)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L23; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2251228:037cUSERGETPROP60verifiedunused-slot-verifiedpascal16 -ret16 GetProp(word str)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L24; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2261228:0380USERSETPROP80verifiedunused-slot-verifiedpascal16 -ret16 SetProp(word str word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L25; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2271228:0384USERSCREENTOCLIENT60verifiedunused-slot-verifiedpascal16 -ret16 ScreenToClient(word ptr)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L28; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2281228:0388USERISICONIC00verifiedunused-slot-verifiedpascal16 -ret16 IsIconic(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L30; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2291228:038cUSERGETWINDOWRECT60verifiedunused-slot-verifiedpascal16 -ret16 GetWindowRect(word ptr)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L31; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2301228:0390USERGETCLIENTRECT60verifiedunused-slot-verifiedpascal16 -ret16 GetClientRect(word ptr)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L32; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2311228:0394USERGETWINDOWTEXT00verifiedunused-slot-verifiedpascal16 -ret16 GetWindowText(word segptr word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L35; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2321228:0398USERSETWINDOWTEXT00verifiedunused-slot-verifiedpascal16 -ret16 SetWindowText(word segstr)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L36; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2331228:039cUSERBEGINPAINT80verifiedunused-slot-verifiedpascal16 -ret16 BeginPaint(word ptr)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L38; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2341228:03a0USERENDPAINT60verifiedunused-slot-verifiedpascal16 -ret16 EndPaint(word ptr)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L39; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2351228:03a4USERCREATEWINDOW340verifiedunused-slot-verifiedpascal16 -ret16 CreateWindow(str str long s_word s_word s_word s_word word word word segptr)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L40; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2361228:03a8USERSHOWWINDOW40verifiedunused-slot-verifiedpascal16 -ret16 ShowWindow(word word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L41; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2371228:03acUSERGETPARENT20verifiedunused-slot-verifiedpascal16 -ret16 GetParent(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L45; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2381228:03b0USERISWINDOW00verifiedunused-slot-verifiedpascal16 -ret16 IsWindow(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L46; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2391228:03b4USERISCHILD00verifiedunused-slot-verifiedpascal16 -ret16 IsChild(word word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L47; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2401228:03b8USERDESTROYWINDOW20verifiedunused-slot-verifiedpascal16 -ret16 DestroyWindow(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L52; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2411228:03bcUSERREGISTERCLASS40verifiedunused-slot-verifiedpascal16 -ret16 RegisterClass(ptr)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L56; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2421228:03c0USERSCROLLWINDOW140verifiedunused-slot-verifiedpascal16 -ret16 ScrollWindow(word s_word s_word ptr ptr)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L60; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2431228:03c4USERSETSCROLLPOS80verifiedunused-slot-verifiedpascal16 -ret16 SetScrollPos(word word s_word word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L61; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2441228:03c8USERSETSCROLLRANGE100verifiedunused-slot-verifiedpascal16 -ret16 SetScrollRange(word word s_word s_word word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L63; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2451228:03ccUSERGETDC20verifiedunused-slot-verifiedpascal16 -ret16 GetDC(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L65; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2461228:03d0USERRELEASEDC40verifiedunused-slot-verifiedpascal16 -ret16 ReleaseDC(word word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L67; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2471228:03d4USERSETCURSOR20verifiedunused-slot-verifiedpascal16 -ret16 SetCursor(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L68; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2481228:03d8USERENDDIALOG40verifiedunused-slot-verifiedpascal16 -ret16 EndDialog(word s_word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L87; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2491228:03dcUSERISDIALOGMESSAGE60verifiedunused-slot-verifiedpascal16 -ret16 IsDialogMessage(word ptr)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L89; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2501228:03e0USERGETDLGITEM40verifiedunused-slot-verifiedpascal16 -ret16 GetDlgItem(word word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L90; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2511228:03e4USERSETDLGITEMTEXT80verifiedunused-slot-verifiedpascal16 -ret16 SetDlgItemText(word word segstr)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L91; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2521228:03e8USERGETDLGITEMTEXT100verifiedunused-slot-verifiedpascal16 -ret16 GetDlgItemText(word word segptr word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L92; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2531228:03ecUSERSENDDLGITEMMESSAGE120verifiedunused-slot-verifiedpascal16 SendDlgItemMessage(word word word word long)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L100; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2541228:03f0USERMESSAGEBEEP20verifiedunused-slot-verifiedpascal16 -ret16 MessageBeep(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L103; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2551228:03f4USERGETKEYSTATE00verifiedunused-slot-verifiedpascal16 -ret16 GetKeyState(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L105; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2561228:03f8USERDEFWINDOWPROC100verifiedunused-slot-verifiedpascal16 DefWindowProc(word word word long)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L106; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2571228:03fcUSERGETMESSAGE140verifiedunused-slot-verifiedpascal16 -ret16 GetMessage(ptr word word word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L107; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2581228:0400USERPEEKMESSAGE140verifiedunused-slot-verifiedpascal16 -ret16 PeekMessage(ptr word word word word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L108; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2591228:0404USERSENDMESSAGE100verifiedunused-slot-verifiedpascal16 SendMessage(word word word long)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L110; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2601228:0408USERWAITMESSAGE00verifiedunused-slot-verifiedpascal16 -ret16 WaitMessage()Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L111; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2611228:040cUSERTRANSLATEMESSAGE40verifiedunused-slot-verifiedpascal16 -ret16 TranslateMessage(ptr)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L112; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2621228:0410USERDISPATCHMESSAGE40verifiedunused-slot-verifiedpascal16 DispatchMessage(ptr)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L113; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2631228:0414USERCALLWINDOWPROC140verifiedunused-slot-verifiedpascal16 CallWindowProc(segptr word word word long)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L121; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2641228:0418USERUPDATEWINDOW20verifiedunused-slot-verifiedpascal16 -ret16 UpdateWindow(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L123; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2651228:041cUSERINVALIDATERECT100verifiedunused-slot-verifiedpascal16 -ret16 InvalidateRect(word ptr word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L124; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2661228:0420USERGETWINDOWWORD40verifiedunused-slot-verifiedpascal16 -ret16 GetWindowWord(word s_word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L132; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2671228:0424USERGETWINDOWLONG40verifiedunused-slot-verifiedpascal16 GetWindowLong(word s_word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L134; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2681228:0428USERSETWINDOWLONG80verifiedunused-slot-verifiedpascal16 SetWindowLong(word s_word long)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L135; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2691228:042cUSERENABLEMENUITEM60verifiedunused-slot-verifiedpascal16 -ret16 EnableMenuItem(word word word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L154; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2701228:0430USERGETSYSTEMMENU40verifiedunused-slot-verifiedpascal16 -ret16 GetSystemMenu(word word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L155; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2711228:0434USERCREATECARET80verifiedunused-slot-verifiedpascal16 -ret16 CreateCaret(word word word word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L162; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2721228:0438USERDESTROYCARET00verifiedunused-slot-verifiedpascal16 -ret16 DestroyCaret()Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L163; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2731228:043cUSERSETCARETPOS40verifiedunused-slot-verifiedpascal16 -ret16 SetCaretPos(word word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L164; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2741228:0440USERSHOWCARET20verifiedunused-slot-verifiedpascal16 -ret16 ShowCaret(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L166; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2751228:0444USERLOADCURSOR60verifiedunused-slot-verifiedpascal16 -ret16 LoadCursor(word str)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L172; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2761228:0448USERLOADICON60verifiedunused-slot-verifiedpascal16 -ret16 LoadIcon(word str)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L173; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2771228:044cUSERLOADBITMAP60verifiedunused-slot-verifiedpascal16 -ret16 LoadBitmap(word str)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L174; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2781228:0450USERTRANSLATEACCELERATOR80verifiedunused-slot-verifiedpascal16 -ret16 TranslateAccelerator(word word ptr)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L177; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2791228:0454USERGETSYSTEMMETRICS00verifiedunused-slot-verifiedpascal16 -ret16 GetSystemMetrics(s_word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L178; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2801228:0458USERGETSYSCOLOR00verifiedunused-slot-verifiedpascal16 GetSysColor(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L179; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2811228:045cUSERDIALOGBOXPARAM160verifiedunused-slot-verifiedpascal16 -ret16 DialogBoxParam(word str word segptr long)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L239; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2821228:0460USERCREATEDIALOGPARAM160verifiedunused-slot-verifiedpascal16 -ret16 CreateDialogParam(word str word segptr long)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L241; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2831228:0464USERISZOOMED00verifiedunused-slot-verifiedpascal16 -ret16 IsZoomed(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L272; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2841228:0468USERSELECTPALETTE60verifiedunused-slot-verifiedpascal16 -ret16 SelectPalette(word word word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L282; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2851228:046cUSERREALIZEPALETTE20verifiedunused-slot-verifiedpascal16 -ret16 RealizePalette(word)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L283; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2861228:0470USERDEFDLGPROC100verifiedunused-slot-verifiedpascal16 DefDlgProc(word word word long)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L304; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2871228:0474USERGETCLASSINFO100verifiedunused-slot-verifiedpascal16 -ret16 GetClassInfo(word segstr ptr)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L376; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2881228:0478USERWVSPRINTF120verifiedunused-slot-verifiedpascal16 -ret16 wvsprintf(ptr str ptr)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L391; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2891228:047cUSERDEFMDICHILDPROC100verifiedunused-slot-verifiedpascal16 DefMDIChildProc(word word word long)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L410; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2901228:0480USERTRANSLATEMDISYSACCEL60verifiedunused-slot-verifiedpascal16 -ret16 TranslateMDISysAccel(word ptr)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L414; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2911228:0484USERCREATEWINDOWEX340verifiedunused-slot-verifiedpascal16 -ret16 CreateWindowEx(long str str long s_word s_word s_word s_word word word word segptr)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/user.exe16/user.exe16.spec#L415; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2921228:0488KEYBOARDOrdinal_521474836470verifiedunused-slot-verifiedpascal16 -ret16 AnsiToOem(str ptr)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/keyboard.drv16/keyboard.drv16.spec#L5; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.
2931228:048cKEYBOARDOrdinal_621474836470verifiedunused-slot-verifiedpascal16 -ret16 OemToAnsi(str ptr)Wine wine-11.15 https://gitlab.winehq.org/wine/wine/-/raw/wine-11.15/dlls/keyboard.drv16/keyboard.drv16.spec#L6; complete Ghidra CALL inventory and NE relocation inventory: zero call sitesExplicit imported NE slot with no CALL reference anywhere in the complete image; no TDKPIN call-site behavior exists to reconstruct.