#ifndef RNEVTYPE_H #define RNEVTYPE_H // Event types // // Values have been chosen to be consistent // with the event numbering pndepr/pub/raevents.h enum RS_EVENT_TYPE { RSEventMediaSample_Title = 0x0000, RSEventMediaSample_Author = 0x0001, RSEventMediaSample_Copyright = 0x0002, RSEventMediaSample_URL = 0x0020, RSEventMediaSample_Custom = 0x0040 }; // Region shapes used in image maps enum { RSImageMapMediaSample_SHAPE_NONE = 0, RSImageMapMediaSample_SHAPE_RECTANGLE , RSImageMapMediaSample_SHAPE_CIRCLE , RSImageMapMediaSample_SHAPE_POLYGON }; // Actions resulting from clicking on an image map enum { RSImageMapMediaSample_ACTION_NONE = 0, RSImageMapMediaSample_ACTION_BROWSER_URL, RSImageMapMediaSample_ACTION_PLAYER_URL, RSImageMapMediaSample_ACTION_PLAYER_SEEK }; #endif // #ifndef RNEVTYPE_H