Dexter
Dexter
I also get no music (amiga or mod files) during the cut-scenes using DOS version. Also no music in the cut scenes with the PC CD version if I'm using...
As mentioned in the comments, checking sizeof(size_t) is a common way to check the platform bits. checking sizeof(intmax_t) would give the wrong result on 32bit platforms with 64bit intmax_t. I...
My 2 cents - If stdint.h isn't available, people typically roll their own. Checking if INTMAX_MIN is defined should work, for C89 and C99 scenarios like old versions of Watcom...
My understanding is that checking for MIN/MAX macro definitions is the intended way to test if a type is available. I think the following should handle any environment with a...
My bad assumption is that the user would include ` ` prior to including the implementation. That kind of thing happens naturally in tiny projects where you may include the...
Understood. Taking a look at the source, you already check for different platform versions. Using _MSC_VER would be able handle MSVC 2010 and later that have stdint.h - which incidentally...