MspBase.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. /*
  2.     Copyright (c) Microsoft Corporation. All rights reserved.
  3. */
  4. #ifndef __MSPBASE_H_
  5. #define __MSPBASE_H_
  6. #if _MSC_VER >= 1000
  7. #pragma once
  8. #endif // _MSC_VER >= 1000
  9. #define STRICT
  10. #define _ATL_FREE_THREADED
  11. #include <atlbase.h>
  12. //You may derive a class from CComModule and use it if you want to override
  13. //something, but do not change the name of _Module
  14. extern CComModule _Module;
  15. #include <atlcom.h>
  16. #include <tapi.h>
  17. //DirectShow headers.
  18. #include <strmif.h>
  19. #include <control.h>
  20. #include <uuids.h>
  21. #include <termmgr.h>
  22. #include <msp.h>
  23. #include <tapi3err.h>
  24. #include <tapi3if.h>
  25. // We use this libid for all our type library stuff. That way,
  26. // app writers don't have to load the type libraries for random
  27. // MSPs when they are writing tapi3 apps.
  28. EXTERN_C const IID LIBID_TAPI3Lib;
  29. #include "mspenum.h"
  30. #include "msplog.h"
  31. #include "msputils.h"
  32. #include "mspaddr.h"
  33. #include "mspcall.h"
  34. #include "mspstrm.h"
  35. #include "mspthrd.h"
  36. #include "mspcoll.h"
  37. #include "mspterm.h"
  38. #include "msptrmac.h"
  39. #include "msptrmar.h"
  40. #include "msptrmvc.h"
  41. #endif
  42. // eof