about summary refs log tree commit diff stats
path: root/src/include/env.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/env.h')
-rw-r--r--src/include/env.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/env.h b/src/include/env.h
index ff8961c6..75eb0982 100644
--- a/src/include/env.h
+++ b/src/include/env.h
@@ -193,6 +193,8 @@ typedef struct box64env_s {
     uint64_t is_dynarec_perf_map_fd_overridden : 1;
 } box64env_t;
 
+typedef struct mmaplist_s mmaplist_t;
+
 void InitializeEnvFiles();
 void ApplyEnvFileEntry(const char* name);
 const char* GetLastApplyEntryName();
@@ -204,5 +206,6 @@ void RemoveMapping(uintptr_t addr, size_t length);
 box64env_t* GetCurEnvByAddr(uintptr_t addr);
 int IsAddrFileMapped(uintptr_t addr, const char** filename, uintptr_t* start);
 size_t SizeFileMapped(uintptr_t addr);
+mmaplist_t* GetMmaplistByAddr(uintptr_t addr);
 
 #endif // __ENV_H