home *** CD-ROM | disk | FTP | other *** search
/ WDR Computer Club Digital 1998 March / CC9803-2.BIN / SHARE / 95WINAMP / WINAMP.EXE / FRONTEND.TXT next >
Text File  |  1997-12-26  |  5KB  |  143 lines

  1. This file is only useful for people who are writing frontends for Winamp.
  2. Actually, it's useful for plugin authors too.
  3.  
  4.  
  5.  
  6.  
  7. Psuedo IPC for frontends for Winamp v1.55+ (< 2.0)
  8.  
  9. This document is horribly [de]organized, and is pretty much just hacked
  10. together for people to use.
  11.  
  12. Winamp's window is found using:
  13. hwnd_winamp = FindWindow("Winamp v1.x",NULL);
  14.  
  15. #define WM_WA_IPC WM_USER
  16. // messages are sent to the winamp window using:
  17. result = SendMessage(hwnd_winamp,WM_WA_IPC,command_data,command);
  18.  
  19.  
  20. /* Messages available to send */
  21.  
  22. #define IPC_GETVERSION 0
  23. /*
  24.     IPC_GETVERSION is sent to the window, and the return value is the version
  25.         Version 1.55 = 0x1551
  26.         Version 1.6b = 0x16A0
  27.         Version 1.60 = 0x16AF
  28.         Version 1.61 = 0x16B0
  29.         Version 1.62 = 0x16B1
  30.         Version 1.64 = 0x16B3
  31.     the command_data parameter is 0.
  32.     so, 
  33.     if (SendMessage(hwnd_winamp,WM_WA_IPC,0,IPC_GETVERSION) != 0x1551)
  34.         MessageBox(NULL,"Error, Winamp 1.55 not found","Warning",MB_OK);
  35. */
  36.  
  37.  
  38. #define IPC_PLAYFILE 100
  39. /*
  40.     IPC_PLAYFILE is sent to the window for each char of a null terminated string of a file to ADD
  41.     to the playlist (it doesn't change the playing status)
  42.     for example:
  43.         char *file = "C:\\download\\booga.mp3";
  44.         int x;
  45.         for (x = 0; x <= strlen(file); x ++)
  46.             PostMessage(hwnd_winamp,WM_WA_IPC,(LPARAM)file[x],IPC_PLAYFILE);
  47.     will add "C:\download\booga.mp3" to the end of the playlist
  48. */
  49.  
  50. #define IPC_DELETE 101
  51. /* 
  52.     IPC_DELETE deletes the internal Winamp playlist.
  53.         SendMessage(hwnd_winamp,WM_WA_IPC,0,IPC_DELETE);
  54. */
  55.  
  56. #define IPC_STARTPLAY 102
  57. /* 
  58.     IPC_STARTPLAY starts the playing.
  59.         SendMessage(hwnd_winamp,WM_WA_IPC,0,IPC_STARTPLAY);
  60. */
  61.  
  62. #define IPC_CHDIR 103
  63. /*
  64.     IPC_CHDIR is sent to the window for each char of a null terminated string of a directory to change to
  65.     for example:
  66.         char *dir = "C:\\Download";
  67.         int x;
  68.         for (x = 0; x <= strlen(file); x ++)
  69.             PostMessage(hwnd_winamp,WM_WA_IPC,(LPARAM)dir[x],IPC_PLAYFILE);
  70.     will change the winamp process to "C:\download" (useful for relative pathnames and loading playlists)
  71.  
  72. */
  73. #define IPC_ISPLAYING 104
  74. /*
  75.     IPC_ISPLAYING returns the status of playback.
  76.     If it returns 1, it is playing. if it returns 3, it is paused, if it returns 0, it is not playing.
  77.     If it returns something other than 1,3,or 0, something is screwed.
  78.     isplaying = SendMessage(hwnd_winamp,WM_WA_IPC,0,IPC_ISPLAYING);
  79. */
  80.  
  81.  
  82. #define IPC_GETOUTPUTTIME 105
  83. /*
  84.     IPC_GETOUTPUTTIME returns the position in milliseconds of the current song.
  85.     Returns -1 if not playing or error.
  86.     song_pos = SendMessage(hwnd_winamp,WM_WA_IPC,0,IPC_GETOUTPUTTIME);
  87. */
  88.  
  89. #define IPC_JUMPTOTIME 106
  90. /*
  91.         *ONLY AVAILABLE IN v1.60+*
  92.     IPC_JUMPTOTIME sets the position in milliseconds of the current song (approximately)
  93.     Returns -1 if not playing, 1 on eof, or 0 if successful
  94.     SendMessage(hwnd_winamp,WM_WA_IPC,new_song_pos,IPC_JUMPTOTIME);
  95. */
  96.  
  97.  
  98. // THESE MIGHT CHANGE in the future :)
  99. //Also, you can send standard WM_COMMAND messages to the Winamp window (for other controls), including
  100. // Send using SendMessage(hwnd_winamp,WM_COMMAND,WINAMP_OPTIONS_EQ/*orwhatever*/,0);
  101.  
  102. // toggles the EQ window
  103. #define WINAMP_OPTIONS_EQ               40036
  104. // toggles the playlist window
  105. #define WINAMP_OPTIONS_PLEDIT           40040
  106. // turns the volume up a little
  107. #define WINAMP_VOLUMEUP                 40058
  108. // turns the volume down a little
  109. #define WINAMP_VOLUMEDOWN               40059
  110. // fast forwards 5 seconds
  111. #define WINAMP_FFWD5S                   40060
  112. // rewinds 5 seconds
  113. #define WINAMP_REW5S                    40061
  114. // the following are the five main control buttons, with optionally shift or control pressed
  115. // (for the exact functions of each, just try it out)
  116. #define WINAMP_BUTTON1                  40044
  117. #define WINAMP_BUTTON2                  40045
  118. #define WINAMP_BUTTON3                  40046
  119. #define WINAMP_BUTTON4                  40047
  120. #define WINAMP_BUTTON5                  40048
  121. #define WINAMP_BUTTON1_SHIFT            40144
  122. #define WINAMP_BUTTON2_SHIFT            40145
  123. #define WINAMP_BUTTON3_SHIFT            40146
  124. #define WINAMP_BUTTON4_SHIFT            40147
  125. #define WINAMP_BUTTON5_SHIFT            40148
  126. #define WINAMP_BUTTON1_CTRL             40154
  127. #define WINAMP_BUTTON2_CTRL             40155
  128. #define WINAMP_BUTTON3_CTRL             40156
  129. #define WINAMP_BUTTON4_CTRL             40157
  130. #define WINAMP_BUTTON5_CTRL             40158
  131. // pops up the load file(s) box
  132. #define WINAMP_FILE_PLAY                40029
  133. // pops up the preferences
  134. #define WINAMP_OPTIONS_PREFS            40012
  135. // toggles always on top
  136. #define WINAMP_OPTIONS_AOT              40019
  137. // pops up the about box :)
  138. #define WINAMP_HELP_ABOUT               40041
  139.  
  140.  
  141. // hope this helps, 
  142. // -Justin [justin@nullsoft.com]
  143.