summaryrefslogtreecommitdiff
path: root/libavformat/os_support.h
diff options
context:
space:
mode:
authorRamiro Polla <ramiro.polla@gmail.com>2008-03-07 19:47:44 +0000
committerRamiro Polla <ramiro.polla@gmail.com>2008-03-07 19:47:44 +0000
commit5dea940937caacc3baf974b134a961601834e802 (patch)
tree8e7f82d10fd059048753ca9ed2342ecb22552574 /libavformat/os_support.h
parent0e32c8c65a1c42d9f6489eca2231dde17716d139 (diff)
__stdcall -> WINAPI
Windows x64 has no __stdcall. It is not yet supported, but someday it might... Originally committed as revision 12363 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/os_support.h')
-rw-r--r--libavformat/os_support.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/os_support.h b/libavformat/os_support.h
index 67d586ab65..26141fe620 100644
--- a/libavformat/os_support.h
+++ b/libavformat/os_support.h
@@ -32,7 +32,7 @@ typedef int socklen_t;
#endif
#ifdef __MINGW32__
-__declspec(dllimport) void __stdcall Sleep(unsigned long dwMilliseconds);
+__declspec(dllimport) void WINAPI Sleep(unsigned long dwMilliseconds);
// # include <windows.h>
# define usleep(t) Sleep((t) / 1000)
# include <fcntl.h>