PDA

View Full Version : Creating Plugins


Yashx
6th November 2003, 13:58
I would like to create a plugin that can control winamp using java. I don't know much about plugins or how there written, could anybody give me some info about this, or another plausable method of how to control winamp throgh java.

Cheers

saivert
8th November 2003, 19:36
Java can't be used directly. Need to write a Java class for it.
This is a library written in C/C++ that calls into JAVA runtime.
Java code can then use this class, like:
winamp = new CWinampClass;
winamp.Play();
winamp.Stop();
.
.
.
etc...
I know someone has written one. My memory is lost, so doesn't know
where to seek.