10 lines
168 B
Plaintext
10 lines
168 B
Plaintext
|
package org.musicpd;
|
||
|
|
||
|
interface IMainCallback
|
||
|
{
|
||
|
void onStarted();
|
||
|
void onStopped();
|
||
|
void onError(String error);
|
||
|
void onLog(int priority, String msg);
|
||
|
}
|