stdafx.h

来自「fax engine 传真引擎 relay fax 的开源项目 商业软件使用 高」· C头文件 代码 · 共 51 行

H
51
字号
/*****************************************************************************
* RelayFax Open Source Project
* Copyright 1996-2004 Alt-N Technologies, Ltd.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted only as authorized by the RelayFax Open 
* Source License.  A copy of this license is available in file LICENSE 
* in the top-level directory of the distribution.
*
* RelayFax is a registered trademark of Alt-N Technologies, Ltd.
*
* Individual files and/or contributed packages may be copyright by
* other parties and subject to additional restrictions.
*****************************************************************************/

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

#ifndef STDAFX_H
#define STDAFX_H

// Insert your headers here
#define WIN32_LEAN_AND_MEAN		// Exclude rarely-used stuff from Windows headers

#pragma warning (disable:4005)
#pragma warning (disable:4786)
#pragma warning (disable:4503)

#include <windows.h>
#include <tchar.h>
#include <stdio.h>
#include <process.h>

#include <string>
#include <vector>
#include <algorithm>
#include <map>
#include <list>
#include <set>
#include <deque>
using namespace std;


#include "resource.h"
#include "util.h"

#endif // STDAFX_H

⌨️ 快捷键说明

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