hctFilterCommon.h
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:3k
源码类别:

其他游戏

开发平台:

Visual C++

  1. /* 
  2.  * 
  3.  * Confidential Information of Telekinesys Research Limited (t/a Havok). Not for disclosure or distribution without Havok's
  4.  * prior written consent. This software contains code, techniques and know-how which is confidential and proprietary to Havok.
  5.  * Level 2 and Level 3 source code contains trade secrets of Havok. Havok Software (C) Copyright 1999-2009 Telekinesys Research Limited t/a Havok. All Rights Reserved. Use of this software is subject to the terms of an end user license agreement.
  6.  * 
  7.  */
  8. #ifndef INC_FILTER_COMMON_H
  9. #define INC_FILTER_COMMON_H
  10. #ifndef _WIN32_WINNT
  11. #define _WIN32_WINNT 0x0500 // win2000
  12. #endif
  13. #ifndef WINVER
  14. #define WINVER 0x0500
  15. #endif
  16. #if (_MSC_VER >= 1400)
  17. # define _CRT_SECURE_NO_DEPRECATE 1
  18. # define _CRT_NONSTDC_NO_DEPRECATE 1
  19. #endif
  20. //#define WIN32_LEAN_AND_MEAN
  21. #include <windows.h>
  22. #include <commctrl.h> 
  23. #include <commdlg.h>
  24. #include <locale.h>
  25. #include <Common/Base/hkBase.h>
  26. #include <Common/Base/Reflection/hkClass.h>
  27. #include <Common/Base/hkBase.h>
  28. #include <ContentTools/Common/Filters/Common/Memory/hctFilterMemoryTracker.h>
  29. #include <ContentTools/Common/Filters/Common/Filter/hctFilterDll.h>
  30. #include <ContentTools/Common/Filters/Common/Filter/hctFilterDescriptor.h>
  31. #include <ContentTools/Common/Filters/Common/Filter/hctFilterInterface.h>
  32. #include <ContentTools/Common/Filters/Common/Filter/Modeless/hctModelessFilterDll.h>
  33. #include <ContentTools/Common/Filters/Common/Filter/Modeless/hctModelessFilterDescriptor.h>
  34. #include <ContentTools/Common/Filters/Common/Filter/Modeless/hctModelessFilter.h>
  35. #include <ContentTools/Common/Filters/Common/FilterManager/hctFilterManagerInterface.h>
  36. #include <ContentTools/Common/Filters/Common/FilterManager/hctFilterManagerDll.h>
  37. #include <ContentTools/Common/Filters/Common/ClassRegistry/hctFilterClassRegistry.h>
  38. #include <ContentTools/Common/Filters/Common/Utils/hctFilterUtils.h>
  39. #include <ContentTools/Common/Filters/Common/Utils/hctOptionsRegistry.h>
  40. #include <ContentTools/Common/Filters/Common/Utils/hctTreeViewManager.h>
  41. #include <Common/SceneData/Scene/hkxScene.h>
  42. #include <Common/Serialize/Util/hkRootLevelContainer.h>
  43. #include <ContentTools/Common/Filters/Common/version.h>
  44. #include <ContentTools/Common/Filters/Common/Utils/hctFilterDialogUtils.h>
  45. #endif //INC_FILTER_COMMON_H
  46. /*
  47. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  48. * Confidential Information of Havok.  (C) Copyright 1999-2009
  49. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  50. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  51. * rights, and intellectual property rights in the Havok software remain in
  52. * Havok and/or its suppliers.
  53. * Use of this software for evaluation purposes is subject to and indicates
  54. * acceptance of the End User licence Agreement for this product. A copy of
  55. * the license is included with this software and is also available at www.havok.com/tryhavok.
  56. */