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:00:30 -0300 |
commit | 12320c08221f0eecf6d9af3a6f12f42e656f0674 (patch) | |
tree | 87156223eefe1b19566de398d6a5b4ba68a345e8 | |
parent | c46d22a4a58467bdc7885685b06a2114dd181c43 (diff) | |
download | ffmpeg-12320c08221f0eecf6d9af3a6f12f42e656f0674.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 a725e77531..3bb8bde3e9 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -61,6 +61,9 @@ #include <sys/time.h> #include <sys/resource.h> #endif +#if HAVE_SETDLLDIRECTORY +#include <windows.h> +#endif static int init_report(const char *env); |