blob: d33ca22ab4d0520d574ba8ac7bb1c681928fc9ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
/*
Copyright (C) 2010, 2011 tico-tico
*/
#ifndef __BASS_INTERFACE_H__
#define __BASS_INTERFACE_H__
#include <windows.h>
#include <commctrl.h>
#include <Uxtheme.h>
#include <newpluginapi.h>
#include <m_langpack.h>
#include <m_skin.h>
#include <m_database.h>
#include <m_options.h>
#include <win2k.h>
#include <m_cluiframes.h>
#include <m_clui.h>
#include <m_fontservice.h>
#include <m_button_int.h>
#include <m_icolib.h>
#include <m_folders.h>
#include "resource.h"
#include "version.h"
#define BASSDEF(f) (WINAPI *f)
#include "bass.h"
#define BASS_TCHAR BASS_UNICODE
#define LOADBASSFUNCTION(f) (*((void**)&f)=(void*)GetProcAddress(hBass,#f))
#define ModuleName "Bass Interface"
#define OPT_VOLUME "Volume"
#define OPT_BASSPATH "PathToDll"
#define OPT_MAXCHAN "MaxChannels"
#define OPT_OUTDEVICE "OutDevice"
#define OPT_QUIETTIME "QuietTime"
#define OPT_TIME1 "Time1"
#define OPT_TIME2 "Time2"
#define OPT_STATUS "StatMask"
#define OPT_PREVIEW "Preview"
#endif
|