blob: eb66c15d6f582a9df1b3137d3de3b68f13845eb2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef REPREPRO_OUTHOOK_H
#define REPREPRO_OUTHOOK_H
#ifndef REPREPRO_ATOMS_H
#include "atoms.h"
#endif
retvalue outhook_start(void);
void outhook_send(const char *, const char *, const char *, const char *);
void outhook_sendpool(component_t, const char *, const char *);
retvalue outhook_call(const char *);
#endif
|