diff options
author | atmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-07-23 12:03:05 +0000 |
---|---|---|
committer | atmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-07-23 12:03:05 +0000 |
commit | 265e6e90b1d7c3499c9255cac6b3ef32c8ce446a (patch) | |
tree | f4fe0d8621120b62d868f389fa2cb0f9742e2365 | |
parent | 3d0c8ff3bd3ae6278222cd216803ea0d3b1eff1f (diff) |
Warnings fix by Sylvain Petreolle <spetreolle@yahoo.fr>, fixed by me.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6769 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | loader/dshow/DS_Filter.c | 1 | ||||
-rw-r--r-- | loader/module.c | 1 | ||||
-rw-r--r-- | loader/module.h | 6 |
3 files changed, 8 insertions, 0 deletions
diff --git a/loader/dshow/DS_Filter.c b/loader/dshow/DS_Filter.c index 2ecf1d8898..e1d11aa801 100644 --- a/loader/dshow/DS_Filter.c +++ b/loader/dshow/DS_Filter.c @@ -1,6 +1,7 @@ #include "DS_Filter.h" #include "driver.h" #include "com.h" +#include "module.h" #include <stdio.h> #include <string.h> diff --git a/loader/module.c b/loader/module.c index 30029d6aae..ec6ad7a078 100644 --- a/loader/module.c +++ b/loader/module.c @@ -27,6 +27,7 @@ #include <wine/elfdll.h> #endif #include "win32.h" +#include "module.h" //#include "driver.h" //#undef TRACE diff --git a/loader/module.h b/loader/module.h new file mode 100644 index 0000000000..b9d68616ea --- /dev/null +++ b/loader/module.h @@ -0,0 +1,6 @@ +#ifndef LOADER_MODULE_H +#define LOADER_MODULE_H +void CodecRelease(void); +void CodecAlloc(void); + +#endif // LOADER_MODULE_H |