Files
lime/project/include/system/ClipboardEvent.h
2018-07-18 17:32:51 -07:00

37 lines
436 B
C++

#ifndef LIME_SYSTEM_CLIPBOARD_EVENT_H
#define LIME_SYSTEM_CLIPBOARD_EVENT_H
#include <system/CFFI.h>
#include <system/ValuePointer.h>
namespace lime {
enum ClipboardEventType {
CLIPBOARD_UPDATE
};
struct ClipboardEvent {
hl_type* t;
ClipboardEventType type;
static ValuePointer* callback;
static ValuePointer* eventObject;
ClipboardEvent ();
static void Dispatch (ClipboardEvent* event);
};
}
#endif