- Feb 19, 2022
-
-
Deucе authored
This is so we can deal with send(), recv() and friends taking a void* on BSD stacks, and a char* on Win32. Not a big deal for C where a void* is universal, but C++ hates that type of thing.
-
Rob Swindell authored
Thanks to Andre for pointing that out in his wiki updates.
-
- Feb 14, 2022
-
-
Deucе authored
-
Deucе authored
-
Rob Swindell authored
Convenient way to get the path/name of the archive file as it was passed to the constructor.
-
- Feb 12, 2022
-
-
Rob Swindell authored
-
Deucе authored
-
Deucе authored
-
Deucе authored
-
Deucе authored
-
Rob Swindell authored
warning C4244: '=': conversion from 'double' to 'uint64_t', possible loss of data
-
Deucе authored
-
Deucе authored
-
Deucе authored
-
Deucе authored
-
Deucе authored
This is a millisecond timer that tries to avoid floating-point operations.
-
Rob Swindell authored
it just seems it's even worst than Deuce thought. :-)
-
Rob Swindell authored
-
Deucе authored
I'm not really happy about rounding floats in time-critical bits, but there you go.
-
Rob Swindell authored
-
Deucе authored
Now it should keep working after 24 days.
-
Deucе authored
than the int supports, it's set to 0x80000000 to indicate overflow. msclock() is *always* overflowing, and clock_t is only 32-bits on some platforms (specifically FreeBSD). To "avoid" problems, just keep subtracting UIN32_MAX from the value until it's less than INT_MAX then cast. This function is, of course, terrible and shouldn't actually be used, but it should at least sorta kinda workish.
-
Deucе authored
At least one of MAP_ANON, MAP_GUARD, MAP_PRIVATE, MAP_SHARED, or MAP_STACK must be specified.
-
- Feb 11, 2022
-
-
Deucе authored
-
Deucе authored
-
Deucе authored
Oddly enough the hbuf wasn't actually modified.
-
Deucе authored
This will allow naming consistency in encode/* This is the fix you're looking for Keyop. :)
-
Deucе authored
-
Deucе authored
Geeze, this is ugly.
-
Deucе authored
-
Deucе authored
-
Deucе authored
-
Deucе authored
-
Deucе authored
-
- Feb 10, 2022
- Feb 09, 2022
-
-
Rob Swindell authored
I noticed that the recent NASA "Earth Science Picture of the Day" files have had a DIZ with UTF-8 encoded apostrophe in it. <sigh>
-
Rob Swindell authored
Then you must also include the file extension on all the configured command-lines. The opposite is not true: excluding the file extension in the native program list will still work if the command-line includes the file extension.
-