Listing 1 An extensible API

/* API.H */
typedef struct tagREGION
{
  int vertex_count;
  int *vertices;
} REGION;
int DefineHotSpot (int id, REGION *pRegion);

/* End of File */