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

  1. /*
  2.  * IFT_OLE.h
  3.  * $Header: /bcsample/IFACEDLL/IFT_OLE.H 1     5/28/96 1:12p Dave $
  4.  *
  5.  * Description:
  6.  *  Common OLE includes and type definitions.
  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 _IFT_OLE_H
  25. #define _IFT_OLE_H
  26.  
  27. #include <windows.h>
  28. #include <ole2.h>
  29. #include <ole2ver.h>
  30. #include <olectl.h>
  31.  
  32. #ifndef PPVOID
  33. typedef LPVOID * PPVOID;
  34. #endif  //PPVOID
  35.  
  36. // Type for an object-destroyed callback
  37. typedef void (*PFNDESTROYED)(void);
  38.  
  39.  
  40. #endif // _IFT_OLE_H