Files
TeslaRel410/BORLAND/BC45/INCLUDE/COGUID.H
T
CydandClaude Fable 5 63312e07f9 source410: literal 4.10 source reconstruction + BC++ 4.52 fleet toolchain archived
- 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>
2026-07-19 07:33:26 -05:00

77 lines
3.2 KiB
C++

/*****************************************************************************\
* *
* coguid.h - Master definition of GUIDs for compobj.dll *
* *
* OLE Version 2.0 *
* *
\*****************************************************************************/
/*
* C/C++ Run Time Library - Version 6.5
*
* Copyright (c) 1994 by Borland International
* All Rights Reserved.
*
*/
#if !defined(__COGUID_H)
#define __COGUID_H
/* this file is the master definition of all GUIDs for the component object
model and is included in compobj.h. Some GUIDs for moinkers and storage
appear here as well. All of these GUIDs are OLE GUIDs only in the sense
that part of the GUID range owned by OLE was used to define them.
NOTE: The second byte of all of these GUIDs is 0.
*/
DEFINE_GUID(GUID_NULL, 0L, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
DEFINE_OLEGUID(IID_IUnknown, 0x00000000L, 0, 0);
DEFINE_OLEGUID(IID_IClassFactory, 0x00000001L, 0, 0);
DEFINE_OLEGUID(IID_IMalloc, 0x00000002L, 0, 0);
DEFINE_OLEGUID(IID_IMarshal, 0x00000003L, 0, 0);
/* RPC related interfaces */
DEFINE_OLEGUID(IID_IRpcChannel, 0x00000004L, 0, 0);
DEFINE_OLEGUID(IID_IRpcStub, 0x00000005L, 0, 0);
DEFINE_OLEGUID(IID_IStubManager, 0x00000006L, 0, 0);
DEFINE_OLEGUID(IID_IRpcProxy, 0x00000007L, 0, 0);
DEFINE_OLEGUID(IID_IProxyManager, 0x00000008L, 0, 0);
DEFINE_OLEGUID(IID_IPSFactory, 0x00000009L, 0, 0);
/* storage related interfaces */
DEFINE_OLEGUID(IID_ILockBytes, 0x0000000aL, 0, 0);
DEFINE_OLEGUID(IID_IStorage, 0x0000000bL, 0, 0);
DEFINE_OLEGUID(IID_IStream, 0x0000000cL, 0, 0);
DEFINE_OLEGUID(IID_IEnumSTATSTG, 0x0000000dL, 0, 0);
/* moniker related interfaces */
DEFINE_OLEGUID(IID_IBindCtx, 0x0000000eL, 0, 0);
DEFINE_OLEGUID(IID_IMoniker, 0x0000000fL, 0, 0);
DEFINE_OLEGUID(IID_IRunningObjectTable, 0x00000010L, 0, 0);
DEFINE_OLEGUID(IID_IInternalMoniker, 0x00000011L, 0, 0);
/* storage related interfaces */
DEFINE_OLEGUID(IID_IRootStorage, 0x00000012L, 0, 0);
DEFINE_OLEGUID(IID_IDfReserved1, 0x00000013L, 0, 0);
DEFINE_OLEGUID(IID_IDfReserved2, 0x00000014L, 0, 0);
DEFINE_OLEGUID(IID_IDfReserved3, 0x00000015L, 0, 0);
/* concurrency releated interfaces */
DEFINE_OLEGUID(IID_IMessageFilter, 0x00000016L, 0, 0);
/* CLSID of standard marshaler */
DEFINE_OLEGUID(CLSID_StdMarshal, 0x00000017L, 0, 0);
/* interface on server for getting info for std marshaler */
DEFINE_OLEGUID(IID_IStdMarshalInfo, 0x00000018L, 0, 0);
/* interface to inform object of number of external connections */
DEFINE_OLEGUID(IID_IExternalConnection, 0x00000019L, 0, 0);
/* NOTE: LSB 0x1a through 0xff are reserved for future use */
#endif /* __COGUID_H */