zoukankan      html  css  js  c++  java
  • This project fills the absence of stdint.h and inttypes.h in Microsoft Visual Studio

    http://code.google.com/p/msinttypes/

    msinttypes

    This project fills the absence of stdint.h and inttypes.h in Microsoft Visual Studio. This files were standartized by ISO/IEC as a part of C99standard library. If you want to compile or use C99 compliant project with Microsoft Visual Studio, you will likely find that you're missing these headers. Note though, that just adding these header does not make Visual Studio compiler fully C99 compliant.

    FFMpeg is a good example of library that requires inttypes.h even if you just want to link your program with it.

    More portable version of stdint.h can be find here but it does not implement inttypes.h features, such as printf and scanf format specifiers.

     

    C99中添加了几个新的头文件,VC++中没有,所以需要你自己下载

    判断支持C98 或者 C99 代码

    View Code
    #include<stdio.h>
    #include<tchar.h>
    
    //int main()
    //int _tmain(int argc, _TCHAR* argv[])
    int _tmain()
    {
    #if (defined(__STDC_VERSION__))
     printf("标准C版本:%ld。", __STDC_VERSION__);
    #elif (!defined(__STDC__))
     printf("非标准C!");
    #else
     printf("旧的标准C。");
    #endif
     getchar();
     return 0;
    }

    http://blog.csdn.net/rodmanwu/article/details/6846788

    stdint.h是C99的标准,主要用于统一跨平台数据定义。
    MSVC中不带有这个头文件,直到VS2010(新闻)。

    在之前的版本里面,我们可以:
    (1)下载这个头文件
    download a MS version of this header from:
    http://msinttypes.googlecode.com/svn/trunk/stdint.h
    A portable one can be found here:
    http://www.azillionmonkeys.com/qed/pstdint.h
    (2)将头文件放到(以VS2008为例):
    C:\Program Files\Microsoft Visual Studio 9.0\VC\include


    (以VS2011为例): D:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\include 需要 inttypes.h

  • 相关阅读:
    C#如何从普通C++动态库导入一个类?
    MFC的子类化技术
    [转贴] 不要以为使用了模式就是好设计
    VC编程经验汇总(三)
    钩子技术介绍及函数使用
    关于VC中的时间函数讨论
    my read_girl
    Linux + SVN / CVS / ClearCase
    OS + Linux Edit emacs /vi vim gvim /SciTE /gedit /kedit /UltraEdit /nedit /sedf
    java Regular Expression / regexp / zhengzebiaodashi
  • 原文地址:https://www.cnblogs.com/logitechlike/p/2873018.html
Copyright © 2011-2022 走看看