mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 23:00:42 +00:00
21 lines
326 B
C++
21 lines
326 B
C++
#pragma once
|
|
#ifndef __PL_AE_HANDLER_DESC_H__
|
|
#define __PL_AE_HANDLER_DESC_H__
|
|
|
|
#include "PLAppleEventsCommonTypes.h"
|
|
|
|
#include <stdint.h>
|
|
|
|
namespace PortabilityLayer
|
|
{
|
|
struct AEHandlerDesc
|
|
{
|
|
AEEventClass m_eventClass;
|
|
AEEventID m_eventID;
|
|
AEEventHandler m_handler;
|
|
uint32_t m_ref;
|
|
};
|
|
}
|
|
|
|
#endif
|