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
52 lines
1.4 KiB
C
52 lines
1.4 KiB
C
#ifndef TDKPIN_RESOURCES_H
|
|
#define TDKPIN_RESOURCES_H
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
/*
|
|
* Semantic C view of TDKPIN.EXE's NE resource table. The immutable payload
|
|
* bytes live in assets/raw and are tied to these entries by type, id, file
|
|
* offset, allocation size, and assets/manifest.json's SHA-256 digests.
|
|
*/
|
|
typedef enum {
|
|
TDKPIN_RESOURCE_DAT,
|
|
TDKPIN_RESOURCE_PAL,
|
|
TDKPIN_RESOURCE_WAV,
|
|
TDKPIN_RESOURCE_BITMAP,
|
|
TDKPIN_RESOURCE_ICON,
|
|
TDKPIN_RESOURCE_GROUP_ICON,
|
|
TDKPIN_RESOURCE_VERSION,
|
|
TDKPIN_RESOURCE_DIALOG,
|
|
} TdkpinResourceType;
|
|
|
|
typedef enum {
|
|
/* Loaded or selected by an instruction path reconstructed from the image. */
|
|
TDKPIN_RESOURCE_DIRECT,
|
|
/* Resolved by Windows as a dependency or metadata, rather than image code. */
|
|
TDKPIN_RESOURCE_SYSTEM_RESOLVED,
|
|
/* Linked Borland library resource with no reachable in-image selector. */
|
|
TDKPIN_RESOURCE_LINKED_UNUSED,
|
|
} TdkpinResourceDisposition;
|
|
|
|
typedef struct {
|
|
TdkpinResourceType type;
|
|
uint16_t id;
|
|
uint32_t file_offset;
|
|
uint32_t allocated_size;
|
|
uint32_t meaningful_size;
|
|
uint16_t flags;
|
|
uint16_t width;
|
|
uint16_t height;
|
|
uint32_t sample_rate;
|
|
TdkpinResourceDisposition disposition;
|
|
const char *role;
|
|
} TdkpinResourceDescriptor;
|
|
|
|
enum { TDKPIN_RESOURCE_COUNT = 63 };
|
|
|
|
extern const TdkpinResourceDescriptor
|
|
tdkpin_resource_catalog[TDKPIN_RESOURCE_COUNT];
|
|
|
|
#endif
|