search for: parse_uint32_t

Displaying 3 results from an estimated 3 matches for "parse_uint32_t".

Did you mean: parse_int32_t
2020 Mar 23
6
[PATCH nbdkit 0/3] msys2 support for review
I pushed a few of the msys2 patches upstream. I changed the way that $(SHARED_LDFLAGS) works so it's more to my liking, and the others were pushed unchanged. Three patches remain which I'm posting on the mailing list for proper review. Rich.
2020 Mar 23
0
[PATCH nbdkit 1/3] include: Function indirection for PE DLL
...uint16_t *r) +{ + return _nbdkit_functions.parse_uint16_t (what, str, r); +} +static int nbdkit_parse_int32_t (const char *what, const char *str, + int32_t *r) +{ + return _nbdkit_functions.parse_int32_t (what, str, r); +} +static int nbdkit_parse_uint32_t (const char *what, const char *str, + uint32_t *r) +{ + return _nbdkit_functions.parse_uint32_t (what, str, r); +} +static int nbdkit_parse_int64_t (const char *what, const char *str, + int64_t *r) +{ + return _nbdkit_functions.parse...
2020 Mar 23
0
[PATCH nbdkit 2/3] server: Inject API functions for Windows
...signed; + functions->parse_int8_t = nbdkit_parse_int8_t; + functions->parse_uint8_t = nbdkit_parse_uint8_t; + functions->parse_int16_t = nbdkit_parse_int16_t; + functions->parse_uint16_t = nbdkit_parse_uint16_t; + functions->parse_int32_t = nbdkit_parse_int32_t; + functions->parse_uint32_t = nbdkit_parse_uint32_t; + functions->parse_int64_t = nbdkit_parse_int64_t; + functions->parse_uint64_t = nbdkit_parse_uint64_t; + functions->read_password = nbdkit_read_password; + functions->realpath = nbdkit_realpath; + functions->nanosleep = nbdkit_nanosleep; + functions-&g...