Added lirc.
[irreco.git] / lirc-0.8.4a / daemons / dump_config.h
blob651939fc03c8b76aa04a62a53bc41bfc923dd0a5
1 /* $Id: dump_config.h,v 5.2 2007/07/29 18:20:06 lirc Exp $ */
3 /****************************************************************************
4 ** dump_config.h ***********************************************************
5 ****************************************************************************
7 * dump_config.h - dumps data structures into file
9 * Copyright (C) 1998 Pablo d'Angelo <pablo@ag-trek.allgaeu.org>
11 */
13 #ifndef _DUMP_CONFIG_H
14 #define _DUMP_CONFIG_H
16 #include <stdio.h>
17 #include <sys/types.h>
18 #include <unistd.h>
20 #include "ir_remote.h"
22 void fprint_comment(FILE *f,struct ir_remote *rem);
23 void fprint_flags(FILE *f, int flags);
24 void fprint_remotes(FILE *f, struct ir_remote *all);
25 void fprint_remote_gap(FILE *f, struct ir_remote *rem);
26 void fprint_remote_head(FILE *f, struct ir_remote *rem);
27 void fprint_remote_foot(FILE *f, struct ir_remote *rem);
28 void fprint_remote_signal_head(FILE *f, struct ir_remote *rem);
29 void fprint_remote_signal_foot(FILE *f, struct ir_remote *rem);
30 void fprint_remote_signal(FILE *f,struct ir_remote *rem, struct ir_ncode *codes);
31 void fprint_remote_signals(FILE *f, struct ir_remote *rem);
32 void fprint_remote(FILE *f, struct ir_remote *rem);
34 #endif