mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 14:00:32 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@52344 954022d7-b5bf-4e40-9824-e11837661b57
80 lines
2.2 KiB
C++
80 lines
2.2 KiB
C++
// stdafx.h : include file for standard system include files,
|
|
// or project specific include files that are used frequently, but
|
|
// are changed infrequently
|
|
|
|
#pragma once
|
|
|
|
#ifndef VC_EXTRALEAN
|
|
#define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
|
|
#endif
|
|
|
|
#include "targetver.h"
|
|
|
|
#define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // some CString constructors will be explicit
|
|
|
|
#include <afxwin.h> // MFC core and standard components
|
|
#include <afxext.h> // MFC extensions
|
|
|
|
#ifndef _AFX_NO_OLE_SUPPORT
|
|
#include <afxole.h> // MFC OLE classes
|
|
#include <afxodlgs.h> // MFC OLE dialog classes
|
|
#include <afxdisp.h> // MFC Automation classes
|
|
#endif // _AFX_NO_OLE_SUPPORT
|
|
|
|
#ifndef _AFX_NO_DB_SUPPORT
|
|
#include <afxdb.h> // MFC ODBC database classes
|
|
#endif // _AFX_NO_DB_SUPPORT
|
|
|
|
#ifndef _AFX_NO_DAO_SUPPORT
|
|
#include <afxdao.h> // MFC DAO database classes
|
|
#endif // _AFX_NO_DAO_SUPPORT
|
|
|
|
#ifndef _AFX_NO_OLE_SUPPORT
|
|
#include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
|
|
#endif
|
|
#ifndef _AFX_NO_AFXCMN_SUPPORT
|
|
#include <afxcmn.h> // MFC support for Windows Common Controls
|
|
#endif // _AFX_NO_AFXCMN_SUPPORT
|
|
|
|
|
|
#include <locale.h>
|
|
#include <comutil.h>
|
|
#include <comdef.h>
|
|
|
|
// STL
|
|
#include <vector>
|
|
#include <map>
|
|
#include <deque>
|
|
#include <list>
|
|
#include <string>
|
|
#include <fstream>
|
|
#include <iostream>
|
|
#include <iosfwd>
|
|
#include <memory>
|
|
#include <functional>
|
|
|
|
// BOOST
|
|
#include <boost/shared_ptr.hpp>
|
|
#include <boost/bind.hpp>
|
|
#include <boost/algorithm/string.hpp>
|
|
#include <boost/shared_array.hpp>
|
|
//#include <boost/regex.hpp>
|
|
|
|
// The ones that can be used anywhere
|
|
//#include <Exception/exceptions.h>
|
|
#include "../Document/msxml/msxml6.tlh"
|
|
#include "../Auxiliary/HelpFunc.h"
|
|
#include "../Logging/Log.h"
|
|
#include "../Logging/DllLog.h"
|
|
#include "../Auxiliary/nullable/nullable.h"
|
|
|
|
#import "..\..\..\..\Redist\ASCOfficeUtils.dll" named_guids raw_interfaces_only rename_namespace("AVSOfficeUtilsLib")
|
|
|
|
//#include <XLS_logic/Biff_structures/BitMarkedStructs.h>
|
|
|
|
// Other projects
|
|
//#include <SerializerXml.h>
|
|
|
|
|
|
|