mirror of
https://github.com/HavocFramework/Havoc
synced 2026-06-08 11:13:29 +00:00
26 lines
572 B
C
26 lines
572 B
C
#ifndef HAVOC_EVENT_H
|
|
#define HAVOC_EVENT_H
|
|
|
|
#include <global.hpp>
|
|
|
|
typedef struct
|
|
{
|
|
PyObject_HEAD
|
|
|
|
PVOID SessionFuncList;
|
|
|
|
} PyEvents, *PPyEvents;
|
|
|
|
extern PyTypeObject PyEventClass_Type;
|
|
|
|
void EventClass_dealloc( PPyEvents self );
|
|
PyObject* EventClass_new( PyTypeObject *type, PyObject *args, PyObject *kwds );
|
|
int EventClass_init( PPyEvents self, PyObject *args, PyObject *kwds );
|
|
|
|
// Methods
|
|
|
|
PyObject* EventClass_OnNewSession( PPyEvents self, PyObject *args );
|
|
PyObject* EventClass_OnDemonOutput( PPyEvents self, PyObject *args );
|
|
|
|
#endif
|