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
21 lines
594 B
C
21 lines
594 B
C
#ifndef TDKPIN_COMMAND_LINE_H
|
|
#define TDKPIN_COMMAND_LINE_H
|
|
|
|
#include "tdkpin_segmented.h"
|
|
|
|
extern Win16FarPtr g_borland_command_line; /* 1028:0702/0704 */
|
|
extern HINSTANCE16 g_win16_instance; /* 1028:06fe */
|
|
|
|
typedef struct {
|
|
Win16FarPtr token;
|
|
uint16_t length;
|
|
uint16_t remaining_index;
|
|
} BorlandCommandToken;
|
|
|
|
BorlandCommandToken borland_scan_command_token(uint16_t index); /* 1020:0871 */
|
|
uint16_t borland_parameter_count(void); /* 1020:0866 */
|
|
void borland_parameter_string(
|
|
uint16_t index, Win16FarPtr destination); /* 1020:082e */
|
|
|
|
#endif
|