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

📄 stdhdrs.h

📁 teamviewer source code vc++
💻 H
字号:
//  Copyright (C) 2002 RealVNC Ltd. All Rights Reserved.
//  Copyright (C) 1999 AT&T Laboratories Cambridge. All Rights Reserved.
//
//  This file is part of TeamViewer.
//
//  TeamViewer is free software; you can redistribute it and/or modify
//  it under the terms of the GNU General Public License as published by
//  the Free Software Foundation; either version 2 of the License, or
//  (at your option) any later version.
//
//  This program is distributed in the hope that it will be useful,
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
//  GNU General Public License for more details.
//
//  You should have received a copy of the GNU General Public License
//  along with this program; if not, write to the Free Software
//  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
//  USA.
//
//  If the source code for TeamViewer is not available from the place 
//  whence you received this file, check http://www.teamviewer.com
//  for information on obtaining it. 

#ifndef STDHDRS_SERVER_H
#define STDHDRS_SERVER_H
#pragma once

#define WIN32_LEAN_AND_MEAN
//#define STRICT

//TR@2003
//Compilerwarnungen abschalten:
// 4800: Variable wird auf BOOL gesetzt
// 4018: Konflikt signed - unsigned
#pragma warning( disable : 4800 4018 )

#include <windows.h>
#include <stdlib.h>
#ifdef _DEBUG
	#if _MSC_VER >= 1400
		#define _CRTDBG_MAP_ALLOC 
		#include <crtdbg.h>
	#endif
#endif
#include <errno.h>
#include <cderr.h>
#include <io.h>
#include <stdio.h>
#include <stdarg.h>
#include <time.h>
#include <shellapi.h>
#include <winsock2.h>
#include <malloc.h>
#include <process.h>
#include <assert.h>
#include <commdlg.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <winioctl.h>
#include <wininet.h>
#include <fcntl.h>
#include <shobjidl.h>
#include <shlguid.h>
#include <shlobj.h>
#include <objbase.h>
#include <prsht.h>
#include <mmsystem.h>
#include <tchar.h>
#include <lmcons.h>
#include <commctrl.h>
#include <richedit.h>
#include <atlbase.h> // ATL smart pointers
#include <lmaccess.h>
#include <lmat.h>
#include <lmalert.h>
#include <Prsht.h>
#include <tlhelp32.h>
#include <math.h>
#include <tlhelp32.h>

#include <string>
#include <list>
#include <vector>
#include <map>
#include <iostream>
#include <iomanip>
#include <sstream>
#include <algorithm>

#include "zlib/zlib.h"
#include "lzo/minilzo.h"
//#include "ZipUnZip32/zipUnZip32.h"

#include "omnithread/omnithread.h"

#include <rdr/types.h>
#include <rdr/FdInStream.h>
#include <rdr/ZlibInStream.h>
#include <rdr/Exception.h>
#include <rdr/MemOutStream.h>
#include <rdr/ZlibOutStream.h>

#define MAXPATH 256

#include "../../vncviewer/Exception.h"

// LOGGING SUPPORT
#include "VNCLog.h"
extern VNCLog vnclog;

#include "rfb.h"
#include "rfbrect.h"
#include "rfbRegion_X11.h"
#include "winvnc.h"
// #include "../../vncviewer/vncviewer.h"

#endif

⌨️ 快捷键说明

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