home *** CD-ROM | disk | FTP | other *** search
/ BUG 4 / BUGCD1997_05.BIN / aplic / visualj / vjtrial.exe / RCDATA / CABINET / mfcapwz.dll / TEMPLATE / STDAFX.H < prev    next >
C/C++ Source or Header  |  1997-01-28  |  3KB  |  93 lines

  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.  
  6. #if !defined($$FILE_NAME_SYMBOL$$_INCLUDED_)
  7. #define $$FILE_NAME_SYMBOL$$_INCLUDED_
  8.  
  9. #if _MSC_VER >= 1000
  10. #pragma once
  11. #endif // _MSC_VER >= 1000
  12.  
  13. #define VC_EXTRALEAN        // Exclude rarely-used stuff from Windows headers
  14.  
  15. #include <afxwin.h>         // MFC core and standard components
  16. #include <afxext.h>         // MFC extensions
  17. $$IF(CTreeView || CListView)
  18. #include <afxcview.h>
  19. $$ENDIF //CTreeView || CListView
  20. $$IF(PROJTYPE_DLL)
  21.  
  22. #ifndef _AFX_NO_OLE_SUPPORT
  23. $$ENDIF //PROJTYPE_DLL
  24. $$IF(CONTAINER || MINI_SERVER || FULL_SERVER || CONTAINER_SERVER || PROJTYPE_DLL)
  25. #include <afxole.h>         // MFC OLE classes
  26. $$IF(CONTAINER || CONTAINER_SERVER || PROJTYPE_DLL)
  27. #include <afxodlgs.h>       // MFC OLE dialog classes
  28. $$ENDIF
  29. $$ENDIF
  30. $$IF(AUTOMATION || PROJTYPE_DLL || OLECTL)
  31. #include <afxdisp.h>        // MFC OLE automation classes
  32. $$ENDIF
  33. $$IF(ACTIVE_DOC_SERVER)
  34. #include <afxdocob.h>
  35. $$ENDIF
  36. $$IF(PROJTYPE_DLL)
  37. #endif // _AFX_NO_OLE_SUPPORT
  38.  
  39. $$ENDIF //PROJTYPE_DLL
  40. $$// Include database headers.  For a DLL or app which just includes database
  41. $$//  headers (no database view), conditionally include DAO and ODBC.
  42. $$//  If an actual view is used, always & only include the corresponding header.
  43. $$// First, actual view is used:
  44. $$IF(CRecordView)
  45. #include <afxdb.h>            // MFC ODBC database classes
  46. $$ELIF(CDaoRecordView)
  47. #include <afxdao.h>            // MFC DAO database classes
  48. $$ELIF(DB || PROJTYPE_DLL)
  49. $$// Here, minimal DB support is requested, or we're a DLL.  No view is chosen.
  50.  
  51. #ifndef _AFX_NO_DB_SUPPORT
  52. #include <afxdb.h>            // MFC ODBC database classes
  53. #endif // _AFX_NO_DB_SUPPORT
  54.  
  55. #ifndef _AFX_NO_DAO_SUPPORT
  56. #include <afxdao.h>            // MFC DAO database classes
  57. #endif // _AFX_NO_DAO_SUPPORT
  58.  
  59. $$ENDIF // database/DLL options
  60. #ifndef _AFX_NO_AFXCMN_SUPPORT
  61. #include <afxcmn.h>            // MFC support for Windows Common Controls
  62. #endif // _AFX_NO_AFXCMN_SUPPORT
  63.  
  64. $$IF(SOCKETS)
  65. #include <afxsock.h>        // MFC socket extensions
  66. $$ENDIF //SOCKETS
  67. $$IF(CRichEditView)
  68. #include <afxrich.h>        // MFC rich edit classes
  69. $$ENDIF //CRichEditView
  70. $$IF(PROJTYPE_DLG)
  71. $$IF(AUTOMATION)
  72.  
  73. $$IF(VERBOSE)
  74. // This macro is the same as IMPLEMENT_OLECREATE, except it passes TRUE
  75. //  for the bMultiInstance parameter to the COleObjectFactory constructor.
  76. //  We want a separate instance of this application to be launched for
  77. //  each OLE automation proxy object requested by automation controllers.
  78. $$ENDIF //VERBOSE
  79. #ifndef IMPLEMENT_OLECREATE2
  80. #define IMPLEMENT_OLECREATE2(class_name, external_name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \
  81.     AFX_DATADEF COleObjectFactory class_name::factory(class_name::guid, \
  82.         RUNTIME_CLASS(class_name), TRUE, _T(external_name)); \
  83.     const AFX_DATADEF GUID class_name::guid = \
  84.         { l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } };
  85. #endif // IMPLEMENT_OLECREATE2
  86. $$ENDIF //AUTOMATION
  87. $$ENDIF //PROJTYPE_DLG
  88.  
  89. //{{AFX_INSERT_LOCATION}}
  90. // $$INSERT_LOCATION_COMMENT$$
  91.  
  92. #endif // !defined($$FILE_NAME_SYMBOL$$_INCLUDED_)
  93.