Stackdb
Stackdb is a stackable, multi-target and -level source debugger and memory forensics library.
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
output.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2011, 2012 The University of Utah
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of
7  * the License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
17  */
18 
19 #ifndef __OUTPUT_H__
20 #define __OUTPUT_H__
21 
22 #include <stdio.h>
23 
24 struct dump_info {
25  char *prefix;
26  FILE *stream;
27  int meta;
28  int detail;
29 };
30 
31 #endif /* __OUTPUT_H__ */
char * prefix
Definition: output.h:25
FILE * stream
Definition: output.h:26
int detail
Definition: output.h:28
int meta
Definition: output.h:27