123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449 |
- #ifndef _WAFE_H_
- #define _WAFE_H_
- #define WM_WA_IPC WM_USER
- #define IPC_GETVERSION 0
- #define IPC_DELETE 101
- #define IPC_STARTPLAY 102
- #define IPC_ISPLAYING 104
- #define IPC_GETOUTPUTTIME 105
- #define IPC_JUMPTOTIME 106
- #define IPC_WRITEPLAYLIST 120
- #define IPC_SETPLAYLISTPOS 121
- #define IPC_SETVOLUME 122
- #define IPC_SETPANNING 123
- #define IPC_GETLISTLENGTH 124
- #define IPC_SETSKIN 200
- #define IPC_GETSKIN 201
- #define IPC_EXECPLUG 202
- #define IPC_GETPLAYLISTFILE 211
- #define IPC_GETPLAYLISTTITLE 212
- #define IPC_GETLISTPOS 125
- #define IPC_GETINFO 126
- #define IPC_GETEQDATA 127
- #define IPC_SETEQDATA 128
- #define IPC_ADDBOOKMARK 129
- #define IPC_RESTARTWINAMP 135
- #define IPC_MBOPEN 241
- #define IPC_INETAVAILABLE 242
- #define IPC_UPDTITLE 243
- #define IPC_CHANGECURRENTFILE 245
- #define IPC_GETMBURL 246
- #define IPC_REFRESHPLCACHE 247
- #define IPC_MBBLOCK 248
- #define IPC_MBOPENREAL 249
- #define IPC_GET_SHUFFLE 250
- #define IPC_GET_REPEAT 251
- #define IPC_SET_SHUFFLE 252
- #define IPC_SET_REPEAT 253
- #define IPC_PLAYFILE 100
- #define IPC_CHDIR 103
- #define WINAMP_OPTIONS_EQ 40036
- #define WINAMP_OPTIONS_PLEDIT 40040
- #define WINAMP_VOLUMEUP 40058
- #define WINAMP_VOLUMEDOWN 40059
- #define WINAMP_FFWD5S 40060
- #define WINAMP_REW5S 40061
- #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
- #define WINAMP_FILE_DIR 40187
- #define WINAMP_OPTIONS_PREFS 40012
- #define WINAMP_OPTIONS_AOT 40019
- #define WINAMP_HELP_ABOUT 40041
- #define ID_MAIN_PLAY_AUDIOCD1 40323
- #define ID_MAIN_PLAY_AUDIOCD2 40323
- #define ID_MAIN_PLAY_AUDIOCD3 40323
- #define ID_MAIN_PLAY_AUDIOCD4 40323
- #endif
|