msinttypes
msinttypes copied to clipboard
Automatically exported from code.google.com/p/msinttypes
The `_MSC_VER ` guard prevents rc.exe to compile some rc files ```c #ifndef _MSC_VER // [ #error "Use this header only with Microsoft Visual C++ compilers!" #endif // _MSC_VER ]...
how can I compile x64 version ?
``` The stdint header that ships with Visual Studio 2010+ defines int_fast16_t and uint_fast16_t as 32-bit integer's, not 16. I believe the standard only specifies that the fast types be...
``` Cosmetic change, see attached patch. ``` Original issue reported on code.google.com by `[email protected]` on 19 Jan 2015 at 9:59 Attachments: - [0001-stdint-Fix-trailing-whitespace.patch](https://storage.googleapis.com/google-code-attachments/msinttypes/issue-15/comment-0/0001-stdint-Fix-trailing-whitespace.patch)
``` this code is invalid: #ifdef __cplusplus extern "C" { #endif # include #ifdef __cplusplus } #endif with some versions of sdk (or mobile sdk/WinCE) it produces errors. I'm pretty...
``` how about: #include then you could add msinttypes to include path and include stdint.h using: #include Could you also check for presence of inttypes.h in different versions of VS...
``` What steps will reproduce the problem? 1. add inttypes.h and stdint.h with include files of ffmpeg 2. build code 3. the compilation gives error F:\Windows Project\zeranoe\ffmpeg-20130713-git-aac57c7-win32-dev\include\inttypes.h(49): error C2146: syntax...
``` In line 45 of file stdint.h we see: // For Visual Studio 6 in C++ mode and for many Visual Studio versions when // compiling for ARM we should...
``` According to ISO/IEC 9899:TC3 7.18.2.2, "Each instance of [INTn_MIN and INTn_MAX] shall be replaced by a constant expansion suitable for use in #if preprocessor directives, and this expression shall...
``` I think "fast" types are supposed to allow fast operations (basically, efficiently use the registers) on the target machines. Example: int_fast16_t is currently defined as 16-bit integer, which is...