Fix symbol visibility for dmp64

This commit is contained in:
pancake 2022-08-18 20:53:07 +02:00
parent a926ee2760
commit 632439cb1a
2 changed files with 4 additions and 4 deletions

View File

@ -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;

View File

@ -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 */