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:51 -0300 |
commit | 426b959e37bd1e27f369b887a4d2e3771a88033f (patch) | |
tree | b8ba7b11179212ee5cbffff434b796de5cf07315 | |
parent | 61fcba75464a6f4766bcf49e12cad8bc1d03379b (diff) | |
download | ffmpeg-426b959e37bd1e27f369b887a4d2e3771a88033f.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); |