diff options
author | Tobias Rapp <t.rapp@noa-archive.com> | 2016-08-29 15:25:58 +0200 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2016-08-29 20:02:24 -0300 |
commit | c32ce247a026eda99b3ea5ad46c6bbc5c5907e1a (patch) | |
tree | ccea073d817157cc6934a248dfbbe64e600bc143 | |
parent | 2f9bc30956fc20eb1e7256bfbbe361a5cafb68a7 (diff) | |
download | ffmpeg-c32ce247a026eda99b3ea5ad46c6bbc5c5907e1a.tar.gz |
cmdutils: fix implicit declaration of SetDllDirectory function
Pre-processor check changed by commiter.
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r-- | cmdutils.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cmdutils.c b/cmdutils.c index 380ca1b368..bc57be72f7 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -60,6 +60,9 @@ #include <sys/time.h> #include <sys/resource.h> #endif +#if HAVE_SETDLLDIRECTORY +#include <windows.h> +#endif static int init_report(const char *env); |