blob: 306c6a5a8854ddca51fcf164e31853970857b8d9 (
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
|
/*
Copyright (C) 2010, 2011 tico-tico
*/
#pragma once
#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_clistint.h>
#include <m_cluiframes.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 ModuleName LPGEN("BASS Interface")
struct CMPlugin : public PLUGIN<CMPlugin>
{
CMPlugin() :
PLUGIN<CMPlugin>(ModuleName)
{}
};
#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"
|