mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-20 20:55:32 +00:00
Fix symbol visibility for dmp64
This commit is contained in:
parent
a926ee2760
commit
632439cb1a
@ -148,7 +148,7 @@ static int r_bin_dmp64_init(struct r_bin_dmp64_obj_t *obj) {
|
||||
return true;
|
||||
}
|
||||
|
||||
R_API void r_bin_dmp64_free(struct r_bin_dmp64_obj_t *obj) {
|
||||
R_IPI void r_bin_dmp64_free(struct r_bin_dmp64_obj_t *obj) {
|
||||
if (!obj) {
|
||||
return;
|
||||
}
|
||||
@ -162,7 +162,7 @@ R_API void r_bin_dmp64_free(struct r_bin_dmp64_obj_t *obj) {
|
||||
free (obj);
|
||||
}
|
||||
|
||||
struct r_bin_dmp64_obj_t *r_bin_dmp64_new_buf(RBuffer* buf) {
|
||||
R_IPI struct r_bin_dmp64_obj_t *r_bin_dmp64_new_buf(RBuffer* buf) {
|
||||
struct r_bin_dmp64_obj_t *obj = R_NEW0 (struct r_bin_dmp64_obj_t);
|
||||
if (!obj) {
|
||||
return NULL;
|
||||
|
@ -26,7 +26,7 @@ struct r_bin_dmp64_obj_t {
|
||||
Sdb *kv;
|
||||
};
|
||||
|
||||
void r_bin_dmp64_free(struct r_bin_dmp64_obj_t *obj);
|
||||
struct r_bin_dmp64_obj_t *r_bin_dmp64_new_buf(RBuffer* buf);
|
||||
R_IPI void r_bin_dmp64_free(struct r_bin_dmp64_obj_t *obj);
|
||||
R_IPI struct r_bin_dmp64_obj_t *r_bin_dmp64_new_buf(RBuffer* buf);
|
||||
|
||||
#endif /* DMP64_H */
|
||||
|
Loading…
x
Reference in New Issue
Block a user