mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-10 11:59:58 -05:00
Initial community commit
This commit is contained in:
24
Src/Plugins/Input/in_wave/main.h
Normal file
24
Src/Plugins/Input/in_wave/main.h
Normal file
@ -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
|
Reference in New Issue
Block a user