📄 stdafx.h
字号:
// stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently, but
// are changed infrequently
//
#if !defined(AFX_STDAFX_H__EE0063B1_5529_446F_9144_09B7D9D8C5CE__INCLUDED_)
#define AFX_STDAFX_H__EE0063B1_5529_446F_9144_09B7D9D8C5CE__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
#include <afxwin.h> // MFC core and standard components
#include <afxext.h> // MFC extensions
#include <afxdisp.h> // MFC Automation classes
#include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
#ifndef _AFX_NO_AFXCMN_SUPPORT
#include <afxcmn.h> // MFC support for Windows Common Controls
#include <afxmt.h>
#endif // _AFX_NO_AFXCMN_SUPPORT
#define WM_MSG WM_USER+1
// This macro is the same as IMPLEMENT_OLECREATE, except it passes TRUE
// for the bMultiInstance parameter to the COleObjectFactory constructor.
// We want a separate instance of this application to be launched for
// each automation proxy object requested by automation controllers.
#ifndef IMPLEMENT_OLECREATE2
#define IMPLEMENT_OLECREATE2(class_name, external_name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \
AFX_DATADEF COleObjectFactory class_name::factory(class_name::guid, \
RUNTIME_CLASS(class_name),TRUE, _T(external_name)); \
const AFX_DATADEF GUID class_name::guid = \
{ l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } };
#endif // IMPLEMENT_OLECREATE2
#import "D:\\program files\\GeoMedia Professional\\Program\\PService.dll" raw_interfaces_only, raw_native_types, no_namespace, named_guids
#import "D:\\program files\\GeoMedia Professional\\Program\\Mapview.tlb" raw_interfaces_only, raw_native_types, no_namespace, named_guids
#import "D:\\program files\\GeoMedia Professional\\Program\\PCSS.tlb" no_namespace
#import "D:\\program files\\GeoMedia Professional\\Program\\PBasic.tlb" no_namespace
#import "D:\\program files\\GeoMedia Professional\\Program\\PClient.tlb" no_namespace rename ("EOF", "_EOF") rename("SpatialQueryConnectionPipe","_SpatialQueryConnectionPipe")
#import <olepro32.dll> no_namespace rename("StdFont","LOStdFont") rename("StdPicture","LOStdPicture")\
exclude ("OLE_HANDLE", "IFontDisp", "IPictureDisp", \
"OLE_TRISTATE", "IFont", "IPicture")
#import "D:\\program files\\GeoMedia Professional\\Program\\PView.tlb" raw_interfaces_only, raw_native_types, no_namespace, named_guids
///////////////////////////////////////////
//#import "GMLayout.tlb" no_namespace rename("EOF","LOEOF") rename("LinearStyle","LOLinearStyle") \
// rename("PointStyle","LOPointStyle") rename("LinearStyles","LOLinearStyles") \
// rename("PointStyles","LOPointStyles")// rename("UnitTypeConstants","LOUnitTypeConstants")
// exclude("LinearStyle","PointStyle","LinearStyles","PointStyles")
///////////////////////////////////////////////////////////////////////////////////
//
//edited by will,on 16th,Dec 2002
//for GeoMedia Pro. Ver.5.0
//
//#import <PDBPipe.tlb> no_namespace rename("EOF","PDBEOF") \
// exclude ("ExtendedPropertySet", "GRecordset", "_IGCollection", "_IGDynaCollection", \
// "GFields", "GField", "GError", "GIndex", "GTableDef", "GIndexes", "GRecordsets", \
// "GTableDefs", "GErrors", "GDatabase", "RecordsetListener", "Notification", \
// "OriginatingPipe", "EqualityExtension", "GModificationTypeConstants", "DGMPreferenceSet")
//
///////////////////////////////////////////////////////////////////////////////////
#import "D:\\program files\\GeoMedia Professional\\Program\\GMLayout.tlb" no_namespace rename("EOF","LOEOF") rename("LinearStyle","LOLinearStyle") \
rename("PointStyle","LOPointStyle") rename("LinearStyles","LOLinearStyles") \
rename("PointStyles","LOPointStyles") \
exclude("UnitTypeConstants")
#define HR_TRY \
HRESULT hr ; \
try{
#define HR_CHECK(x) \
while (FAILED(hr=x)) AfxThrowOleException(hr)
#define HR_CATCH }\
catch(CException *e) \
{ e->Delete() ; \
CDialog::OnCancel() ; }
//{{AFX_INSERT_LOCATION}}
#endif // !defined(AFX_STDAFX_H__EE0063B1_5529_446F_9144_09B7D9D8C5CE__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -