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 19:52:39 -0300 |
commit | a64839189622f2a4cc3c62168ae5037b6aab6992 (patch) | |
tree | 4aa32e16c2bd579a9e2637bd2df016a0a9acaefb /cmdutils.c | |
parent | 115a90a0dbeb3ddadec5d57c0c17dd9ce16580ed (diff) | |
download | ffmpeg-a64839189622f2a4cc3c62168ae5037b6aab6992.tar.gz |
cmdutils: fix implicit declaration of SetDllDirectory function
Signed-off-by: Tobias Rapp <t.rapp@noa-archive.com>
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'cmdutils.c')
-rw-r--r-- | cmdutils.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cmdutils.c b/cmdutils.c index 6960f8c99c..44f44cdb0b 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -61,6 +61,9 @@ #include <sys/time.h> #include <sys/resource.h> #endif +#ifdef _WIN32 +#include <windows.h> +#endif static int init_report(const char *env); |