mirror of
https://github.com/falk-werner/webfuse-provider
synced 2024-10-27 20:44:10 +00:00
20 lines
219 B
C
20 lines
219 B
C
#ifndef WF_MESSAGE_QUEUE_H
|
|
#define WF_MESSAGE_QUEUE_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
struct wf_slist;
|
|
|
|
extern void wf_message_queue_cleanup(
|
|
struct wf_slist * queue);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|