home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 February / CHIP_2_98.iso / tools / winamp / winamp16.exe / FRONTEND.TXT next >
Text File  |  1997-12-10  |  5KB  |  139 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.6 BETA = 0x16A0
  27.         Version 1.60 = 0x16AF
  28.     the command_data parameter is 0.
  29.     so, 
  30.     if (SendMessage(hwnd_winamp,WM_WA_IPC,0,IPC_GETVERSION) != 0x1551)
  31.         MessageBox(NULL,"Error, Winamp 1.55 not found","Warning",MB_OK);
  32. */
  33.  
  34.  
  35. #define IPC_PLAYFILE 100
  36. /*
  37.     IPC_PLAYFILE is sent to the window for each char of a null terminated string of a file to ADD
  38.     to the playlist (it doesn't change the playing status)
  39.     for example:
  40.         char *file = "C:\\download\\booga.mp3";
  41.         int x;
  42.         for (x = 0; x <= strlen(file); x ++)
  43.             PostMessage(hwnd_winamp,WM_WA_IPC,(LPARAM)file[x],IPC_PLAYFILE);
  44.     will add "C:\download\booga.mp3" to the end of the playlist
  45. */
  46.  
  47. #define IPC_DELETE 101
  48. /* 
  49.     IPC_DELETE deletes the internal Winamp playlist.
  50.         SendMessage(hwnd_winamp,WM_WA_IPC,0,IPC_DELETE);
  51. */
  52.  
  53. #define IPC_STARTPLAY 102
  54. /* 
  55.     IPC_STARTPLAY starts the playing.
  56.         SendMessage(hwnd_winamp,WM_WA_IPC,0,IPC_STARTPLAY);
  57. */
  58.  
  59. #define IPC_CHDIR 103
  60. /*
  61.     IPC_CHDIR is sent to the window for each char of a null terminated string of a directory to change to
  62.     for example:
  63.         char *dir = "C:\\Download";
  64.         int x;
  65.         for (x = 0; x <= strlen(file); x ++)
  66.             PostMessage(hwnd_winamp,WM_WA_IPC,(LPARAM)dir[x],IPC_PLAYFILE);
  67.     will change the winamp process to "C:\download" (useful for relative pathnames and loading playlists)
  68.  
  69. */
  70. #define IPC_ISPLAYING 104
  71. /*
  72.     IPC_ISPLAYING returns the status of playback.
  73.     If it returns 1, it is playing. if it returns 3, it is paused, if it returns 0, it is not playing.
  74.     If it returns something other than 1,3,or 0, something is screwed.
  75.     isplaying = SendMessage(hwnd_winamp,WM_WA_IPC,0,IPC_ISPLAYING);
  76. */
  77.  
  78.  
  79. #define IPC_GETOUTPUTTIME 105
  80. /*
  81.     IPC_GETOUTPUTTIME returns the position in milliseconds of the current song.
  82.     Returns -1 if not playing or error.
  83.     song_pos = SendMessage(hwnd_winamp,WM_WA_IPC,0,IPC_GETOUTPUTTIME);
  84. */
  85.  
  86. #define IPC_JUMPTOTIME 106
  87. /*
  88.         *ONLY AVAILABLE IN v1.60+*
  89.     IPC_JUMPTOTIME sets the position in milliseconds of the current song (approximately)
  90.     Returns -1 if not playing, 1 on eof, or 0 if successful
  91.     SendMessage(hwnd_winamp,WM_WA_IPC,new_song_pos,IPC_JUMPTOTIME);
  92. */
  93.  
  94.  
  95. // THESE MIGHT CHANGE in the future :)
  96. //Also, you can send standard WM_COMMAND messages to the Winamp window (for other controls), including
  97.  
  98. // toggles the EQ window
  99. #define WINAMP_OPTIONS_EQ               40036
  100. // toggles the playlist window
  101. #define WINAMP_OPTIONS_PLEDIT           40040
  102. // turns the volume up a little
  103. #define WINAMP_VOLUMEUP                 40058
  104. // turns the volume down a little
  105. #define WINAMP_VOLUMEDOWN               40059
  106. // fast forwards 5 seconds
  107. #define WINAMP_FFWD5S                   40060
  108. // rewinds 5 seconds
  109. #define WINAMP_REW5S                    40061
  110. // the following are the five main control buttons, with optionally shift or control pressed
  111. // (for the exact functions of each, just try it out)
  112. #define WINAMP_BUTTON1                  40044
  113. #define WINAMP_BUTTON2                  40045
  114. #define WINAMP_BUTTON3                  40046
  115. #define WINAMP_BUTTON4                  40047
  116. #define WINAMP_BUTTON5                  40048
  117. #define WINAMP_BUTTON1_SHIFT            40144
  118. #define WINAMP_BUTTON2_SHIFT            40145
  119. #define WINAMP_BUTTON3_SHIFT            40146
  120. #define WINAMP_BUTTON4_SHIFT            40147
  121. #define WINAMP_BUTTON5_SHIFT            40148
  122. #define WINAMP_BUTTON1_CTRL             40154
  123. #define WINAMP_BUTTON2_CTRL             40155
  124. #define WINAMP_BUTTON3_CTRL             40156
  125. #define WINAMP_BUTTON4_CTRL             40157
  126. #define WINAMP_BUTTON5_CTRL             40158
  127. // pops up the load file(s) box
  128. #define WINAMP_FILE_PLAY                40029
  129. // pops up the preferences
  130. #define WINAMP_OPTIONS_PREFS            40012
  131. // toggles always on top
  132. #define WINAMP_OPTIONS_AOT              40019
  133. // pops up the about box :)
  134. #define WINAMP_HELP_ABOUT               40041
  135.  
  136.  
  137. // hope this helps, 
  138. // -Justin [justin@spiffy.org]
  139.