I need some specific messaging between components of my application (win/linux/possibe mac). This is why EET_USER_EVENT exists for, right?
However I think using EET_USER_EVENT is not very safe, because device forwards WM_USER messages and others for another platforms there.
How to distinguish between my "real_user" events and those, possibly posted by some library/another application which I'm not aware of?
Currently I'm using this workaround:
Code: Select all
const u32 EET_CUSTOM_EVENT = (u32)EET_USER_EVENT + 1;
What about to extend EEVENT_TYPE enum with EET_CUSTOM_EVENT (or EET_USER_EVENT_EX ) ?
Any other thoughts about it ?
Thanks.