⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 stdafx.h

📁 好不容易找到的用多种语言写的ArcGisEngine二次开发程序
💻 H
字号:
/*
 Copyright 1995-2004 ESRI

 All rights reserved under the copyright laws of the United States.

 You may freely redistribute and use this sample code, with or without modification.

 Disclaimer: THE SAMPLE CODE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED 
 WARRANTIES, INCLUDING THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 
 FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ESRI OR 
 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, 
 OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 
 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 
 INTERRUPTION) SUSTAINED BY YOU OR A THIRD PARTY, HOWEVER CAUSED AND ON ANY 
 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT ARISING IN ANY 
 WAY OUT OF THE USE OF THIS SAMPLE CODE, EVEN IF ADVISED OF THE POSSIBILITY OF 
 SUCH DAMAGE.

 For additional information contact: Environmental Systems Research Institute, Inc.

 Attn: Contracts Dept.

 380 New York Street

 Redlands, California, U.S.A. 92373 

 Email: contracts@esri.com
*/

// stdafx.h : include file for standard system include files,
//      or project specific include files that are used frequently,
//      but are changed infrequently


#pragma once

#define STRICT
#ifndef _WIN32_WINNT
#define _WIN32_WINNT 0x0400
#endif

#include <atlbase.h>
extern CComModule _Module;  // This is not a COM module but this global just ensures ATL can find the module resource instance

#include <atlcom.h>
#include <atlwin.h>

// These paths may need to be changed to point to the correct location
#pragma warning(push)
#pragma warning(disable: 4192)

#import "/Program Files/ArcGis/com/esriSystem.olb" raw_interfaces_only raw_native_types no_namespace named_guids exclude("OLE_COLOR", "OLE_HANDLE", "VARTYPE")
#import "/Program Files/ArcGis/com/esriSystemUI.olb" raw_interfaces_only raw_native_types no_namespace named_guids exclude("IProgressDialog")
#import "/Program Files/ArcGis/com/esriGeometry.olb" raw_interfaces_only raw_native_types no_namespace named_guids
#import "/Program Files/ArcGis/com/esriDisplay.olb" raw_interfaces_only raw_native_types no_namespace named_guids
#import "/Program Files/ArcGis/com/esriGeoDatabase.olb" raw_interfaces_only raw_native_types no_namespace named_guids
#import "/Program Files/ArcGis/com/esriCarto.olb" raw_interfaces_only raw_native_types no_namespace named_guids exclude("OLE_COLOR", "OLE_HANDLE", "VARTYPE")

#import "/Program Files/ArcGis/bin/PageLayoutControl.ocx" raw_interfaces_only raw_native_types no_namespace named_guids
#import "/Program Files/ArcGis/bin/TOCControl.ocx" raw_interfaces_only raw_native_types no_namespace named_guids
#import "/Program Files/ArcGis/bin/ToolbarControl.ocx" raw_interfaces_only raw_native_types no_namespace named_guids

#import "/Windows/System32/comdlg32.ocx" raw_interfaces_only raw_native_types no_namespace named_guids

#pragma warning(pop)

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -