Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions librz/include/rz_analysis.h
Original file line number Diff line number Diff line change
Expand Up @@ -193,15 +193,15 @@ typedef struct rz_analysis_func_arg_t {
typedef enum {
RZ_META_TYPE_NONE = 0,
RZ_META_TYPE_ANY = -1,
RZ_META_TYPE_DATA = 'd', //< marks the data as data (not a code)
RZ_META_TYPE_CODE = 'c', //< marks the data as code
RZ_META_TYPE_STRING = 's', //< marks the data as string
RZ_META_TYPE_FORMAT = 'f', //< sets the specified format (pf) to the data
RZ_META_TYPE_MAGIC = 'm', //< sets the magic string to the data
RZ_META_TYPE_HIDE = 'h', //< set the data as hidden
RZ_META_TYPE_COMMENT = 'C', //< attaches the comment to the data
RZ_META_TYPE_HIGHLIGHT = 'H', //< sets the specified highlight to the data
RZ_META_TYPE_VARTYPE = 't', //< sets the specified type to the variable/address
RZ_META_TYPE_DATA = 1 << 0, ///< marks the data as data (not as code)
RZ_META_TYPE_CODE = 1 << 1, ///< marks the data as code
RZ_META_TYPE_STRING = 3 << 2, ///< marks the data as string
RZ_META_TYPE_FORMAT = 1 << 3, ///< sets the specified format (pf) to the data
RZ_META_TYPE_MAGIC = 1 << 4, ///< sets the magic string to the data
RZ_META_TYPE_HIDE = 1 << 5, ///< set the data as hidden
RZ_META_TYPE_COMMENT = 1 << 6, ///< attaches the comment to the data
RZ_META_TYPE_HIGHLIGHT = 1 << 7, ///< sets the specified highlight to the data
RZ_META_TYPE_VARTYPE = 1 << 8, ///< sets the specified type to the variable/address
} RzAnalysisMetaType;

/* meta */
Expand Down
Loading