StdAfx.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. // stdafx.h : include file for standard system include files,
  2. // or project specific include files that are used frequently, but
  3. // are changed infrequently
  4. //
  5. #ifndef STDAFX_H
  6. #define STDAFX_H
  7. #define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
  8. #include <afxwin.h> // MFC core and standard components
  9. #include <afxext.h> // MFC extensions
  10. #include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
  11. #ifndef _AFX_NO_AFXCMN_SUPPORT
  12. #include <afxcmn.h> // MFC support for Windows Common Controls
  13. #endif // _AFX_NO_AFXCMN_SUPPORT
  14. ///////////////////////////////////////////////////////////////////////////////
  15. // XLISTCTRLLIB_EXPORTS - defined to export the classes in this dll
  16. #ifndef XLISTCTRLLIB_EXPORTS
  17. #define XLISTCTRLLIB_EXPORTS
  18. #endif
  19. ///////////////////////////////////////////////////////////////////////////////
  20. // Automatic library selection macro - will not be defined for the dll compile.
  21. // For app compiles, this will ensure that the correct export library is
  22. // automatically linked to the application.
  23. #define XLISTCTRLLIB_NOAUTOLIB
  24. ///////////////////////////////////////////////////////////////////////////////
  25. // uncomment following line to remove support for comboboxes
  26. //#define DO_NOT_INCLUDE_XCOMBOLIST
  27. ///////////////////////////////////////////////////////////////////////////////
  28. // uncomment following line to remove support for tooltips
  29. //#define NO_XLISTCTRL_TOOL_TIPS
  30. #include "..\XListCtrl\XTrace.h"
  31. ///////////////////////////////////////////////////////////////////////////////
  32. // uncomment the following line to enable TRACE statements within the
  33. // XListCtrl library
  34. #define ENABLE_XLISTCTRL_TRACE
  35. #ifdef ENABLE_XLISTCTRL_TRACE
  36. #define XLISTCTRL_TRACE TRACE
  37. #else
  38. #define XLISTCTRL_TRACE __noop
  39. #endif
  40. //{{AFX_INSERT_LOCATION}}
  41. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  42. #endif //STDAFX_H