Blame main.h

Packit 400c17
/*
Packit 400c17
	Copyright(C) 2016, Red Hat, Inc., Stanislav Kozina
Packit 400c17
Packit 400c17
	This program is free software: you can redistribute it and/or modify
Packit 400c17
	it under the terms of the GNU General Public License as published by
Packit 400c17
	the Free Software Foundation, either version 3 of the License, or
Packit 400c17
	(at your option) any later version.
Packit 400c17
Packit 400c17
	This program is distributed in the hope that it will be useful,
Packit 400c17
	but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 400c17
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 400c17
	GNU General Public License for more details.
Packit 400c17
Packit 400c17
	You should have received a copy of the GNU General Public License
Packit 400c17
	along with this program.  If not, see <http://www.gnu.org/licenses/>.
Packit 400c17
*/
Packit 400c17
Packit 400c17
#ifndef MAIN_H_
Packit 400c17
#define	MAIN_H_
Packit 400c17
Packit 400c17
#define	DEFAULT_OUTPUT_DIR	"./output"
Packit 400c17
#define	MODULE_DIR		"/usr/lib/modules"
Packit 400c17
#define	DEBUG_MODULE_DIR	"/usr/lib/debug/lib/modules"
Packit 400c17
Packit 400c17
/* Default size of buffer for symbols loading */
Packit 400c17
#define	DEFAULT_BUFSIZE	64
Packit 400c17
Packit 400c17
#define	TYPEDEF_FILE	"typedef--"
Packit 400c17
#define	FUNC_FILE	"func--"
Packit 400c17
#define	STRUCT_FILE	"struct--"
Packit 400c17
#define	UNION_FILE	"union--"
Packit 400c17
#define	ENUM_FILE	"enum--"
Packit 400c17
#define	VAR_FILE	"var--"
Packit 400c17
Packit 400c17
/* Path used for built-in types */
Packit 400c17
#define	BUILTIN_PATH		"<built-in>"
Packit 400c17
/* Path used for DW_AT_declaration, ie. those we don't have */
Packit 400c17
#define	DECLARATION_PATH	"<declarations>"
Packit 400c17
Packit 400c17
#define RH_KABI_HIDE		"__UNIQUE_ID_rh_kabi_hide"
Packit 400c17
#define RH_KABI_HIDE_LEN	24
Packit 400c17
Packit 400c17
#endif /* MAIN_H_ */