mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-09-24 15:54:12 +00:00
38 lines
1.7 KiB
C
38 lines
1.7 KiB
C
|
#ifndef _WAFE_H_
|
||
|
#define _WAFE_H_
|
||
|
|
||
|
#define IPC_FF_FIRST 2000
|
||
|
#define IPC_FF_NOTIFYHOTKEY IPC_FF_FIRST + 6 // data = const char * to hotkey description
|
||
|
|
||
|
#define WINAMP_OPTIONS_EQ 40036 // toggles the EQ window
|
||
|
#define WINAMP_OPTIONS_PLEDIT 40040 // toggles the playlist window
|
||
|
#define WINAMP_VOLUMEUP 40058 // turns the volume up a little
|
||
|
#define WINAMP_VOLUMEDOWN 40059 // turns the volume down a little
|
||
|
#define WINAMP_FFWD5S 40060 // fast forwards 5 seconds
|
||
|
#define WINAMP_REW5S 40061 // rewinds 5 seconds
|
||
|
|
||
|
// the following are the five main control buttons, with optionally shift
|
||
|
// or control pressed
|
||
|
// (for the exact functions of each, just try it out)
|
||
|
#define WINAMP_BUTTON1 40044
|
||
|
#define WINAMP_BUTTON2 40045
|
||
|
#define WINAMP_BUTTON3 40046
|
||
|
#define WINAMP_BUTTON4 40047
|
||
|
#define WINAMP_BUTTON5 40048
|
||
|
#define WINAMP_BUTTON1_SHIFT 40144
|
||
|
#define WINAMP_BUTTON2_SHIFT 40145
|
||
|
#define WINAMP_BUTTON3_SHIFT 40146
|
||
|
#define WINAMP_BUTTON4_SHIFT 40147
|
||
|
#define WINAMP_BUTTON5_SHIFT 40148
|
||
|
#define WINAMP_BUTTON1_CTRL 40154
|
||
|
#define WINAMP_BUTTON2_CTRL 40155
|
||
|
#define WINAMP_BUTTON3_CTRL 40156
|
||
|
#define WINAMP_BUTTON4_CTRL 40157
|
||
|
#define WINAMP_BUTTON5_CTRL 40158
|
||
|
|
||
|
#define WINAMP_FILE_PLAY 40029 // pops up the load file(s) box
|
||
|
#define WINAMP_OPTIONS_PREFS 40012 // pops up the preferences
|
||
|
#define WINAMP_OPTIONS_AOT 40019 // toggles always on top
|
||
|
#define WINAMP_HELP_ABOUT 40041 // pops up the about box :)
|
||
|
|
||
|
#endif
|