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