Files
firestorm/build-env/VisualStudio6/VC98/Include/ObjModel/BLDGUID.H
T
Cyd 2b8ca921cb Initial full mirror of c:\VWE (source + assets + toolchain + outputs) via Git LFS
Complete disaster-recovery snapshot: engine/game source, game data assets,
VC6 toolchain + DX SDKs, build outputs, deployed game, and _UNUSED archive.
Large binaries in Git LFS; text preserved byte-for-byte (core.autocrlf=false,
no eol attributes). See RECOVERY.md for the one-clone rebuild procedure.
2026-06-24 21:28:16 -05:00

52 lines
1.8 KiB
C++

// Microsoft Visual Studio Object Model
// Copyright (C) 1996-1997 Microsoft Corporation
// All rights reserved.
/////////////////////////////////////////////////////////////////////////////
// bldguid.h
// Declaration of GUIDs used for objects found in the type library
// VISUAL STUDIO 97 PROJECT SYSTEM (SharedIDE\bin\ide\devbld.pkg)
// NOTE!!! This file uses the DEFINE_GUID macro. If you #include
// this file in your project, then you must also #include it in
// exactly one of your project's other files with a
// "#include <initguid.h>" beforehand: i.e.,
// #include <initguid.h>
// #include <bldguid.h>
// If you fail to do this, you will get UNRESOLVED EXTERNAL linker errors.
// The Developer Studio add-in wizard automatically does this for you.
#ifndef __BLDGUID_H__
#define __BLDGUID_H__
/////////////////////////////////////////////////////////////////////////
// BuildProject Object IID
// {96961264-A819-11cf-AD07-00A0C9034965}
struct __declspec(uuid("{96961264-A819-11cf-AD07-00A0C9034965}")) IBuildProject;
DEFINE_GUID(IID_IBuildProject,
0x96961264L,0xA819,0x11CF,0xAD,0x07,0x00,0xA0,0xC9,0x03,0x49,0x65);
/////////////////////////////////////////////////////////////////////////
// Configuration Object IID
// {96961263-A819-11cf-AD07-00A0C9034965}
struct __declspec(uuid("{96961263-A819-11cf-AD07-00A0C9034965}")) IConfiguration;
DEFINE_GUID(IID_IConfiguration,
0x96961263L,0xA819,0x11CF,0xAD,0x07,0x00,0xA0,0xC9,0x03,0x49,0x65);
/////////////////////////////////////////////////////////////////////////
// Configurations Collection Object IID
// {96961260-A819-11cf-AD07-00A0C9034965}
struct __declspec(uuid("{96961260-A819-11cf-AD07-00A0C9034965}")) IConfigurations;
DEFINE_GUID(IID_IConfigurations,
0x96961260L,0xA819,0x11CF,0xAD,0x07,0x00,0xA0,0xC9,0x03,0x49,0x65);
#endif //__BLDGUID_H__