Blame include/slibtool/slibtool_output.h

72214b
#ifndef SLIBTOOL_OUTPUT_H
72214b
#define SLIBTOOL_OUTPUT_H
72214b
72214b
#include <stdint.h>
72214b
72214b
#define SLBT_PRETTY(x)			((uint64_t)x << 32)
72214b
72214b
/* output actions */
72214b
#define SLBT_OUTPUT_ARCHIVE_MEMBERS	0x00000001
72214b
#define SLBT_OUTPUT_ARCHIVE_HEADERS	0x00000002
72214b
#define SLBT_OUTPUT_ARCHIVE_SYMBOLS	0x00000004
72214b
#define SLBT_OUTPUT_ARCHIVE_ARMAPS	0x00000008
2dc23e
#define SLBT_OUTPUT_ARCHIVE_MAPFILE	0x00000010
dcf6a5
#define SLBT_OUTPUT_ARCHIVE_DLSYMS	0x00000020
dcf6a5
#define SLBT_OUTPUT_ARCHIVE_NOSORT	0x00000040
72214b
72214b
/* pretty-printer flags */
72214b
#define SLBT_PRETTY_YAML		SLBT_PRETTY(0x00000001)
72214b
#define SLBT_PRETTY_POSIX		SLBT_PRETTY(0x00000002)
72214b
#define SLBT_PRETTY_HEXDATA		SLBT_PRETTY(0x00000004)
191700
#define SLBT_PRETTY_VERBOSE		SLBT_PRETTY(0x00000008)
72214b
72214b
#endif