home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / vc98 / include / comlite.h < prev    next >
C/C++ Source or Header  |  1998-04-25  |  1KB  |  37 lines

  1. //==========================================================================;
  2. //
  3. //  THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  4. //  KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  5. //  IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
  6. //  PURPOSE.
  7. //
  8. //  Copyright (c) 1992 - 1997  Microsoft Corporation.  All Rights Reserved.
  9. //
  10. //--------------------------------------------------------------------------;
  11.  
  12. /******************************Module*Header*******************************\
  13. * Module Name: ComLite.h
  14. *
  15. * This header file is to provide a migration path for uses of ActiveMovie
  16. * betas 1 and 2.
  17. *
  18. \**************************************************************************/
  19.  
  20.  
  21. #ifndef _INC_COMLITE_
  22. #define _INC_COMLITE_
  23.  
  24. #define QzInitialize            CoInitialize
  25. #define QzUninitialize          CoUninitialize
  26. #define QzFreeUnusedLibraries   CoFreeUnusedLibraries
  27.  
  28. #define QzGetMalloc             CoGetMalloc
  29. #define QzTaskMemAlloc          CoTaskMemAlloc
  30. #define QzTaskMemRealloc        CoTaskMemRealloc
  31. #define QzTaskMemFree           CoTaskMemFree
  32. #define QzCreateFilterObject    CoCreateInstance
  33. #define QzCLSIDFromString       CLSIDFromString
  34. #define QzStringFromGUID2       StringFromGUID2
  35.  
  36. #endif  // _INC_COMLITE_
  37.