home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / com / tutsamp / inc / pageguid.h < prev    next >
Text File  |  1997-08-05  |  3KB  |  77 lines

  1. /*+==========================================================================
  2.   File:      PAGEGUID.H
  3.  
  4.   Summary:   This is the common include file for the GUIDs of page-related
  5.              COM Interfaces and COM Objects. GUIDs are defined for the
  6.              Interfaces and CLSIDs for the COM objects constructed using
  7.              those interfaces.
  8.  
  9.              This file is global to all the Tutorial Code Samples (kept
  10.              in the ..\INC directory).  It is a good practice to
  11.              factor out Interface and GUID specifications to reduce the
  12.              possibility of GUID or interface conflicts.
  13.  
  14.   Classes:   .
  15.  
  16.   Functions: .
  17.  
  18.   Origin:    5-26-97: atrent - Editor inheritance from PAPGUIDS.H.
  19.  
  20. ----------------------------------------------------------------------------
  21.   This file is part of the Microsoft COM Tutorial Code Samples.
  22.  
  23.   Copyright (C) Microsoft Corporation, 1997.  All rights reserved.
  24.  
  25.   This source code is intended only as a supplement to Microsoft
  26.   Development Tools and/or on-line documentation.  See these other
  27.   materials for detailed information regarding Microsoft code samples.
  28.  
  29.   THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  30.   KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  31.   IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  32.   PARTICULAR PURPOSE.
  33. ==========================================================================+*/
  34.  
  35. #if !defined(PAGEGUID_H)
  36. #define PAGEGUID_H
  37.  
  38. #if !defined(RC_INCLUDE)
  39.  
  40.  
  41. /*---------------------------------------------------------------------------
  42.   Here are the IIDs for interfaces and the CLSIDs for the Class Factories
  43.   of the persistent page-related COM components in the PERSERVE, PERTEXT,
  44.   PERDRAW, and PERCLIEN code samples.
  45. ---------------------------------------------------------------------------*/
  46. DEFINE_GUID(IID_IPageList,
  47.   0x0002da10, 0x0000, 0x0000, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46);
  48.  
  49. DEFINE_GUID(IID_IPageListSink,
  50.   0x0002da11, 0x0000, 0x0000, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46);
  51.  
  52. DEFINE_GUID(CLSID_PageList,
  53.   0x0002da12, 0x0000, 0x0000, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46);
  54.  
  55. DEFINE_GUID(IID_ITextPage,
  56.   0x0002da13, 0x0000, 0x0000, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46);
  57.  
  58. DEFINE_GUID(IID_ITextPageSink,
  59.   0x0002da14, 0x0000, 0x0000, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46);
  60.  
  61. DEFINE_GUID(CLSID_TextPage,
  62.   0x0002da15, 0x0000, 0x0000, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46);
  63.  
  64. DEFINE_GUID(IID_IDrawPage,
  65.   0x0002da16, 0x0000, 0x0000, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46);
  66.  
  67. DEFINE_GUID(IID_IDrawPageSink,
  68.   0x0002da17, 0x0000, 0x0000, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46);
  69.  
  70. DEFINE_GUID(CLSID_DrawPage,
  71.   0x0002da18, 0x0000, 0x0000, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46);
  72.  
  73.  
  74. #endif // RC_INCLUDE
  75.  
  76. #endif // PAGEGUID_H
  77.