- BORLAND/: Borland C++ 4.52 (chosen over 4.5 by byte-match: CODE/RP/CW32.LIB
is identical to 4.52's install lib). BCC32/TLINK32/TLIB/MAKE run natively on
Win11; CODE/BT/OPT.MAK is the shipped BTL4OPT.EXE's exact flag recipe
(extender = Borland PowerPack DPMI32, not Phar Lap TNT).
- restoration/source410/: the literal 1995-form reconstruction of the missing
BT game source (never mixed into CODE/). Round 1-3 state:
* 6 of 10 surviving original TUs COMPILE CLEAN under the period toolchain
(BTMSSN, BTCNSL, BTSCNRL, BTTEAM, BTL4MODE, BTL4ARND) - first builds
since 1996.
* BT_L4/BTL4APP.CPP pilot reconstruction: 12/12 functions, Fail() lands on
its binary-recorded line 400 exactly.
* BT/BTCNSL.HPP: console wire IDs recovered from the binary's ctors
(Killed=9, Damaged=10, ScoreUpdate=13, DeathWithoutHonor=15 [T1];
TeamScore=12 flagged [T4]).
* MUNGA/: 8 engine-header backfills back-dated from the BT412 WinTesla tree
(VDATA numbering decomp-verified; AUDREND's OpenAL-era virtual removed -
the period compiler is the drift detector).
* Tooling: backdate.py (WinTesla->1995 header transform), compile410.sh
(per-TU verification sweep under authentic OPT.MAK flags).
* README: corrected roadmap - MECH.HPP is the capstone grown with the mech
TU reconstructions; BTREG.CPP green = the header-family milestone.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
93 lines
3.0 KiB
C++
93 lines
3.0 KiB
C++
//----------------------------------------------------------------------------
|
|
// ObjectWindows
|
|
// (C) Copyright 1992, 1994 by Borland International, All Rights Reserved
|
|
//
|
|
// Implementation of TPrintDC
|
|
//----------------------------------------------------------------------------
|
|
#include <owl/owlpch.h>
|
|
#include <owl/dc.h>
|
|
|
|
#if defined(BI_PLAT_WIN32)
|
|
extern "C" {
|
|
int WINAPI DeviceCapabilitiesExA(LPCSTR, LPCSTR, LPCSTR, WORD,
|
|
LPSTR, CONST DEVMODEA*);
|
|
int WINAPI DeviceCapabilitiesExW(LPCWSTR, LPCWSTR, LPCWSTR, WORD,
|
|
LPWSTR, CONST DEVMODEW*);
|
|
#if defined(UNICODE)
|
|
#define DeviceCapabilitiesEx DeviceCapabilitiesExW
|
|
#else
|
|
#define DeviceCapabilitiesEx DeviceCapabilitiesExA
|
|
#endif // !UNICODE
|
|
}
|
|
typedef int (WINAPI* DeviceCapabilitiesFcn)(LPCSTR, LPCSTR, WORD, LPSTR, CONST DEVMODEA*);
|
|
#define PROC_DEVICECAPABILITIES MAKEINTRESOURCE(91)
|
|
#else
|
|
typedef uint32 (CALLBACK* DeviceCapabilitiesFcn)(LPCSTR, LPCSTR, WORD, LPSTR, const DEVMODE far*);
|
|
#endif
|
|
|
|
TPrintDC::TPrintDC(HDC handle, TAutoDelete autoDelete)
|
|
:
|
|
TCreatedDC(handle, autoDelete)
|
|
{
|
|
DocInfo.cbSize = sizeof(DocInfo);
|
|
}
|
|
|
|
TPrintDC::TPrintDC(const char far* driver, const char far* device,
|
|
const char far* output, const DEVMODE far* initData)
|
|
:
|
|
TCreatedDC(driver, device, output, initData)
|
|
{
|
|
DocInfo.cbSize = sizeof(DocInfo);
|
|
}
|
|
|
|
uint32
|
|
TPrintDC::DeviceCapabilities(const char far* driver,
|
|
const char far* device,
|
|
const char far* port,
|
|
int capability,
|
|
char far* output,
|
|
LPDEVMODE devmode)
|
|
{
|
|
//
|
|
// DeviceCapabilitiesEx not functional in this Win32 (NT) release
|
|
//
|
|
#if 0 && defined(BI_PLAT_WIN32)
|
|
return ::DeviceCapabilitiesEx(driver, device, port, capability, output, devmode);
|
|
|
|
//
|
|
// DeviceCapabilities missing in Win32s
|
|
//
|
|
#elif 0 && defined(BI_PLAT_WIN32)
|
|
return ::DeviceCapabilities(device, port, (uint16)capability, output, devmode);
|
|
|
|
//
|
|
// Hand call DeviceCapabilities due to Win32s missing function!
|
|
//
|
|
#else
|
|
uint32 caps = 0;
|
|
#if defined(BI_PLAT_WIN32)
|
|
//
|
|
// Try the Win32 DeviceCapabilitiesEx function
|
|
//
|
|
caps = ::DeviceCapabilitiesEx(driver, device, port, (uint16)capability, output, devmode);
|
|
if (GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
|
|
return caps;
|
|
#endif
|
|
|
|
//
|
|
// Locate & call the DeviceCapabilities function within the printer driver
|
|
// itself.
|
|
//
|
|
HINSTANCE driverInst = ::LoadLibrary(driver);
|
|
|
|
if (driverInst) {
|
|
DeviceCapabilitiesFcn deviceCapabilities =
|
|
(DeviceCapabilitiesFcn)::GetProcAddress(driverInst, PROC_DEVICECAPABILITIES);
|
|
if (deviceCapabilities)
|
|
caps = deviceCapabilities(device, port, (uint16)capability, output, devmode);
|
|
::FreeLibrary(driverInst);
|
|
}
|
|
return caps;
|
|
#endif
|
|
}
|