74 lines
2.3 KiB
C
74 lines
2.3 KiB
C
|
|
||
|
//+---------------------------------------------------------------------------
|
||
|
//
|
||
|
// Microsoft Windows
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
//
|
||
|
// File: sifmt_i.c
|
||
|
//
|
||
|
// Contents: Defines Format IDs for the SummaryInformation and DocumentSummaryInformation
|
||
|
// property sets.
|
||
|
// This file is named so the this file will be include into UUID.LIB
|
||
|
//
|
||
|
// History: 1/25/96 MikeHill Created
|
||
|
//
|
||
|
//----------------------------------------------------------------------------
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
#define INITGUID
|
||
|
|
||
|
#include <guiddef.h>
|
||
|
|
||
|
|
||
|
// The FMTID of the "SummaryInformation" property set.
|
||
|
|
||
|
DEFINE_GUID( FMTID_SummaryInformation,
|
||
|
0xf29f85e0, 0x4ff9, 0x1068,
|
||
|
0xab, 0x91, 0x08, 0x00, 0x2b, 0x27, 0xb3, 0xd9 );
|
||
|
|
||
|
// The FMTID of the first Section of the "DocumentSummaryInformation" property set.
|
||
|
|
||
|
DEFINE_GUID( FMTID_DocSummaryInformation,
|
||
|
0xd5cdd502, 0x2e9c, 0x101b,
|
||
|
0x93, 0x97, 0x08, 0x00, 0x2b, 0x2c, 0xf9, 0xae );
|
||
|
|
||
|
// The FMTID of the section Section of the "DocumentSummaryInformation" property set.
|
||
|
|
||
|
DEFINE_GUID( FMTID_UserDefinedProperties,
|
||
|
0xd5cdd505, 0x2e9c, 0x101b,
|
||
|
0x93, 0x97, 0x08, 0x00, 0x2b, 0x2c, 0xf9, 0xae );
|
||
|
|
||
|
|
||
|
DEFINE_GUID( FMTID_PropertyBag,
|
||
|
0x20001801, 0x5DE6, 0x11D1,
|
||
|
0x8E, 0x38, 0x00, 0xC0, 0x4F, 0xB9, 0x38, 0x6D );
|
||
|
|
||
|
// The FMTID of the "DiscardableInformation" property set
|
||
|
|
||
|
DEFINE_GUID( FMTID_DiscardableInformation,
|
||
|
0xd725ebb0, 0xc9b8, 0x11d1,
|
||
|
0x89, 0xbc, 0x00, 0x00, 0xf8, 0x04, 0xb0, 0x57 );
|
||
|
|
||
|
|
||
|
// ImageSummaryInfo propset
|
||
|
DEFINE_GUID( FMTID_ImageSummaryInformation,
|
||
|
0x6444048f, 0x4c8b, 0x11d1,
|
||
|
0x8b, 0x70, 0x8, 0x0, 0x36, 0xb1, 0x1a, 0x3 ) ;
|
||
|
|
||
|
// AudioSummaryInfo propset
|
||
|
DEFINE_GUID( FMTID_AudioSummaryInformation,
|
||
|
0x64440490, 0x4c8b, 0x11d1,
|
||
|
0x8b, 0x70, 0x8, 0x0, 0x36, 0xb1, 0x1a, 0x3 ) ;
|
||
|
|
||
|
// VideoSummaryInfo propset
|
||
|
DEFINE_GUID( FMTID_VideoSummaryInformation,
|
||
|
0x64440491, 0x4c8b, 0x11d1,
|
||
|
0x8b, 0x70, 0x8, 0x0, 0x36, 0xb1, 0x1a, 0x3 ) ;
|
||
|
|
||
|
// MediaFileSummaryInfo propset - common properties for multimedia files
|
||
|
DEFINE_GUID( FMTID_MediaFileSummaryInformation,
|
||
|
0x64440492, 0x4c8b, 0x11d1,
|
||
|
0x8b, 0x70, 0x8, 0x0, 0x36, 0xb1, 0x1a, 0x3 ) ;
|