blob: 96d60167698ab7bd9df2a4f2961d5b1f86c9f776 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef ST_SPECIAL_H
#define ST_SPECIAL_H
/* Public functions for special types and regions. */
PUBLIC void st_register_typename_key(const char *key);
PUBLIC void st_register_typename_keys(const char **keys);
PUBLIC int st_add_special_mmapped_region(void *address, size_t size,
const char* name);
PUBLIC int st_del_special_mmapped_region_by_addr(void *address);
#endif /* ST_SPECIAL_H */
|