wanproxy/event/event_message.h

23 lines
909 B
C
Raw Normal View History

2015-08-31 12:01:44 +00:00
////////////////////////////////////////////////////////////////////////////////
// //
// File: event_message.h //
// Description: sructures for data exchange in shared buffers //
// Project: WANProxy XTech //
// Author: Andreu Vidal Bramfeld-Software //
// Last modified: 2015-04-01 //
// //
////////////////////////////////////////////////////////////////////////////////
#ifndef EVENT_EVENT_MESSAGE_H
#define EVENT_EVENT_MESSAGE_H
class EventAction;
struct EventMessage
{
int op;
EventAction* action;
};
#endif /* !EVENT_EVENT_MESSAGE_H */