home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_11_01 / 1101022a < prev    next >
Text File  |  1992-11-06  |  140b  |  9 lines

  1. /* API.H */
  2. typedef struct tagREGION
  3. {
  4.   int vertex_count;
  5.   int *vertices;
  6. } REGION;
  7. int DefineHotSpot (int id, REGION *pRegion);
  8.  
  9.