home *** CD-ROM | disk | FTP | other *** search
/ Beginning Direct3D Game Programming / Direct3D.iso / directx / dxf / include / comlite.h < prev    next >
C/C++ Source or Header  |  2000-10-01  |  946b  |  27 lines

  1. //------------------------------------------------------------------------------
  2. // File: COMLite.h
  3. //
  4. // Desc: This header file is to provide a migration path for users of 
  5. //       ActiveMovie betas 1 and 2.
  6. //
  7. // Copyright (c) 1992 - 2000, Microsoft Corporation.  All rights reserved.
  8. //------------------------------------------------------------------------------
  9.  
  10.  
  11. #ifndef _INC_COMLITE_
  12. #define _INC_COMLITE_
  13.  
  14. #define QzInitialize            CoInitialize
  15. #define QzUninitialize          CoUninitialize
  16. #define QzFreeUnusedLibraries   CoFreeUnusedLibraries
  17.  
  18. #define QzGetMalloc             CoGetMalloc
  19. #define QzTaskMemAlloc          CoTaskMemAlloc
  20. #define QzTaskMemRealloc        CoTaskMemRealloc
  21. #define QzTaskMemFree           CoTaskMemFree
  22. #define QzCreateFilterObject    CoCreateInstance
  23. #define QzCLSIDFromString       CLSIDFromString
  24. #define QzStringFromGUID2       StringFromGUID2
  25.  
  26. #endif  // _INC_COMLITE_
  27.