src/sndfile.hh : Add an LPCWSTR version of the SndfileHandle constructor to the SndfileHandle class definition.

This commit is contained in:
Erik de Castro Lopo 2011-01-27 20:49:30 +11:00
parent 0dcf47afa0
commit c481b6e553
2 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2011-01-27 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.hh
Add an LPCWSTR version of the SndfileHandle constructor to the SndfileHandle
class definition.Thanks to Eric Eizenman for pointing out this was missing.
2011-01-19 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* programs/sndfile-play.c

View File

@ -79,6 +79,12 @@ class SndfileHandle
int format = 0, int channels = 0, int samplerate = 0) ;
SndfileHandle (int fd, bool close_desc, int mode = SFM_READ,
int format = 0, int channels = 0, int samplerate = 0) ;
#ifdef ENABLE_SNDFILE_WINDOWS_PROTOTYPES
SndfileHandle (LPCWSTR wpath, int mode = SFM_READ,
int format = 0, int channels = 0, int samplerate = 0) ;
#endif
~SndfileHandle (void) ;
SndfileHandle (const SndfileHandle &orig) ;