blob: e5eeb5bcd12896325f565856823a8b04c903077c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef __SSSD_PROCESS_H__
#define __SSSD_PROCESS_H__
int process_new_task(struct event_context *ev,
const char *service_name,
void (*new_task)(struct event_context *, void *),
void *private);
void process_set_title(struct event_context *ev, const char *title);
void process_terminate(struct event_context *ev, const char *reason);
#endif /* __SSSD_PROCESS_H__ */
|