/
githubmirror
/
x64dbg
Обзор
Документация
Войти
/
githubmirror
/
x64dbg
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
development
src/dbg/_scriptapi_stack.h
16 строк
447 B
Mr. eXoDia
PROJECT+DBG+GUI: formatting (forgot to commit the correct formatting options for x64dbg)
25 дек 2015, 16:02
25 дек 2015, 16:02
96f04cd
Код
Авторство
О чём код?
#ifndef _SCRIPTAPI_STACK_H #define _SCRIPTAPI_STACK_H #include "_scriptapi.h" namespace Script { namespace Stack { SCRIPT_EXPORT duint Pop(); SCRIPT_EXPORT duint Push(duint value); //returns the previous top, equal to Peek(1) SCRIPT_EXPORT duint Peek(int offset = 0); //offset is in multiples of Register::Size(), for easy x32/x64 portability }; //Stack }; //Script #endif //_SCRIPTAPI_STACK_H