mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
11 lines
273 B
C++
11 lines
273 B
C++
#pragma once
|
|
|
|
struct test_stack_guard {
|
|
lua_State* L;
|
|
int& begintop;
|
|
int& endtop;
|
|
test_stack_guard(lua_State* L, int& begintop, int& endtop) : L(L), begintop(begintop), endtop(endtop) {
|
|
begintop = lua_gettop(L);
|
|
}
|
|
~test_stack_guard() { endtop = lua_gettop(L); }
|
|
};
|