Displaying 2 results from an estimated 2 matches for "__intxx".
Did you mean:
__int64
2013 Mar 04
1
Fwd: flac 1.3.0pre1 prelease
...e desire to use C99 types.
If we add _MSC_VER guarded definitions of the C99 type we need to
include/share/compat.h then we should need the little #ifdefs
everywhere.
My general rules for this is:
a) If its in the public header file don't mess with it too much (your
MSVC changes to use __intXX are fine).
b) If its code internal to the library use C99 type is possible.
c) If its internal to the library and i needs tweaking for a particular
compiler, add it to include/share/compat.h and include that header
where needed.
> I've only done libFLAC, because I'm not as f...
2013 Mar 04
2
Fwd: flac 1.3.0pre1 prelease
Ben Allison wrote:
> >> * change instances of uint32_t in bitwriter.c to FLAC__uint32
> >
> > Can we include <inttypes.h> to fix this instead?
>
> Sadly there is no inttypes.h on MSVC. At least versions to Visual Studio
> 2010. I presume this is why ordinal.h was created in the first place.
I'm not sure how Josh came to do it that way. In general, I