File: notify.h

package info (click to toggle)
rtpengine 13.5.1.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,676 kB
  • sloc: ansic: 86,775; perl: 59,422; python: 3,193; sh: 1,037; makefile: 687; asm: 211
file content (15 lines) | stat: -rw-r--r-- 331 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _NOTIFY_H_
#define _NOTIFY_H_

#include <glib.h>
#include "types.h"

void notify_setup(void);
void notify_cleanup(void);

void notify_push_setup(const notif_action_t *action, output_t *o, metafile_t *mf, tag_t *tag);

void notify_push_output(output_t *, metafile_t *, tag_t *);
void notify_push_call(metafile_t *);

#endif