XTPIntel80Helpers.h
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:2k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // XTPIntel80Helpers.h : Intel(R) C++ 8.0 helpers
  2. //
  3. // This file is a part of the XTREME TOOLKIT PRO MFC class library.
  4. // (c)1998-2008 Codejock Software, All Rights Reserved.
  5. //
  6. // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
  7. // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
  8. // CONSENT OF CODEJOCK SOFTWARE.
  9. //
  10. // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
  11. // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
  12. // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
  13. // SINGLE COMPUTER.
  14. //
  15. // CONTACT INFORMATION:
  16. // support@codejock.com
  17. // http://www.codejock.com
  18. //
  19. /////////////////////////////////////////////////////////////////////////////
  20. //{{AFX_CODEJOCK_PRIVATE
  21. #if !defined(__XTPINTEL80HELPERS_H__)
  22. #define __XTPINTEL80HELPERS_H__
  23. #if (_MSC_VER >= 1000)
  24. #pragma once
  25. #endif // _MSC_VER >= 1000
  26. #ifdef __INTEL_COMPILER
  27. #define USES_PROTECTED_ACCESS(theFiend, theClass, theType, theMember)
  28. class CAccess##theClass : public theClass
  29. { public: inline theType Get##theMember() {return theMember;}
  30. friend class theFiend;
  31. };
  32. #define PROTECTED_ACCESS(theClass, thePointer, theMember)
  33. (((CAccess##theClass*)thePointer)->Get##theMember())
  34. #define PROTECTED_DEFWINDOWPROC_CALL(theFiend, thePonter, m, w, l)
  35. class CAccessWnd : public CWnd
  36. {
  37. public: inline void DefWindowProcBase(UINT message, WPARAM wParam, LPARAM lParam) {
  38. CWnd::DefWindowProc(message, wParam, lParam);
  39. }
  40. friend class theFiend;
  41. };
  42. ((CAccessWnd*)(thePonter))->DefWindowProcBase(m, w, l);
  43. #else
  44. #define USES_PROTECTED_ACCESS(theFiend, theClass, theType, theMember)
  45. class CAccess##theClass : public theClass
  46. {
  47. friend class theFiend;
  48. };
  49. #define PROTECTED_ACCESS(theClass, thePointer, theMember)
  50. (((CAccess##theClass*)thePointer)->theMember)
  51. #define PROTECTED_DEFWINDOWPROC_CALL(theFiend, thePonter, m, w, l)
  52. class CAccessWnd : public CWnd
  53. {
  54. friend class theFiend;
  55. };
  56. ((CAccessWnd*)thePonter)->DefWindowProc(m, w, l);
  57. #endif
  58. //}}AFX_CODEJOCK_PRIVATE
  59. //////////////////////////////////////////////////////////////////////
  60. #endif // #if !defined(__XTPINTEL80HELPERS_H__)