| 73 | } |
| 74 | |
| 75 | void init_dynload(void) |
| 76 | { |
| 77 | #if HAVE_SETDLLDIRECTORY && defined(_WIN32) |
| 78 | /* Calling SetDllDirectory with the empty string (but not NULL) removes the |
| 79 | * current working directory from the DLL search path as a security pre-caution. */ |
| 80 | SetDllDirectory(""); |
| 81 | #endif |
| 82 | } |
| 83 | |
| 84 | int parse_number(const char *context, const char *numstr, enum OptionType type, |
| 85 | double min, double max, double *dst) |