summaryrefslogtreecommitdiffstats
path: root/src/frontend/mame/luaengine.h
diff options
context:
space:
mode:
author npwoods <npwoods@mess.org>2020-12-11 21:06:38 -0500
committer GitHub <noreply@github.com>2020-12-12 13:06:38 +1100
commit94421d749c0ed99536faff498b8d77698d17ee92 (patch)
tree1b4281793c38a1ce989d58e50b4576d31df1a3aa /src/frontend/mame/luaengine.h
parent7f22d342658bbde72184c12caa8a62bd28ba4ed4 (diff)
Exposing image format information to LUA (#7508)
* Exposing image format information to LUA * crazyc feedback * Addressing what I expect would become Vas feedback * Vas feedback, minus making image formats a container wrapper * Changed image formats to have a proper container wrapper. Now indexed by an integer index
Diffstat (limited to 'src/frontend/mame/luaengine.h')
-rw-r--r--src/frontend/mame/luaengine.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/frontend/mame/luaengine.h b/src/frontend/mame/luaengine.h
index bfcbaf04a50..1157d2083c2 100644
--- a/src/frontend/mame/luaengine.h
+++ b/src/frontend/mame/luaengine.h
@@ -34,6 +34,7 @@ public:
// helper structures
template <typename T> struct devenum;
template <typename T> struct simple_list_wrapper;
+ template <typename T> struct object_ptr_vector_wrapper;
template <typename T> struct tag_object_ptr_map;
template <typename T> using standard_tag_object_ptr_map = tag_object_ptr_map<std::unordered_map<std::string, std::unique_ptr<T> > >;
template <typename T, typename C, typename I = typename C::iterator> struct immutable_container_helper;