码迷,mamicode.com
首页 >  
搜索关键字:_MSC_VER    ( 62个结果
2048
#if _MSC_VER>=1900 #include "stdio.h" _ACRTIMP_ALT FILE* __cdecl __acrt_iob_func(unsigned); #ifdef __cplusplus extern "C" #endif FILE* __cdecl __iob_f... ...
分类:其他好文   时间:2017-12-10 14:46:52    阅读次数:1565
HiperLink
//HiperLink.H #ifndef __HYPERLINK_H__ #define __HYPERLINK_H__ #if _MSC_VER >= 1000 #pragma once #endif // _MSC_VER >= 1000 ///////////////////////////... ...
分类:其他好文   时间:2017-11-14 17:15:00    阅读次数:228
画一头猪
#if _MSC_VER>=1900 #include "stdio.h" _ACRTIMP_ALT FILE* __cdecl __acrt_iob_func(unsigned); #ifdef __cplusplus extern "C" #endif FILE* __cdecl __iob_f ...
分类:其他好文   时间:2017-09-30 17:53:38    阅读次数:294
跨平台的EVENT事件 windows linux(转)
#ifndef _HIK_EVENT_H_ #define _HIK_EVENT_H_ #ifdef _MSC_VER #include #define hik_event_handle HANDLE #else #include typedef struct { bool state; bool ... ...
分类:Windows程序   时间:2017-08-20 17:03:59    阅读次数:224
跨平台的EVENT事件 windows linux
#ifndef _HIK_EVENT_H_ #define _HIK_EVENT_H_ #ifdef _MSC_VER #include <Windows.h> #define hik_event_handle HANDLE #else #include <pthread.h> typedef st ...
分类:Windows程序   时间:2017-07-15 12:52:03    阅读次数:353
C/C++编译错误解决方案
编译首先确定编译器版本 MSVC++ 11.0 _MSC_VER = 1700 (Visual Studio 2012) MSVC++ 10.0 _MSC_VER = 1600 (Visual Studio 2010) MSVC++ 9.0 _MSC_VER = 1500 (Visual Studi ...
分类:编程语言   时间:2017-07-13 13:25:10    阅读次数:250
unzip.cpp.300
#include "stdafx.h" #ifdef ZIP_STD #include <stdio.h> #include <string.h> #include <malloc.h> #include <time.h> #ifdef _MSC_VER #include <sys/utime.h> ...
分类:其他好文   时间:2017-06-01 19:38:58    阅读次数:268
Visual Studio 和VC++关系
Visual Studio .net Visual C++ .net Visual C++ _MSC_VER 备注 Visual Studio .net 2002 Visual C++ .net 2002 Visual C++ 7.0 _MSC_VER=1300 Visual Stuido .net ...
分类:编程语言   时间:2016-11-10 16:53:04    阅读次数:253
_MSC_VER详细介绍
_MSC_VER是微软公司推出的C/C++编译器在ANSI/ISO C99标准之外扩展的宏定义,用来定义当前微软公司自己的编译器的主版本。_MSC_VER可以分解为: MS:Microsoft的简写。 C:MSC就是Microsoft的C编译器。 VER:Version的简写。_MSC_VER的意思... ...
分类:其他好文   时间:2016-10-12 19:49:49    阅读次数:102
预定义宏__GNUC__和_MSC_VER
一、预定义__GNUC__宏 1 __GNUC__ 是gcc编译器编译代码时预定义的一个宏。需要针对gcc编写代码时, 可以使用该宏进行条件编译。 2 __GNUC__ 的值表示gcc的版本。需要针对gcc特定版本编写代码时,也可以使用该宏进行条件编译。 3 __GNUC__ 的类型是“int”,该... ...
分类:其他好文   时间:2016-10-12 19:46:09    阅读次数:148
62条   上一页 1 2 3 4 5 ... 7 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!