home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
ool.zip
/
OOL
/
include
/
xsound.h
< prev
next >
Wrap
Text File
|
1997-02-23
|
1KB
|
31 lines
#ifndef __OOL_XSOUND_H__
#define __OOL_XSOUND_H__
/*===========================================================================*/
/* OOL ------------------- the Open Object Library ------------- OS/2 Beta 1 */
/*===========================================================================*/
/* class: XSound */
/* derived from: XMediaWindow */
/* last update: 12/96 */
/* programmed by: Stefan von Brauk (sbrauk@gwdg.de) */
/*===========================================================================*/
#include "xmedia.h"
class XFrameWindow;
class _export_ XSound: public XMediaWindow{
private:
USHORT type;
public:
XSound( const XFrameWindow *);
virtual ~XSound();
LONG CloseDevice( void );
LONG OpenDevice( const char * p);
LONG SetDataFile( const char * p);
LONG SetVolume( const USHORT volumePercent);
};
#endif