2008-03-03 17:50:44 +01:00
|
|
|
#ifndef _DWARF_LOADER_H_
|
|
|
|
#define _DWARF_LOADER_H_ 1
|
|
|
|
/*
|
|
|
|
Copyright (C) 2008 Arnaldo Carvalho de Melo <acme@redhat.com>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it
|
|
|
|
under the terms of version 2 of the GNU General Public License as
|
|
|
|
published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct cus;
|
2009-03-09 18:43:47 +01:00
|
|
|
struct conf_load;
|
2008-03-03 17:50:44 +01:00
|
|
|
|
2009-03-13 14:49:01 +01:00
|
|
|
int dwarf__load(struct cus *self, struct conf_load *conf, const char *filename);
|
2008-03-03 17:50:44 +01:00
|
|
|
|
|
|
|
#endif /* _DWARF_LOADER_H_ */
|