- Install to ~/.local/bin/winamp-mpris - Use ~/.local/state/winamp-mpris/bridge.log for logging - Use $XDG_RUNTIME_DIR/winamp-mpris.pid for PID management - Add detailed user notification for 401 Unauthorized errors - Add install.sh for automated, standard-compliant setup - Include Winamp Web Interface source code and installer in repository
15 lines
345 B
C
15 lines
345 B
C
typedef struct {
|
|
int version;
|
|
char *description;
|
|
int (*init)();
|
|
void (*config)();
|
|
void (*quit)();
|
|
HWND hwndParent;
|
|
HINSTANCE hDllInstance;
|
|
} winampGeneralPurposePlugin;
|
|
|
|
#define GPPHDR_VER 0x10
|
|
|
|
extern winampGeneralPurposePlugin *gen_plugins[256];
|
|
typedef winampGeneralPurposePlugin * (*winampGeneralPurposePluginGetter)();
|