* Added wxMMedia in the repository so people interrested in it can work on it

* WARNING! It is quite unstable on Windows and it doesn't work on Linux for
  the moment because I didn't finish fixing the CODEC stream.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@975 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Guilhem Lavaux
1998-11-09 18:37:38 +00:00
parent ea57084d10
commit 4d6306eb4d
54 changed files with 7666 additions and 0 deletions

31
utils/wxMMedia/mmedia.h Normal file
View File

@@ -0,0 +1,31 @@
// /////////////////////////////////////////////////////////////////////////////
// Name: mmedia.h
// Purpose: wxMMedia
// Author: Guilhem Lavaux
// Created: 1997
// Updated: 1998
// Copyright: (C) 1997, 1998, Guilhem Lavaux
// License: wxWindows license
// /////////////////////////////////////////////////////////////////////////////
#ifndef __MMEDIA_H__
#define __MMEDIA_H__
#ifdef __WINDOWS__
#include "sndwin.h"
#define wxSoundDevice wxWinSound
#include "vidwin.h"
#define wxVideoDevice wxVideoWindows
#else
#include "snduss.h"
#define wxSoundDevice wxUssSound
#include "vidxanm.h"
#define wxVideoDevice wxVideoXANIM
#endif
#endif