File: watchcat.h

package info (click to toggle)
libwcat1 1.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 156 kB
  • sloc: ansic: 157; makefile: 155
file content (21 lines) | stat: -rw-r--r-- 479 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
** $Id: watchcat.h 1654 2006-05-29 18:18:02Z andre $
** libwcat - Watchcat Client Library
** See copyright notice in distro's COPYRIGHT file
*/

#ifndef WATCHCAT_H
#define WATCHCAT_H

#include <signal.h>

int cat_open(void);
int cat_open1(int timeout, int signal, const char *info);
int cat_heartbeat(int cat);
int cat_close(int cat);

/* Debug purpose only. Please, don't use it in prodution code. */
#define CAT_DEVICE_SIZE 128
void cat_set_device(const char *dev);

#endif