stdafx.h

来自「MPICH是MPI的重要研究,提供了一系列的接口函数,为并行计算的实现提供了编程」· C头文件 代码 · 共 24 行

H
24
字号
/**********************************************************************/* THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF/* ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO/* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A/* PARTICULAR PURPOSE./*/* Copyright (C) 1998  Brigham Young University.  All Rights Reserved./*/* file: stdafx.h/* note: This file exists to ensure winsock2.h gets included before afxsock.h/*       in MFC applications./**********************************************************************/#define VC_EXTRALEAN		// Exclude rarely-used stuff from Windows headers#include <afxwin.h>         // MFC core and standard components#include <afxext.h>         // MFC extensions#ifndef _AFX_NO_AFXCMN_SUPPORT#include <afxcmn.h>			// MFC support for Windows 95 Common Controls#endif // _AFX_NO_AFXCMN_SUPPORT#include <winsock2.h>#include <afxsock.h>		// MFC socket extensions

⌨️ 快捷键说明

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