x64dbg_sdk_sys 0.1.0

x64dbg plugins sdk sys
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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