1
0

WINAMP.H 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. #ifndef _WAFE_H_
  2. #define _WAFE_H_
  3. #define IPC_FF_FIRST 2000
  4. #define IPC_FF_NOTIFYHOTKEY IPC_FF_FIRST + 6 // data = const char * to hotkey description
  5. #define WINAMP_OPTIONS_EQ 40036 // toggles the EQ window
  6. #define WINAMP_OPTIONS_PLEDIT 40040 // toggles the playlist window
  7. #define WINAMP_VOLUMEUP 40058 // turns the volume up a little
  8. #define WINAMP_VOLUMEDOWN 40059 // turns the volume down a little
  9. #define WINAMP_FFWD5S 40060 // fast forwards 5 seconds
  10. #define WINAMP_REW5S 40061 // rewinds 5 seconds
  11. // the following are the five main control buttons, with optionally shift
  12. // or control pressed
  13. // (for the exact functions of each, just try it out)
  14. #define WINAMP_BUTTON1 40044
  15. #define WINAMP_BUTTON2 40045
  16. #define WINAMP_BUTTON3 40046
  17. #define WINAMP_BUTTON4 40047
  18. #define WINAMP_BUTTON5 40048
  19. #define WINAMP_BUTTON1_SHIFT 40144
  20. #define WINAMP_BUTTON2_SHIFT 40145
  21. #define WINAMP_BUTTON3_SHIFT 40146
  22. #define WINAMP_BUTTON4_SHIFT 40147
  23. #define WINAMP_BUTTON5_SHIFT 40148
  24. #define WINAMP_BUTTON1_CTRL 40154
  25. #define WINAMP_BUTTON2_CTRL 40155
  26. #define WINAMP_BUTTON3_CTRL 40156
  27. #define WINAMP_BUTTON4_CTRL 40157
  28. #define WINAMP_BUTTON5_CTRL 40158
  29. #define WINAMP_FILE_PLAY 40029 // pops up the load file(s) box
  30. #define WINAMP_OPTIONS_PREFS 40012 // pops up the preferences
  31. #define WINAMP_OPTIONS_AOT 40019 // toggles always on top
  32. #define WINAMP_HELP_ABOUT 40041 // pops up the about box :)
  33. #endif