home *** CD-ROM | disk | FTP | other *** search
- /* Defines for accessing DSOUND.DLL */
-
- /* Defaults for DSOUND parameters */
- #define DSOUND_DEF_FREQ 22000
- #define DSOUND_DEF_SAMPSIZE 0
- #define DSOUND_DEF_VOLUME 10
- #define DSOUND_DEF_SHIFT 4
-
- /* Offsets for the .SND */
- #define SND_SAMPSIZE_OFS 0
- #define SND_FREQ_OFS 2
- #define SND_VOLUME_OFS 4
- #define SND_SHIFT_OFS 6
-
- void FAR PASCAL PlaySound(char huge *, DWORD, unsigned, unsigned, unsigned, unsigned);
- int FAR PASCAL GetDSoundVersion();
- void FAR PASCAL SetDelayValue(unsigned);
- int FAR PASCAL GetDelayValue();
- void FAR PASCAL SetVolume(unsigned);
- int FAR PASCAL GetVolume();
-