allhead.h
来自「BCB 串口通信」· C头文件 代码 · 共 37 行
H
37 行
/*
======================================================================
allhead.h : 预编译采用的统一头文件.
======================================================================
*/
// Standard headers
// Borland C++ Builder
#ifdef __BCPLUSPLUS__
#include <vcl.h>
#include <stdlib>
#include <stdio>
#include <math>
#include <iostream>
#include <fstream>
#include <iomanip>
#include <string>
#include <sstream.h>
#endif
// Microsoft Visual C++
#ifdef _MSC_VER
#include "stdafx.h"
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
#include <iostream.h>
#include <iomanip.h>
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?