]>
Commit | Line | Data |
---|---|---|
4d6306eb GL |
1 | // ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: mmedia.h | |
3 | // Purpose: wxMMedia | |
4 | // Author: Guilhem Lavaux | |
5 | // Created: 1997 | |
6 | // Updated: 1998 | |
7 | // Copyright: (C) 1997, 1998, Guilhem Lavaux | |
8 | // License: wxWindows license | |
9 | // ///////////////////////////////////////////////////////////////////////////// | |
10 | #ifndef __MMEDIA_H__ | |
11 | #define __MMEDIA_H__ | |
12 | ||
13 | #ifdef __WINDOWS__ | |
14 | ||
15 | #include "sndwin.h" | |
16 | #define wxSoundDevice wxWinSound | |
17 | ||
18 | #include "vidwin.h" | |
19 | #define wxVideoDevice wxVideoWindows | |
20 | ||
21 | #else | |
22 | ||
23 | #include "snduss.h" | |
24 | #define wxSoundDevice wxUssSound | |
25 | ||
26 | #include "vidxanm.h" | |
27 | #define wxVideoDevice wxVideoXANIM | |
28 | ||
29 | #endif | |
30 | ||
31 | #endif |