home *** CD-ROM | disk | FTP | other *** search
/ PC Format (South-Africa) 2001 June / PCFJune.iso / Xenon / C++ / FreeCommandLineTools.exe / Include / comlite.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-01-31  |  1.4 KB  |  39 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. #pragma option push -b -a8 -pc -A- /*P_O_Push*/
  23. #define _INC_COMLITE_
  24.  
  25. #define QzInitialize            CoInitialize
  26. #define QzUninitialize          CoUninitialize
  27. #define QzFreeUnusedLibraries   CoFreeUnusedLibraries
  28.  
  29. #define QzGetMalloc             CoGetMalloc
  30. #define QzTaskMemAlloc          CoTaskMemAlloc
  31. #define QzTaskMemRealloc        CoTaskMemRealloc
  32. #define QzTaskMemFree           CoTaskMemFree
  33. #define QzCreateFilterObject    CoCreateInstance
  34. #define QzCLSIDFromString       CLSIDFromString
  35. #define QzStringFromGUID2       StringFromGUID2
  36.  
  37. #pragma option pop /*P_O_Pop*/
  38. #endif  // _INC_COMLITE_
  39.