mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2025-12-31 20:36:25 +00:00
Updates
2007-02-24 Soren Sandmann <sandmann@daimi.au.dk> * TODO: Updates * binparser.[ch]: Get rid of BIN_UINTn types; replace with single BIN_UINT, where the user must provide the width * elfparser.c: Update to new binparser API svn path=/trunk/; revision=354
This commit is contained in:
committed by
Søren Sandmann Pedersen
parent
bc004a104e
commit
cf70d3a7ed
@ -65,10 +65,7 @@ typedef enum
|
||||
typedef enum
|
||||
{
|
||||
/* More types can (and probably will) be added in the future */
|
||||
BIN_UINT8,
|
||||
BIN_UINT16,
|
||||
BIN_UINT32,
|
||||
BIN_UINT64,
|
||||
BIN_UINT,
|
||||
BIN_UNINTERPRETED
|
||||
} BinType;
|
||||
|
||||
@ -107,7 +104,7 @@ void bin_parser_restore (BinParser *parser);
|
||||
|
||||
/* retrieve data */
|
||||
guint64 bin_parser_get_uint (BinParser *parser,
|
||||
BinType type);
|
||||
int width);
|
||||
const char * bin_parser_get_string (BinParser *parser);
|
||||
guint64 bin_parser_get_uint_field (BinParser *parser,
|
||||
BinRecord *record,
|
||||
|
||||
Reference in New Issue
Block a user