diff options
Diffstat (limited to 'Src/Plugins/Input/in_wave/main.h')
-rw-r--r-- | Src/Plugins/Input/in_wave/main.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Src/Plugins/Input/in_wave/main.h b/Src/Plugins/Input/in_wave/main.h new file mode 100644 index 00000000..2614325f --- /dev/null +++ b/Src/Plugins/Input/in_wave/main.h @@ -0,0 +1,24 @@ +#ifndef NULLSOFT_IN_WAVE_MAINH +#define NULLSOFT_IN_WAVE_MAINH + +extern volatile int currentSongLength; +#define ENABLE_SNDFILE_WINDOWS_PROTOTYPES +#include "sndfile.h" +extern SNDFILE *sndFile; +#include "../Winamp/in2.h" +extern In_Module plugin; + +extern int pan, volume; + +#include <windows.h> +BOOL CALLBACK PreferencesDialogProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam); +int ExtensionExists(const char *ext, const char *extensionList); + +void BuildDefaultExtensions(); + +extern char defaultExtensions[1024]; +void SetFileExtensions(const char *extList); +int CalcBitRate(const SF_INFO *info); +BOOL GetExtensionName(LPCWSTR pszExt, LPWSTR pszDest, INT cchDest); + +#endif
\ No newline at end of file |