59 lines
2.7 KiB
C
59 lines
2.7 KiB
C
// -----------------------------------------------------------------------
|
|
// Microsoft Distributed Transaction Coordinator (Microsoft Confidential)
|
|
// Copyright 1994 - 1995 Microsoft Corporation. All Rights Reserved.
|
|
// @doc
|
|
// @module COMT_GU.H | Header for all project guids.<nl><nl>
|
|
// Description:<nl>
|
|
// All project guids are declared here.<nl><nl>
|
|
// Usage:<nl>
|
|
// Clients of this DLL require this file.
|
|
// @rev 0 | 5/09/95 | rbarnes | Created - note that the following are
|
|
// reserved
|
|
// d959f1b9-9e42-11ce-8bca-0080c7a01d7f
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
#ifndef _LGMGRGU_H
|
|
# define _LGMGRGU_H
|
|
|
|
// ===============================
|
|
// INCLUDES:
|
|
// ===============================
|
|
|
|
// TODO: KEEP: For each set of <n> guids added to this project:
|
|
// - Run command-line utility "UUIDGEN -s -n<n> -o<path and file>.tmp".
|
|
// - Copy the tmp file contents; paste them to the end of the guids below.
|
|
// - Assign each guid a name with a prefix of "CLSID_", "IID_", or "GUID_".
|
|
// - Convert each INTERFACENAME struct to the illustrated DEFINE_GUID format.
|
|
|
|
|
|
// CLSID_CLgMgr: {d959f1b0-9e42-11ce-8b97-0080c7a01d7f}
|
|
DEFINE_GUID (CLSID_CLogMgr, 0xd959f1b0, 0x9e42, 0x11ce, 0x8b, 0x97, 0x00, 0x80, 0xc7, 0xa0, 0x1d, 0x7f);
|
|
|
|
|
|
// IID_ILogStorage: {d959f1b1-9e42-11ce-8b97-0080c7a01d7f}
|
|
DEFINE_GUID (IID_ILogStorage, 0xd959f1b1, 0x9e42, 0x11ce, 0x8b, 0x97, 0x00, 0x80, 0xc7, 0xa0, 0x1d, 0x7f);
|
|
|
|
// IID_ILogRead: {d959f1b2-9e42-11ce-8b97-0080c7a01d7f}
|
|
DEFINE_GUID (IID_ILogRead, 0xd959f1b2, 0x9e42, 0x11ce, 0x8b, 0x97, 0x00, 0x80, 0xc7, 0xa0, 0x1d, 0x7f);
|
|
|
|
// IID_ILogWrite: {d959f1b3-9e42-11ce-8b97-0080c7a01d7f}
|
|
DEFINE_GUID (IID_ILogWrite, 0xd959f1b3, 0x9e42, 0x11ce, 0x8b, 0x97, 0x00, 0x80, 0xc7, 0xa0, 0x1d, 0x7f);
|
|
|
|
// IID_ILogRecordPointer: {d959f1b4-9e42-11ce-8b97-0080c7a01d7f}
|
|
DEFINE_GUID (IID_ILogRecordPointer,0xd959f1b4, 0x9e42, 0x11ce, 0x8b, 0x97, 0x00, 0x80, 0xc7, 0xa0, 0x1d, 0x7f);
|
|
|
|
// IID_ILogInit: {d959f1b5-9e42-11ce-8b97-0080c7a01d7f}
|
|
DEFINE_GUID (IID_ILogInit, 0xd959f1b5, 0x9e42, 0x11ce, 0x8b, 0x97, 0x00, 0x80, 0xc7, 0xa0, 0x1d, 0x7f);
|
|
|
|
// IID_ILogWriteAsynch: {d959f1b6-9e42-11ce-8b97-0080c7a01d7f}
|
|
DEFINE_GUID (IID_ILogWriteAsynch, 0xd959f1b6, 0x9e42, 0x11ce, 0x8b, 0x97, 0x00, 0x80, 0xc7, 0xa0, 0x1d, 0x7f);
|
|
|
|
// IID_ILogCreateStorage: {d959f1b7-9e42-11ce-8b97-0080c7a01d7f}
|
|
DEFINE_GUID (IID_ILogCreateStorage, 0xd959f1b7, 0x9e42, 0x11ce, 0x8b, 0x97, 0x00, 0x80, 0xc7, 0xa0, 0x1d, 0x7f);
|
|
|
|
// IID_ILogUISConnect: {d959f1b8-9e42-11ce-8b97-0080c7a01d7f}
|
|
DEFINE_GUID (IID_ILogUISConnect, 0xd959f1b8, 0x9e42, 0x11ce, 0x8b, 0x97, 0x00, 0x80, 0xc7, 0xa0, 0x1d, 0x7f);
|
|
|
|
#endif _LGMGRGU_H
|