mcabber/src/fifo.h
author Myhailo Danylenko <isbear@ukrpost.net>
Thu, 15 Oct 2009 12:08:53 +0300
changeset 1623 b008ac166b91
parent 1426 a64778f5f26b
child 1654 fca9a4c17432
permissions -rw-r--r--
Flags for hook handlers
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1426
a64778f5f26b Implement FIFO named command pipe
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     1
#ifndef __FIFO_H__
a64778f5f26b Implement FIFO named command pipe
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     2
#define __FIFO_H__ 1
a64778f5f26b Implement FIFO named command pipe
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     3
a64778f5f26b Implement FIFO named command pipe
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     4
int  fifo_init(const char *fifo_path);
a64778f5f26b Implement FIFO named command pipe
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     5
void fifo_deinit(void);
a64778f5f26b Implement FIFO named command pipe
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     6
void fifo_read(void);
a64778f5f26b Implement FIFO named command pipe
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     7
int  fifo_get_fd(void);
a64778f5f26b Implement FIFO named command pipe
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     8
a64778f5f26b Implement FIFO named command pipe
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     9
#endif /* __FIFO_H__ */
a64778f5f26b Implement FIFO named command pipe
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    10
a64778f5f26b Implement FIFO named command pipe
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    11
/* vim: set expandtab cindent cinoptions=>2\:2(0:  For Vim users... */