]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/wave.h
Win64 compilation fixes: define SIZEOF_SIZE_T, added wxUIntPtr
[wxWidgets.git] / include / wx / wave.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/wave.h
3// Purpose: wxSound compatibility header
4// Author: Vaclav Slavik
5// Modified by:
6// Created: 2004/02/01
7// RCS-ID: $Id$
8// Copyright: (c) 2004, Vaclav Slavik
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_WAVE_H_BASE_
13#define _WX_WAVE_H_BASE_
14
15#include "wx/setup.h"
16
17#if wxUSE_SOUND
18
19#if WXWIN_COMPATIBILITY_2_4
20 #warning "wx/wave.h header is deprecated, use wx/sound.h and wxSound"
21 #include "wx/sound.h"
22 // wxSound used to be called wxWave before wxWindows 2.5.1:
23 typedef wxSound wxWave;
24#else
25 #error "wx/wave.h is only available in compatibility mode"
26#endif
27
28#endif
29
30#endif