home *** CD-ROM | disk | FTP | other *** search
/ Mastering Visual Basic 6 / mastvb6.iso / numega / sc501.exe / data1.cab / Examples / IT_GUID.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-11-25  |  1.3 KB  |  51 lines

  1. /*
  2.  * IT_GUID.h
  3.  * $Header: /bcsample/IFACEDLL/IT_GUID.H 1     5/28/96 1:12p Dave $
  4.  *
  5.  * Description:
  6.  *  The CLSID for the Interface Test Object. 
  7.  *
  8.  * Notes:
  9.  *  <implementation notes go here>
  10.  *
  11.  ***********************************************************************
  12.  *
  13.  * NuMega Technologies, Inc.
  14.  * P.O. Box 7780
  15.  * Nashua, NH 03060
  16.  *
  17.  * (c) Copyright 1994, 1995, 1996 NuMega Technologies, Inc.
  18.  * ALL RIGHTS RESERVED.
  19.  *
  20.  ***********************************************************************
  21.  *
  22.  **********************************************************************/
  23.  
  24. #ifndef _IT_GUID_H
  25. #define _IT_GUID_H
  26.  
  27. #ifdef INITGUIDS
  28. #include <initguid.h>
  29. #include <OleCtlID.h>
  30. #endif      //INITGUIDS
  31.  
  32. // The Interface Test GUID!
  33. // {F1137A20-5048-11cf-9A2A-B46694919881}
  34. DEFINE_GUID( CLSID_InterfaceTest ,
  35.              0xF1137A20          ,
  36.              0x5048              ,
  37.              0x11cf              ,
  38.              0x9A                ,
  39.              0x2A                ,
  40.              0xB4                ,
  41.              0x66                ,
  42.              0x94                ,
  43.              0x91                ,
  44.              0x98                ,
  45.              0x81                 ) ;
  46.  
  47.  
  48. #endif      // _IT_GUID_H
  49.  
  50.  
  51.