[DataView] Fix bold of playing song, italic 'prioritized songs'
[gmpc.git] / src / Widgets / mpd-async-request.h
blob84af5e414d7325742960821857cdbbcf7a891a46
1 #ifndef __MPD_ASYNC_REQUEST_H__
2 #define __MPD_ASYNC_REQUEST_H__
3 #include "main.h"
4 typedef void (MpdAsyncCallback)(MpdData *data, gpointer callback_data);
5 typedef MpdData * (MpdAsyncFunction)(MpdObj *mi, gpointer function_data);
7 void mpd_async_request(MpdAsyncCallback *callback, gpointer callback_data, MpdAsyncFunction *function, gpointer function_data);
8 #endif